summaryrefslogtreecommitdiff
path: root/security/p5-PGP-Sign/Makefile
blob: 6b482469607ac3fb51310c2413e5bcf95196f72d (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
78
# New ports collection makefile for: p5-PGP-Sign
# Date created:		January 2, 1998
# Whom:			Don Croyle <croyle@gelemna.org>
#
# $FreeBSD$
#

PORTNAME=	PGP-Sign
PORTVERSION=	0.16
CATEGORIES=	security perl5
MASTER_SITES=	${MASTER_SITE_PERL_CPAN}
MASTER_SITE_SUBDIR=	PGP
PKGNAMEPREFIX=	p5-

MAINTAINER=	croyle@gelemna.org

USE_PERL5=	yes

MAN3=		PGP::Sign.3
MANPREFIX=	${PREFIX}/lib/perl5/${PERL_VERSION}

# If DEFAULTPGP isn't defined, it gets set to PGP2.  If you don't like
# the values that this process assigns to PGP (or PGPV and PGPS) and
# PGPSTYLE, they can be predefined.
#
# Currently useful values for DEFAULTPGP are:
# PGP2 - PGP 2.6.* or a reasonable facsimile thereof
# PGP5 - PGP 5 or a work-alike
# PGP6 - PGP 6.5 (effectively the same as PGP2)
# GPG  - Gnu Privacy Guard

.ifndef DEFAULTPGP
DEFAULTPGP=	PGP2
.endif

.if (${DEFAULTPGP} == PGP2 )
RUN_DEPENDS=	pgp:${PORTSDIR}/security/pgp
PGPSTYLE?=	PGP2
.ifndef PGP
PGP!=	which pgp || ${ECHO} ${PREFIX}/bin/pgp
.endif
.elif (${DEFAULTPGP} == PGP5 )
RUN_DEPENDS=	pgps:${PORTSDIR}/security/pgp5
PGPSTYLE?=	PGP5
.ifndef PGPS
PGPS!=	which pgps || ${ECHO} ${PREFIX}/bin/pgps
.endif
.ifndef PGPV
PGPV!=	which pgpv || ${ECHO} ${PREFIX}/bin/pgpv
.endif
.elif (${DEFAULTPGP} == PGP6)
RUN_DEPENDS=	pgp:${PORTSDIR}/security/pgp6
PGPSTYLE?=	PGP6
.ifndef PGP
PGP!=	which pgp || ${ECHO} ${PREFIX}/bin/pgp
.endif
.elif (${DEFAULTPGP} == GPG)
RUN_DEPENDS=	gpg:${PORTSDIR}/security/gnupg
PGPSTYLE?=	GPG
.ifndef PGP
PGP!=	which gpg || ${ECHO} ${PREFIX}/bin/gpg
.endif
.else
.error Unsupported DEFAULTPGP value.  See the Makefile for a list of acceptable values.
.endif

.ifdef PGP
PGPS?=	${PGP}
PGPV?=	${PGP}
.endif

CONFIG_ARGS=	PGPS=${PGPS} PGPV=${PGPV} PGPSTYLE=${PGPSTYLE}

do-configure:
	@ cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} Makefile.PL \
		${CONFIG_ARGS}

.include <bsd.port.mk>