diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2003-06-02 18:30:59 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2003-06-02 18:30:59 +0000 |
commit | ed564c5560425a51c9637a8e57b60f76fc32f06c (patch) | |
tree | 8826ec8ebd237729679ab296e732886c610e183d /www/mozilla-firebird/files/mkdistfile | |
parent | New port: fuhquake (diff) |
Add mozilla-firebird after a repo move from phoenix.
Mozilla Firebird is the browser reborn from the ashes of the Phoenix.
* Update to 0.6 [1]
* Add optional GTK+-2 support [2]
* Add [untested] Sparc64 support [3]
* Add [untested] Alpha support [4]
* Do not compile with -O2 by default. Instead specify -DWITH_OPTIMIZED_CFLAGS
to get extra optimizations
* Link the Java Plug-in again
Submitted by: Stijn Hoop <stijn@win.tue.nl> [1]
Christopher Nehren <apeiron@comcast.net> [2] (based on)
tmm and kris [3]
Bernd Walter <ticso@cicely.de> [4]
Minor fixes by: obraun
Notes
Notes:
svn path=/head/; revision=82037
Diffstat (limited to 'www/mozilla-firebird/files/mkdistfile')
-rw-r--r-- | www/mozilla-firebird/files/mkdistfile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/www/mozilla-firebird/files/mkdistfile b/www/mozilla-firebird/files/mkdistfile index a49174ae7b5d..10cb140be958 100644 --- a/www/mozilla-firebird/files/mkdistfile +++ b/www/mozilla-firebird/files/mkdistfile @@ -1,7 +1,7 @@ #!/bin/sh # -*-shell-script-*- # -# mkdistfile -- maintainer's utility to make a phoenix distfile +# mkdistfile -- maintainer's utility to make a firebird distfile # # Copyright (c) 2002, Alan Eldridge # All rights reserved. @@ -87,7 +87,7 @@ EOF ############################################################ # show version and exit ############################################################ -VERSION='$Revision$' +VERSION='$Revision: 1.1 $' VERSION=${VERSION#* }; VERSION=${VERSION% *} version() { echo "$APPNAME $VERSION" \ "Copyright (c) 2002 Alan Eldridge"; exit $1;} @@ -165,7 +165,7 @@ EOF 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 "making firebird-$REV.tar.bz2 ..." +tar -cjpf firebird-$REV.tar.bz2 mozilla status "done." #EOF |