blob: 89766f0a54c0591bcea278505478e51fa472c10b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
# $NetBSD: Makefile,v 1.30 2013/06/06 12:53:44 wiz Exp $
.include "dist.mk"
PKGNAME= xulrunner192-${MOZ_BRANCH}${MOZ_BRANCH_MINOR}
PKGREVISION= 14
CATEGORIES= devel www
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://developer.mozilla.org/en/docs/XULRunner
COMMENT= XML User Interface Language runtime environment
LICENSE= mpl-1.1
MOZILLA_DIR= # empty
PKGCONFIG_OVERRIDE+= xulrunner/installer/libxul-embedding.pc.in
PKGCONFIG_OVERRIDE+= xulrunner/installer/libxul.pc.in
PKGCONFIG_OVERRIDE+= xulrunner/installer/mozilla-gtkmozembed-embedding.pc.in
PKGCONFIG_OVERRIDE+= xulrunner/installer/mozilla-gtkmozembed.pc.in
PKGCONFIG_OVERRIDE+= xulrunner/installer/mozilla-js.pc.in
PKGCONFIG_OVERRIDE+= xulrunner/installer/mozilla-nspr.pc.in
PKGCONFIG_OVERRIDE+= xulrunner/installer/mozilla-nss.pc.in
PKGCONFIG_OVERRIDE+= xulrunner/installer/mozilla-plugin.pc.in
CONFIGURE_ARGS+= --enable-application=xulrunner
CONFIGURE_ARGS+= --enable-libxul
CONFIGURE_ARGS+= --disable-ipc
ALL_ENV+= MOZILLA_PKG_NAME=xulrunner192
MAKE_ENV+= FREEBL_NO_DEPEND=0
SUBST_CLASSES+= fix-paths2
SUBST_STAGE.fix-paths2= pre-configure
SUBST_MESSAGE.fix-paths2= Fixing absolute paths.
SUBST_FILES.fix-paths2= ${MOZILLA_DIR}xpcom/build/nsXPCOMPrivate.h
SUBST_FILES.fix-paths2+= ${MOZILLA_DIR}xulrunner/app/nsRegisterGREUnix.cpp
SUBST_FILES.fix-paths2+= ${MOZILLA_DIR}xulrunner/installer/Makefile.in
SUBST_SED.fix-paths2= -e 's,/etc/gre.d,${PREFIX}/lib/xulrunner192/gre.d,g'
.include "../../devel/xulrunner192/mozilla-common.mk"
CONFIGURE_ARGS+= --enable-chrome-format=jar
.include "options.mk"
pre-configure:
cd ${WRKSRC} && autoconf
cd ${WRKSRC}/js/src && autoconf
cd ${WRKSRC}/nsprpub && autoconf
post-install:
# XXX fix the pkg-config files instead
rm -f ${DESTDIR}${PREFIX}/lib/xulrunner192/libxpcomglue.a
ln -s ${PREFIX}/lib/xulrunner192-sdk/sdk/lib/libxpcomglue.a \
${DESTDIR}${PREFIX}/lib/xulrunner192/libxpcomglue.a
rm -f ${DESTDIR}${PREFIX}/lib/xulrunner192/libxpcomglue_s.a
ln -s ${PREFIX}/lib/xulrunner192-sdk/sdk/lib/libxpcomglue_s.a \
${DESTDIR}${PREFIX}/lib/xulrunner192/libxpcomglue_s.a
rm -f ${DESTDIR}${PREFIX}/lib/xulrunner192/libunicharutil_external_s.a
ln -s ${PREFIX}/lib/xulrunner192-sdk/sdk/lib/libunicharutil_external_s.a \
${DESTDIR}${PREFIX}/lib/xulrunner192/libunicharutil_external_s.a
.include "../../mk/bsd.pkg.mk"
|