summaryrefslogtreecommitdiff
path: root/security/gnupg/Makefile
diff options
context:
space:
mode:
authorJun Kuriyama <kuriyama@FreeBSD.org>1999-04-17 04:51:20 +0000
committerJun Kuriyama <kuriyama@FreeBSD.org>1999-04-17 04:51:20 +0000
commit567722cfa6cc94f7eab55623b1b27abdb433c29d (patch)
treee5d6d0009f707627e3a44cc0275c66326ba6e15f /security/gnupg/Makefile
parentActivate the libutf-8 port. (diff)
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
Notes
Notes: svn path=/head/; revision=17945
Diffstat (limited to 'security/gnupg/Makefile')
-rw-r--r--security/gnupg/Makefile25
1 files changed, 19 insertions, 6 deletions
diff --git a/security/gnupg/Makefile b/security/gnupg/Makefile
index 8bf4c10a8898..dda3afc00110 100644
--- a/security/gnupg/Makefile
+++ b/security/gnupg/Makefile
@@ -3,7 +3,7 @@
# Date created: Sep 30, 1998
# Whom: kuriyama@FreeBSD.ORG
#
-# $Id: Makefile,v 1.7 1999/03/14 03:12:10 kuriyama Exp $
+# $Id: Makefile,v 1.8 1999/03/21 07:44:48 kuriyama Exp $
#
DISTNAME= gnupg-0.9.5
@@ -14,19 +14,32 @@ MASTER_SITES= ftp://ftp.guug.de/pub/gcrypt/ \
MAINTAINER= kuriyama@FreeBSD.ORG
-#BUILD_DEPENDS= aclocal:${PORTSDIR}/devel/automake
-
RESTRICTED= "Crypto; export-controlled"
-#USE_AUTOCONF= YES
GNU_CONFIGURE= YES
CONFIGURE_ARGS= --with-included-gettext
MAN1= gpg.1
MLINKS= gpg.1 gpgm.1
-#post-install:
+.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.mk>
+.include <bsd.port.post.mk>