mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
2adec5725f
- In fact, current bsd.port.mk does nothing about this *_FOR_ARCHS flags, but bsd.port.mk will be updated soon by Asami-san. - Some people is working on OSF/1 emulation on alpha. We may have netscape port on alpha near future.
48 lines
1.4 KiB
Makefile
48 lines
1.4 KiB
Makefile
# New ports collection makefile for: netscape
|
|
# Version required: 3.04
|
|
# Date created: 21 August 1995
|
|
# Whom: asami
|
|
#
|
|
# $Id: Makefile,v 1.26 1998/12/19 11:20:11 markm 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= ports@FreeBSD.ORG
|
|
|
|
NOT_FOR_ARCHS= alpha
|
|
|
|
NO_LATEST_LINK= yes
|
|
NO_WRKSUBDIR= yes
|
|
|
|
.if defined(GOLD)
|
|
MASTER_SITES= ftp://archive:oldies@archive.netscape.com/archive/navigator/3.04/shipping/english/unix/bsdi11/navigator_gold_complete/
|
|
DIST_SUBDIR= gold
|
|
PKGNAME= ${DISTNAME}-gold
|
|
.endif
|
|
|
|
.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.3.2-unix-x86.tar.gz
|
|
RESTRICTED= "Contains strong cryptography"
|
|
.endif
|
|
|
|
.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) && defined(USA_RESIDENT) && ${USA_RESIDENT} == NO
|
|
cd ${WRKSRC}/Fortify-1.3.2-unix-x86 && \
|
|
(${ECHO} yes ; ${ECHO} no) | ./Fortify.sh ${PREFIX}/lib/netscape/netscape.bin
|
|
.endif
|
|
@${CAT} ${PKGDIR}/DESCR
|
|
|
|
.include <bsd.port.mk>
|