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/netscape4-communicator/Makefile | |
parent | Standardize all user defined options to the booleans WITH_FOO and (diff) |
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
Diffstat (limited to 'www/netscape4-communicator/Makefile')
-rw-r--r-- | www/netscape4-communicator/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/www/netscape4-communicator/Makefile b/www/netscape4-communicator/Makefile index 3b46e97a9100..f1e5e3c12e3c 100644 --- a/www/netscape4-communicator/Makefile +++ b/www/netscape4-communicator/Makefile @@ -46,7 +46,7 @@ PLIST_SUB= BROWSER=${BROWSER_ARC} BROWSER_VER=${BROWSER_VER} \ DISTFILES+= ${AUTOADMIN} .endif -.if defined(USE_128BIT) && !defined(NO_FORTIFY) +.if defined(WITH_128BIT) && !defined(NO_FORTIFY) MASTER_SITES+= ftp://ftp.fortify.net/pub/Fortify/ \ ftp://ftp.za.freebsd.org/pub/Fortify/ DISTFILES+= ${FORTIFY}.tar.gz @@ -65,9 +65,9 @@ RUN_DEPENDS= ${X11BASE}/lib/aout/libX11.so.6.1:${PORTSDIR}/x11/XFree86-aoutlibs .SILENT: -.if !defined(USE_128BIT) && !defined(NO_FORTIFY) +.if !defined(WITH_128BIT) && !defined(NO_FORTIFY) 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" .endif post-configure: @@ -103,7 +103,7 @@ do-install: .if (${BROWSER} == "communicator") && !defined(NO_AUTOADMIN) tar zxf ${DISTDIR}/${AUTOADMIN} -C ${NDIR} .endif -.if defined(USE_128BIT) && !defined(NO_FORTIFY) +.if defined(WITH_128BIT) && !defined(NO_FORTIFY) cd ${WRKDIR}/${FORTIFY} \ && (${ECHO}; ${ECHO} yes; ${ECHO} no; ${ECHO} no) \ | ./Fortify.sh ${NDIR}/${BROWSER_ARC}-${BROWSER_VER}.bin |