* Fix md5 checksum that I messed up on last commit.

* Add back Fortify support.  It works with navigator-45, it should work here.
  (note that port is still broken so I can't fully test it)

Going to get yelled at by:	thepish
This commit is contained in:
David E. O'Brien 1998-11-24 20:39:55 +00:00
parent 9c91c702a5
commit 926caa9d1c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=14873
2 changed files with 28 additions and 10 deletions

View File

@ -3,7 +3,7 @@
# Date created: 24 Feb 1997
# Whom: thepish
#
# $Id: Makefile,v 1.26 1998/10/19 13:15:14 thepish Exp $
# $Id: Makefile,v 1.27 1998/10/20 06:45:18 asami Exp $
#
DISTNAME= communicator-v45-export.x86-unknown-freebsd
@ -22,10 +22,15 @@ NO_BUILD= Yes
NDIR= ${PREFIX}/lib/netscape.45
BINDIR= ${PREFIX}/bin
pre-extract:
.if defined(USE_128BIT)
@${ECHO} "Sorry Fortify do not provide support for pre-release netscape versions"
.endif
MASTER_SITES+= ftp://ftp.fortify.net/pub/Fortify/ \
ftp://ftp.za.freebsd.org/pub/Fortify/
DISTFILES+= Fortify-1.3.0-unix-x86.tar.gz
RESTRICTED= "Contains strong cryptography"
.else
pre-extract:
@${ECHO} "You can make Netscape use 128-bit encryption by defining USE_128BIT"
.endif # USE_128BIT
.if !defined(MULTIVERSION)
@${ECHO} "you can define MULTIVERSION to install the script which runs communicator-v45"
@ -48,6 +53,10 @@ do-install:
${INSTALL_DATA} ${FILESDIR}/mailcap ${NDIR}; \
fi
${RM} -rf ${NDIR}/movemail-src
chown -R root.wheel ${NDIR}
.if defined(USE_128BIT)
cd ${WRKDIR}/Fortify-1.3.0-unix-x86 && \
(${ECHO} yes ; ${ECHO} no) | ./Fortify.sh ${NDIR}/communicator-4.5.bin
.endif
chown -R ${BINOWN}.${BINGRP} ${NDIR}
.include <bsd.port.mk>

View File

@ -3,7 +3,7 @@
# Date created: 24 Feb 1997
# Whom: thepish
#
# $Id: Makefile,v 1.26 1998/10/19 13:15:14 thepish Exp $
# $Id: Makefile,v 1.27 1998/10/20 06:45:18 asami Exp $
#
DISTNAME= communicator-v45-export.x86-unknown-freebsd
@ -22,10 +22,15 @@ NO_BUILD= Yes
NDIR= ${PREFIX}/lib/netscape.45
BINDIR= ${PREFIX}/bin
pre-extract:
.if defined(USE_128BIT)
@${ECHO} "Sorry Fortify do not provide support for pre-release netscape versions"
.endif
MASTER_SITES+= ftp://ftp.fortify.net/pub/Fortify/ \
ftp://ftp.za.freebsd.org/pub/Fortify/
DISTFILES+= Fortify-1.3.0-unix-x86.tar.gz
RESTRICTED= "Contains strong cryptography"
.else
pre-extract:
@${ECHO} "You can make Netscape use 128-bit encryption by defining USE_128BIT"
.endif # USE_128BIT
.if !defined(MULTIVERSION)
@${ECHO} "you can define MULTIVERSION to install the script which runs communicator-v45"
@ -48,6 +53,10 @@ do-install:
${INSTALL_DATA} ${FILESDIR}/mailcap ${NDIR}; \
fi
${RM} -rf ${NDIR}/movemail-src
chown -R root.wheel ${NDIR}
.if defined(USE_128BIT)
cd ${WRKDIR}/Fortify-1.3.0-unix-x86 && \
(${ECHO} yes ; ${ECHO} no) | ./Fortify.sh ${NDIR}/communicator-4.5.bin
.endif
chown -R ${BINOWN}.${BINGRP} ${NDIR}
.include <bsd.port.mk>