mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
7e82dd1cb4
cope with fortify 1.4.3, change MAINTAINER to sada, divide COMMENT for eath regular and gold version. I've realized PKGNAME justification by different way from the PR notifies. PR: ports/12955 Submitted by: Neil Blakey-Milner <nbm@rucus.ru.ac.za>
49 lines
1.2 KiB
Makefile
49 lines
1.2 KiB
Makefile
# New ports collection makefile for: netscape
|
|
# Version required: 3.04
|
|
# Date created: 21 August 1995
|
|
# Whom: asami
|
|
#
|
|
# $Id: Makefile,v 1.29 1999/01/26 02:37:15 steve Exp $
|
|
#
|
|
|
|
DISTNAME?= netscape-3.04
|
|
CATEGORIES= www
|
|
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
|
|
|
|
Y2K= http://home.netscape.com/products/year2000/faq/client.html
|
|
|
|
NOT_FOR_ARCHS= alpha
|
|
|
|
NO_LATEST_LINK= yes
|
|
NO_WRKSUBDIR= yes
|
|
|
|
.if defined(USE_128BIT)
|
|
MASTER_SITES+= ftp://ftp.fortify.net/pub/Fortify/ \
|
|
ftp://ftp.za.freebsd.org/pub/Fortify/
|
|
DISTFILES+= ${FORTIFY}.tar.gz
|
|
RESTRICTED= "Contains strong cryptography"
|
|
.endif
|
|
|
|
FORTIFY= Fortify-1.4.3-unix-x86
|
|
|
|
.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
|
|
|
|
pre-install:
|
|
PKG_PREFIX=${PREFIX} ${SH} ${PKGREQ} ${PKGNAME} INSTALL
|
|
|
|
post-install:
|
|
.if defined(USE_128BIT)
|
|
cd ${WRKDIR}/${FORTIFY} && \
|
|
(${ECHO} yes ; ${ECHO} no ; ${ECHO} no) | ./Fortify.sh ${PREFIX}/lib/netscape/netscape.bin
|
|
.endif
|
|
@${CAT} ${PKGDIR}/DESCR
|
|
|
|
.include <bsd.port.mk>
|