1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-27 21:29:02 +00:00
freebsd-ports/security/gnupg/Makefile
Jun Kuriyama 567722cfa6 Add optional CONFIGURE_ARGS to compile on 2.2.8 system.
Install documentations.

Submitted by:	Dirk Meyer <dirk.meyer@dinoex.sub.org>
Reviewed and modified by:	maintainer
1999-04-17 04:51:20 +00:00

46 lines
1.0 KiB
Makefile

# New ports collection makefile for: gnupg
# Version required: 0.9.5
# Date created: Sep 30, 1998
# Whom: kuriyama@FreeBSD.ORG
#
# $Id: Makefile,v 1.8 1999/03/21 07:44:48 kuriyama Exp $
#
DISTNAME= gnupg-0.9.5
CATEGORIES= security
MASTER_SITES= ftp://ftp.guug.de/pub/gcrypt/ \
ftp://pgp.iijlab.net/pub/gnupg/ \
ftp://ftp.win.or.jp/pub/network/gnupg/
MAINTAINER= kuriyama@FreeBSD.ORG
RESTRICTED= "Crypto; export-controlled"
GNU_CONFIGURE= YES
CONFIGURE_ARGS= --with-included-gettext
MAN1= gpg.1
MLINKS= gpg.1 gpgm.1
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 300000
CONFIGURE_ARGS+=--disable-asm
.endif
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${PREFIX}/share/doc/gnupg
.for i in DETAILS FAQ HACKING OpenPGP
${INSTALL_DATA} ${WRKSRC}/doc/${i} ${PREFIX}/share/doc/gnupg
.endfor
.for i in ABOUT-NLS AUTHORS BUGS COPYING INSTALL NEWS PROJECTS \
README THANKS TODO VERSION
${INSTALL_DATA} ${WRKSRC}/${i} ${PREFIX}/share/doc/gnupg
.endfor
.endif
# chmod u+s ${PREFIX}/bin/gpg
check:
(cd ${WRKSRC}; ${MAKE} check)
.include <bsd.port.post.mk>