diff options
author | alane <alane@FreeBSD.org> | 2002-12-10 16:57:05 +0800 |
---|---|---|
committer | alane <alane@FreeBSD.org> | 2002-12-10 16:57:05 +0800 |
commit | 41c7722cb1f37f0d8dc8b563197de9832724de13 (patch) | |
tree | b25184b5d22f1dc4dd488aa8423e6c3a7a6faed4 /www/firefox-esr/files | |
parent | 3f7aa11b159d445b0c7792c337630c72d2d919b4 (diff) | |
download | freebsd-ports-gnome-41c7722cb1f37f0d8dc8b563197de9832724de13.tar.gz freebsd-ports-gnome-41c7722cb1f37f0d8dc8b563197de9832724de13.tar.zst freebsd-ports-gnome-41c7722cb1f37f0d8dc8b563197de9832724de13.zip |
Update Phoenix to 0.5, the last release named Phoenix. Fixes a lot a bugs,
adds some features, there is at least one crasher I've hit so far but I don't
know if it is anomoly or not yet.
Approved by: kris
Diffstat (limited to 'www/firefox-esr/files')
-rw-r--r-- | www/firefox-esr/files/mkdistfile | 91 | ||||
-rw-r--r-- | www/firefox-esr/files/mozconfig.in | 10 |
2 files changed, 49 insertions, 52 deletions
diff --git a/www/firefox-esr/files/mkdistfile b/www/firefox-esr/files/mkdistfile index b178f4830686..a49174ae7b5d 100644 --- a/www/firefox-esr/files/mkdistfile +++ b/www/firefox-esr/files/mkdistfile @@ -119,56 +119,53 @@ done test $# -eq 1 || usage 1 REV=$1 -test ${REV#*.} = today && REV=${REV%.*}.$DATE +test ${REV##*.} = today && REV=${REV%.*}.$DATE +status "pruning tree..." exfile=$(tmpfile) cat >>$exfile <<'EOF' -*/CVS -*/CVS/* -*/macbuild -*/macbuild/* -*/package -*/package/* -*/.cvsignore -*/windows -*/windows/* -*/activex -*/activex/* -*/os2 -*/os2/* -*/solaris -*/solaris/* -*/gc -*/gc/* -mozilla/apache -mozilla/calendar -mozilla/cck -mozilla/chimera -mozilla/ef -mozilla/embed.mak -mozilla/embed.mk -mozilla/gconfig -mozilla/gfx2 -mozilla/grendel -mozilla/java -mozilla/js2 -mozilla/mail -mozilla/mailnews -mozilla/mozilla -mozilla/mozilla.kdevprj -mozilla/mozilla.lsm -mozilla/msgsdk -mozilla/mstone -mozilla/nglayout.mac -mozilla/nunet -mozilla/other-licenses -mozilla/privacy -mozilla/silentdl -mozilla/timer -mozilla/trex.mak -mozilla/trex.mk -mozilla/webtools +^.*/CVS($|/) +^.*/macbuild($|/) +^.*/package($|/) +^.*/.cvsignore($|/) +^.*/windows($|/) +^.*/activex($|/) +^.*/os2($|/) +^.*/solaris($|/) +^.*/gc($|/) +^mozilla/apache($|/) +^mozilla/calendar($|/) +^mozilla/cck($|/) +^mozilla/chimera($|/) +^mozilla/ef($|/) +^mozilla/embed.mak($|/) +^mozilla/embed.mk($|/) +^mozilla/gconfig($|/) +^mozilla/gfx2($|/) +^mozilla/grendel($|/) +^mozilla/java($|/) +^mozilla/js2($|/) +^mozilla/mail($|/) +^mozilla/mailnews($|/) +^mozilla/mozilla($|/) +^mozilla/mozilla.kdevprj($|/) +^mozilla/mozilla.lsm($|/) +^mozilla/msgsdk($|/) +^mozilla/mstone($|/) +^mozilla/nglayout.mac($|/) +^mozilla/nunet($|/) +^mozilla/other-licenses($|/) +^mozilla/privacy($|/) +^mozilla/silentdl($|/) +^mozilla/timer($|/) +^mozilla/trex.mak($|/) +^mozilla/trex.mk($|/) +^mozilla/webtools($|/) EOF -tar -cjp -X $exfile -f phoenix-$REV.tar.bz2 mozilla +test -d mozilla || die "No mozilla dir here." +find mozilla 2>/dev/null | egrep -f $exfile | xargs rm -fr rm -f $exfile +status "making phoenix-$REV.tar.bz2 ..." +tar -cjpf phoenix-$REV.tar.bz2 mozilla +status "done." #EOF diff --git a/www/firefox-esr/files/mozconfig.in b/www/firefox-esr/files/mozconfig.in index 88823ea75c24..c6beb3bb3703 100644 --- a/www/firefox-esr/files/mozconfig.in +++ b/www/firefox-esr/files/mozconfig.in @@ -36,17 +36,17 @@ ac_add_options --with-system-mng=@LOCALBASE@ # enable features ac_add_options --with-pthreads ac_add_options --enable-xft -ac_add_options --enable-xinerama ac_add_options --enable-reorder ac_add_options --enable-strip #ac_add_options --enable-crash-on-assert ###################################################################### # disable unneeded to speed up and/or save space +ac_add_options --disable-auto-deps +ac_add_options --disable-bidi +ac_add_options --disable-dtd-debug +ac_add_options --disable-jsd ac_add_options --disable-ldap ac_add_options --disable-logging -ac_add_options --disable-dtd-debug -ac_add_options --disable-auto-deps ac_add_options --disable-pedantic -ac_add_options --disable-jsd -ac_add_options --disable-bidi +ac_add_options --disable-xinerama ###################################################################### |