diff options
author | asami <asami@FreeBSD.org> | 1997-09-25 16:25:29 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1997-09-25 16:25:29 +0800 |
commit | de649065ae6f64ac302b947eb97ed3780d29fba8 (patch) | |
tree | 3564402c6fa2fa970a94918bbf35fa0465362806 /www/seamonkey/Makefile | |
parent | 5eeb31048c55a977661d20977daa7f0ccb7bc514 (diff) | |
download | freebsd-ports-gnome-de649065ae6f64ac302b947eb97ed3780d29fba8.tar.gz freebsd-ports-gnome-de649065ae6f64ac302b947eb97ed3780d29fba8.tar.zst freebsd-ports-gnome-de649065ae6f64ac302b947eb97ed3780d29fba8.zip |
Make it possible to install the standalone navigator by defining
${NAVIGATOR}.
Requested by: so many people I can't remember them all
Diffstat (limited to 'www/seamonkey/Makefile')
-rw-r--r-- | www/seamonkey/Makefile | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/www/seamonkey/Makefile b/www/seamonkey/Makefile index 55949f083d64..bb48dc53e9de 100644 --- a/www/seamonkey/Makefile +++ b/www/seamonkey/Makefile @@ -3,13 +3,18 @@ # Date created: 24 Feb 1997 # Whom: ache # -# $Id: Makefile,v 1.5 1997/08/04 09:20:48 ache Exp $ +# $Id: Makefile,v 1.7 1997/09/07 20:26:58 ache Exp $ # DISTNAME= netscape-4.03b8 CATEGORIES= www -MASTER_SITES= ftp://ftp.netscape.com/pub/communicator/4.03/4.03b8/english/unix/freebsd/base_install/ +.if defined(NAVIGATOR) +MASTER_SITES= ftp://ftp.netscape.com/pub/communicator/4.03/4.03b8/english/unix/freebsd/navigator_standalone/ +DISTFILES= navigator-v403b8-export.x86-unknown-freebsd.tar.gz +.else +MASTER_SITES= ftp://ftp.netscape.com/pub/communicator/4.03/4.03b8/english/unix/freebsd/base_install/ DISTFILES= communicator-v403b8-export.x86-unknown-freebsd.tar.gz +.endif NO_WRKSUBDIR= Yes NO_BUILD= Yes @@ -20,6 +25,13 @@ MAINTAINER= ache@FreeBSD.ORG RESTRICTED= "Commercial software" +pre-fetch: +.if !defined(NAVIGATOR) + @${ECHO_MSG} "Note you can make the standalone navigator version by typing \"make NAVIGATOR=yes\"." +.else + @${ECHO_MSG} "Making the standalone navigator version." +.endif + do-install: cd ${WRKSRC} && yes "" | \ LC_TIME=C MOZILLA_HOME="${NDIR}" ./ns-install |