diff options
author | Jeremy Lea <reg@FreeBSD.org> | 2000-04-17 00:19:02 +0000 |
---|---|---|
committer | Jeremy Lea <reg@FreeBSD.org> | 2000-04-17 00:19:02 +0000 |
commit | b4455771cced2fe9f134e751fe88dbba7226e694 (patch) | |
tree | 39733bef5e1d466d30938b5a47f0b46a7b6890b4 /www/netscape3 | |
parent | 877b8a533b44bb6324ebbaf65cd80a60d1572003 (diff) | |
download | ports-b4455771cced2fe9f134e751fe88dbba7226e694.tar.gz ports-b4455771cced2fe9f134e751fe88dbba7226e694.zip |
Standardize all user defined options to the booleans WITH_FOO and
WITHOUT_FOO. Begin the process of reserving these prefixes for user defined
options.
No comment by: ports
Notes
Notes:
svn path=/head/; revision=27680
Diffstat (limited to 'www/netscape3')
-rw-r--r-- | www/netscape3/Makefile | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/www/netscape3/Makefile b/www/netscape3/Makefile index 15d8a225f11b..0f36d87c16af 100644 --- a/www/netscape3/Makefile +++ b/www/netscape3/Makefile @@ -8,11 +8,13 @@ PORTNAME?= netscape PORTVERSION?= 3.04 CATEGORIES= www -MASTER_SITES?= ftp://archive:oldies@archive.netscape.com/archive/navigator/3.04/shipping/english/unix/bsdi11/navigator_complete/ +MASTER_SITES?= ftp://archive:oldies@archive.netscape.com/archive/navigator/3.04/shipping/english/unix/bsdi11/navigator_complete/ DISTFILES= netscape-v304-export.x86-unknown-bsd.tar.gz MAINTAINER= sada@FreeBSD.org +RUN_DEPENDS= ${X11BASE}/lib/aout/libX11.so.6.1:${PORTSDIR}/x11/XFree86-aoutlibs + Y2K= http://home.netscape.com/products/year2000/faq/client.html ONLY_FOR_ARCHS= i386 @@ -22,7 +24,7 @@ NO_LATEST_LINK= yes NO_WRKSUBDIR= yes PKGREQ= ${PORTSDIR}/www/netscape4-communicator/pkg/REQ.aout -.if defined(USE_128BIT) +.if defined(WITH_128BIT) MASTER_SITES+= ftp://ftp.fortify.net/pub/Fortify/ \ ftp://ftp.za.freebsd.org/pub/Fortify/ DISTFILES+= ${FORTIFY}.tar.gz @@ -31,9 +33,9 @@ RESTRICTED= "Contains strong cryptography" FORTIFY= Fortify-1.4.6-unix-x86 -.if !defined(USE_128BIT) +.if !defined(WITH_128BIT) pre-extract: - @${ECHO} "You can make Netscape use 128-bit encryption by defining USE_128BIT" + @${ECHO} "You can make Netscape use 128-bit encryption by defining WITH_128BIT" @${ECHO} "and defining USA_RESIDENT to NO" .endif @@ -41,7 +43,7 @@ pre-install: PKG_PREFIX=${PREFIX} ${SH} ${PKGREQ} ${PKGNAME} INSTALL post-install: -.if defined(USE_128BIT) +.if defined(WITH_128BIT) cd ${WRKDIR}/${FORTIFY} \ && (${ECHO}; ${ECHO} yes; ${ECHO} no; ${ECHO} no) \ | ./Fortify.sh ${PREFIX}/lib/netscape/netscape.bin |