1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-15 23:50:44 +00:00
freebsd-ports/security/p5-PGP-Sign/Makefile
Will Andrews 1e60866cc1 Lots and lots of cleanups. Teach p5-* in general about PKGNAMEPREFIX.
Add some missing/wrong dependencies.  Show how to respect CC/CFLAGS.  Many
miscellaneous modifications.  I used more excessive hacks to force p5-Jcode
and p5-WWW-Search to respect CC/CFLAGS.

Patches largely done by:	Christian Weisgerber <naddy@mips.inka.de>
2000-06-17 02:37:15 +00:00

68 lines
1.5 KiB
Makefile

# 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}
# You can either define one of these on the command line or accept the
# default (WITH_PGP2). You can also predefine the values for PGP (or
# PGPS and PGPV) and PGPSTYLE if you don't like what this makefile
# would assign.
# WITH_PGP2 - use PGP 2.6.* or a reasonable facsimile thereof
# WITH_PGP5 - use PGP 5 or a work-alike
# WITH_GPG - use Gnu Privacy Guard
.if !defined(WITH_PGP5) && !defined(WITH_GPG)
WITH_PGP2?= yes
RUN_DEPENDS= pgp:${PORTSDIR}/security/pgp
.ifndef PGP
PGP!= which pgp || ${ECHO} ${PREFIX}/bin/pgp
.endif
PGPSTYLE?= PGP2
.else
.ifdef WITH_PGP5
RUN_DEPENDS= pgps:${PORTSDIR}/security/pgp5
.ifndef PGPS
PGPS!= which pgps || ${ECHO} ${PREFIX}/bin/pgps
.endif
.ifndef PGPV
PGPV!= which pgpv || ${ECHO} ${PREFIX}/bin/pgpv
.endif
PGPSTYLE?= PGP5
.endif
.ifdef WITH_GPG
RUN_DEPENDS= gpg:${PORTSDIR}/security/gnupg
.ifndef PGP
PGP!= which gpg || ${ECHO} ${PREFIX}/bin/gpg
.endif
PGPSTYLE?= GPG
.endif
.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>