summaryrefslogtreecommitdiff
path: root/security/pgp6/Makefile
blob: 11001a827d037f127df9cd144fb89a943318179f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# New ports collection makefile for: pgp
# Version required:     MIT 2.6.2 / International 2.6.3i dev
# PGP 2.6.3i homepage is http://www.ifi.uio.no/~staalesc/PGP/home.html
# Date created:         8 Jul 1995
# Whom:                 ache
#
# $Id: Makefile,v 1.8 1995/09/25 19:21:31 ache Exp $
#

CATEGORIES+=	security

MAINTAINER=	ache@FreeBSD.ORG
WRKSRC=         ${WRKDIR}/src
NO_PACKAGE=     YES
MAKEFILE=       makefile
ALL_TARGET=     freebsd
PGPLIB=         ${PREFIX}/lib/pgp
BUILD_DEPENDS=  unzip:${PORTSDIR}/archivers/unzip
# Need to define USA_RESIDENT to YES or NO
IS_INTERACTIVE=	YES

do-install:
	cd ${WRKSRC}; install -c -o bin -g bin -m 555 pgp ${PREFIX}/bin
	cd ${WRKDIR}/doc; \
		  install -c -o bin -g bin -m 444 pgp.1 ${PREFIX}/man/man1
	-mkdir -p ${PGPLIB}
	chown bin.bin ${PGPLIB}
	chmod 555 ${PGPLIB}
	cd ${WRKDIR}; \
	    install -c -o bin -g bin -m 444 pgp.hlp \
			      doc/pgpdoc1.txt doc/pgpdoc2.txt ${PGPLIB}; \
	    [ -f ${PGPLIB}/language.txt ] || \
		      install -c -o bin -g bin -m 444 language.txt ${PGPLIB}; \
	    [ -f ${PGPLIB}/config.txt ] || \
		      install -c -o bin -g bin -m 444 config.txt ${PGPLIB}
	-${PREFIX}/bin/pgp > /dev/null  2>&1  # update .idx file

.if !defined(USA_RESIDENT) || ${USA_RESIDENT} != YES && ${USA_RESIDENT} != NO
pre-fetch:
	@echo
	@echo You must set variable USA_RESIDENT to YES, if you are USA resident
	@echo or to NO, if you aren\'t USA resident to build this package
	@false
.elif defined(USA_RESIDENT)
.if ${USA_RESIDENT} == YES
DISTNAME=       pgp262s
PKGNAME=	pgp-2.6.2
MASTER_SITES=   ftp://sable.ox.ac.uk/pub/crypto/pgp/unix/
EXTRACT_SUFX=   .zip
BUILD_DEPENDS+= gmake:${PORTSDIR}/devel/gmake
EXTRACT_CMD=    unzip
EXTRACT_ARGS=   -q
FILESDIR=       ${.CURDIR}/files.usa
PATCHDIR=       ${.CURDIR}/patches.usa

post-extract:
	cd ${WRKDIR}; $(EXTRACT_CMD) $(EXTRACT_ARGS) -aa $(DISTNAME)i
	cd ${WRKDIR}; $(EXTRACT_CMD) $(EXTRACT_ARGS) -aa rsaref
	cd ${WRKDIR}; rm -f *.zip

pre-build:
	cd ${WRKDIR}/rsaref/install/unix; ${GMAKE}
.else
DISTNAME=       pgp263i-dev
PKGNAME=        pgp-2.6.3i
MASTER_SITES=   ftp://ftp.ifi.uio.no/pub/pgp/incoming/ \
		ftp://ftp.kiae.su/unix/crypto/pgp/
EXTRACT_SUFX=   .zip
EXTRACT_CMD=    unzip
EXTRACT_ARGS=   -qa
FILESDIR=       ${.CURDIR}/files.non_usa
PATCHDIR=       ${.CURDIR}/patches.non_usa

.endif
.endif

.include <bsd.port.mk>