diff options
author | marcus <marcus@FreeBSD.org> | 2005-10-10 03:44:02 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2005-10-10 03:44:02 +0800 |
commit | efe59070b379f0b80a99e3f52a883088aa2f68ce (patch) | |
tree | 0a42c3c373e151262aa0dec0ef30353b67f96c60 /www/firefox10 | |
parent | 634dee5985c68e2009ee609217373114257ba0de (diff) | |
download | freebsd-ports-gnome-efe59070b379f0b80a99e3f52a883088aa2f68ce.tar.gz freebsd-ports-gnome-efe59070b379f0b80a99e3f52a883088aa2f68ce.tar.zst freebsd-ports-gnome-efe59070b379f0b80a99e3f52a883088aa2f68ce.zip |
* Add support of ports-installed Kerberos [1]
* Enable all default extensions [2]
PR: 86961 [2]
Submitted by: David W. Hankins <David_Hankins@isc.org> [1]
Diffstat (limited to 'www/firefox10')
-rw-r--r-- | www/firefox10/Makefile | 4 | ||||
-rw-r--r-- | www/firefox10/files/mozconfig.in | 4 |
2 files changed, 5 insertions, 3 deletions
diff --git a/www/firefox10/Makefile b/www/firefox10/Makefile index 4d6386d1e28c..857f950a868b 100644 --- a/www/firefox10/Makefile +++ b/www/firefox10/Makefile @@ -8,7 +8,7 @@ PORTNAME= firefox PORTVERSION= 1.0.7 -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= www MASTER_SITES= ${MASTER_SITE_MOZILLA} @@ -40,6 +40,7 @@ USE_X_PREFIX= yes WRKSRC= ${WRKDIR}/mozilla PKGINSTALL= ${WRKDIR}/pkg-install PKGDEINSTALL= ${WRKDIR}/pkg-deinstall +KRB5_HOME?= /usr EXTRACT_AFTER_ARGS= | ${TAR} -xf - --exclude */CVS/* \ --exclude */macbuild/*\ @@ -145,6 +146,7 @@ post-extract:: -e 's|@LOCALBASE@|${LOCALBASE}|' \ -e 's|@FAKEDIR@|${FAKEDIR}|' \ -e 's|@PERL@|${PERL5}|' \ + -e 's|@KRB5_HOME@|${KRB5_HOME}|' \ <${FILESDIR}/mozconfig.in >${WRKSRC}/.mozconfig @${SED} -e 's|@PORTNAME_ICON@|${PORTNAME_ICON}|' \ <${FILESDIR}/${PORTNAME}.desktop.in >${WRKDIR}/${PORTNAME}.desktop diff --git a/www/firefox10/files/mozconfig.in b/www/firefox10/files/mozconfig.in index ad642f0bf408..57f2d808beb0 100644 --- a/www/firefox10/files/mozconfig.in +++ b/www/firefox10/files/mozconfig.in @@ -33,7 +33,7 @@ ac_add_options --with-system-jpeg=@LOCALBASE@ ac_add_options --with-system-zlib ac_add_options --with-system-png=@LOCALBASE@ ac_add_options --with-system-nspr -ac_add_options --with-gssapi=/usr +ac_add_options --with-gssapi=@KRB5_HOME@ ###################################################################### # set compile/link features ac_add_options --with-pthreads @@ -50,7 +50,7 @@ ac_add_options --disable-installer ac_add_options --enable-single-profile ac_add_options --disable-profilesharing ac_add_options --enable-image-decoders=all -ac_add_options --enable-extensions="cookie,xml-rpc,xmlextras,pref,transformiix,universalchardet,webservices,inspector,p3p,gnomevfs" +ac_add_options --enable-extensions="default" ###################################################################### # conditional from port Makefile #if test -n "$WITH_REORDER"; then |