openbsd-ports/security/pgp/Makefile

66 lines
1.9 KiB
Makefile
Raw Normal View History

# $OpenBSD: Makefile,v 1.31 2007/09/15 23:30:00 merdely Exp $
COMMENT= Pretty Good Privacy 2.6.3ia
DISTNAME= pgp263is
PKGNAME= pgp-2.6.3
CATEGORIES= security
2002-10-28 12:35:01 -05:00
2003-01-30 17:46:26 -05:00
MASTER_SITES= http://www.netsw.org/crypto/systems/pgp/ \
http://ftp.unicamp.br/pub/security/tools/ \
http://incal.net/ftp/pub/privacy/
PERMIT_PACKAGE_CDROM= no commercial use
2000-04-18 05:48:00 -04:00
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= no commercial use
2000-04-18 05:48:00 -04:00
PERMIT_DISTFILES_FTP= Yes
2004-12-27 08:28:33 -05:00
WANTLIB= c
PGP_DOC_DIR= ${PREFIX}/share/doc/pgp
WRKDIST= ${WRKDIR}/src
# library and doc files to install
LIBFILES= config.txt de.hlp en.hlp es.hlp fr.hlp keys.asc \
language.txt pgp.hlp
DOCS= appnote.doc blurb.txt changes.doc faq.txt keyserv.doc \
mitlicen.txt pgformat.doc pgp262i.dif pgp263i.dif \
pgp_vms.hlp pgpdoc1.txt pgpdoc2.txt politic.doc przon26i.asc
# 2nd level extract required
post-extract:
@if ! (cd ${WRKDIR} && tar -xf pgp263ii.tar); then \
exit 1; \
fi
# Before the build figure out if we are on a big endian machine or not
pre-build:
@echo "#include <machine/endian.h>" > ${WRKDIR}/.endian.c
@echo "BYTE_ORDER" >> ${WRKDIR}/.endian.c
1998-03-22 20:40:06 -05:00
@${CC} -E ${WRKDIR}/.endian.c > ${WRKDIR}/.endian.out
@if { grep -q 4321 ${WRKDIR}/.endian.out; } then \
echo -DHIGHFIRST > ${WRKDIR}/.endian; \
else \
cp /dev/null ${WRKDIR}/.endian; \
fi
do-build:
@cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} -f makefile all \
CFLAGS="${CFLAGS} -DUNIX -DPORTABLE -DMERIT -DIDEA32 \
-DMAX_NAMELEN=255 -DPGP_DOC_DIR=\\\"${PGP_DOC_DIR}\\\" \
`cat ${WRKDIR}/.endian`"
2002-10-28 12:35:01 -05:00
NO_REGRESS= Yes
do-install:
${INSTALL_DATA_DIR} ${PREFIX}/lib/pgp
${INSTALL_DATA_DIR} ${PGP_DOC_DIR}
${INSTALL_PROGRAM} ${WRKSRC}/pgp ${PREFIX}/bin
${INSTALL_MAN} ${WRKDIR}/doc/pgp.1 ${PREFIX}/man/man1
${INSTALL_DATA} ${WRKDIR}/setup.doc ${PGP_DOC_DIR}
cd ${WRKDIR}; ${INSTALL_DATA} ${LIBFILES} ${PREFIX}/lib/pgp
cd ${WRKDIR}/doc; ${INSTALL_DATA} ${DOCS} ${PGP_DOC_DIR}
.include <bsd.port.mk>