aboutsummaryrefslogtreecommitdiff
path: root/www/netscape3
diff options
context:
space:
mode:
authorMark Murray <markm@FreeBSD.org>1998-03-16 15:38:37 +0000
committerMark Murray <markm@FreeBSD.org>1998-03-16 15:38:37 +0000
commit242edb68d9289ccb5dd9d1e8f35acfe09a2e743d (patch)
tree401e1104489926cd6bd19eadcde40585c7c442d7 /www/netscape3
parent289b08af32684aedfc9c7864a0be7d7814107a75 (diff)
downloadports-242edb68d9289ccb5dd9d1e8f35acfe09a2e743d.tar.gz
ports-242edb68d9289ccb5dd9d1e8f35acfe09a2e743d.zip
Fix for the case where USA_RESIDENT is not defined.
Notes
Notes: svn path=/head/; revision=10196
Diffstat (limited to 'www/netscape3')
-rw-r--r--www/netscape3/Makefile9
1 files changed, 5 insertions, 4 deletions
diff --git a/www/netscape3/Makefile b/www/netscape3/Makefile
index fe62354906c7..b20282051584 100644
--- a/www/netscape3/Makefile
+++ b/www/netscape3/Makefile
@@ -3,7 +3,7 @@
# Date created: 21 August 1995
# Whom: asami
#
-# $Id: Makefile,v 1.19 1998/01/26 09:53:03 vanilla Exp $
+# $Id: Makefile,v 1.20 1998/03/15 15:10:38 markm Exp $
#
DISTNAME= netscape-3.04
@@ -21,20 +21,21 @@ DIST_SUBDIR= gold
PKGNAME= ${DISTNAME}-gold
.endif
-.if defined(USE_128BIT) && ${USA_RESIDENT} == NO
+.if defined(USE_128BIT) && defined(USA_RESIDENT) && ${USA_RESIDENT} == NO
MASTER_SITES+= ftp://ftp.fortify.net/pub/Fortify/ \
ftp://ftp.za.freebsd.org/pub/Fortify/
DISTFILES+= Fortify-1.2.1-unix.tar.gz
RESTRICTED= "Contains strong cryptography"
.endif
-.if !defined(USE_128BIT) && ${USA_RESIDENT} == NO
+.if !defined(USE_128BIT)
pre-extract:
@${ECHO} "You can make Netscape use 128-bit encryption by defining USE_128BIT"
+ @${ECHO} "and defining USA_RESIDENT to NO"
.endif
post-install:
-.if defined(USE_128BIT) && ${USA_RESIDENT} == NO
+.if defined(USE_128BIT) && defined(USA_RESIDENT) && ${USA_RESIDENT} == NO
cd ${WRKSRC}/Fortify-1.2.1-unix && \
(${ECHO} yes ; ${ECHO} no) | ./Fortify.sh ${PREFIX}/lib/netscape/netscape.bin
.endif