openbsd-ports/security/pgp5/Makefile

92 lines
2.8 KiB
Makefile

# $OpenBSD: Makefile,v 1.2 1999/02/05 07:14:21 fgsch Exp $
DISTNAME= pgp50i-unix-src
PKGNAME= pgp-5.0i
CATEGORIES= security
NO_CDROM= "CRYPTO: Third party crypto not allowed."
RESTRICTED= "Crypto; export-controlled"
MIRROR_DISTFILE=no
MAINTAINER= fgsch@openbsd.org
MASTER_SITES= ftp://ftp.no.pgpi.com/pub/pgp/5.0/unix/ \
ftp://ftp.at.pgpi.com/pub/pgpi/5.0/unix/ \
ftp://ftp.cz.pgpi.com/pub/pgpi/5.0/unix/ \
ftp://ftp.dk.pgpi.com/pub/pgpi/5.0/unix/ \
ftp://ftp.fi.pgpi.com/pub/pgpi/5.0/unix/ \
ftp://ftp.de.pgpi.com/pub/pgpi/5.0/unix/ \
ftp://ftp.jp.pgpi.com/pub/pgpi/5.0/unix/ \
ftp://ftp.kr.pgpi.com/pub/security/pgp/5.0/unix/ \
ftp://ftp.nl.pgpi.com/pub/pgp/5.0/unix/ \
ftp://ftp.pl.pgpi.com/pub/pgpi/5.0/unix/ \
ftp://ftp.ru.pgpi.com/pub/pgp/5.0/unix/ \
ftp://ftp.es.pgpi.com/pub/pgp/5.0/unix/ \
ftp://ftp.se.pgpi.com/pub/pgp/5.0/unix/ \
ftp://ftp.ch.pgpi.com/pub/pgp/5.0/unix/
# Need to add rsaref for US residents
#
.if defined(NO_WARNINGS) || (defined(USA_RESIDENT) && ${USA_RESIDENT} == YES)
MASTER_SITES+= \
ftp://nic.funet.fi/pub/crypt/mirrors/ftp.dsi.unimi.it/applied-crypto/ \
ftp://idea.dsi.unimi.it/pub/security/crypt/math/
DISTFILES= \
${DISTNAME}${EXTRACT_SUFX} \
rsaref2.tar.gz
.endif
GNU_CONFIGURE= yes
NO_PACKAGE= yes
WRKSRC= ${WRKDIR}/pgp50i/src
.if !defined(NO_WARNINGS)
pre-fetch:
.if !defined(USA_RESIDENT) || ${USA_RESIDENT} != YES && ${USA_RESIDENT} != NO
@${ECHO} ""
@${ECHO} The variable USA_RESIDENT must be set to either YES or NO
@${ECHO} in order to build this package. USA residents that are
@${ECHO} not licensees of the RSA algorithm MUST set this variable
@${ECHO} to YES. Users outside the USA MUST set this variable to
@${ECHO} NO. Licensees may choose -- NO is faster.
@${ECHO} ""
@${ECHO} RSAREF2 will be automatically obtained and used to generate
@${ECHO} this program when given the command \"make USA_RESIDENT=YES\"
@${FALSE}
.endif
.endif
# RSAREF2 doesn't work as is when sizeof( long) != 4 -- fix it
#
pre-patch:
.if defined(USA_RESIDENT) && ${USA_RESIDENT} == YES
@${MKDIR} ${PATCHDIR}
@${CP} ${FILESDIR}/patch-rsaref2 ${PATCHDIR}
@${LN} -sf ${WRKDIR}/rsaref2 ${WRKDIR}/pgp50i/rsaref
.endif
post-patch:
@${MV} ${WRKSRC}/man/pgp.1 ${WRKSRC}/man/pgp5.1
.if defined(USA_RESIDENT) && ${USA_RESIDENT} == YES
@${RM} ${PATCHDIR}/patch-rsaref2
.endif
.if defined(USA_RESIDENT) && ${USA_RESIDENT} == YES
# Force RSAREF to be used by making sure that rsaref.a exists and
# that configure does not find lib/pgp/pubkey/pgpRSAGlue1.c.
#
pre-configure:
@(cd ${WRKDIR}/rsaref2/install/unix && \
${SETENV} ${MAKE_ENV} ${MAKE} -f makefile rsaref.a)
@${MV} ${WRKSRC}/lib/pgp/pubkey/pgpRSAGlue1.c \
${WRKSRC}/lib/pgp/pubkey/pgpRSAGlue1.c-
.endif
pre-install:
-${MKDIR} ${PREFIX}/lib/pgp5
@${INSTALL_DATA} ${WRKSRC}/language50.txt ${PREFIX}/lib/pgp5
.include <bsd.port.mk>