diff options
author | kuriyama <kuriyama@FreeBSD.org> | 1999-04-17 12:51:20 +0800 |
---|---|---|
committer | kuriyama <kuriyama@FreeBSD.org> | 1999-04-17 12:51:20 +0800 |
commit | 638f7ade9684392a600358278975eb893cbd098f (patch) | |
tree | 4fbddcd89379945f11df283eb6e14ff382f867cf /security/gnupg1 | |
parent | 4e14c9adef517ddc522532804cad47ff0eb2f8dc (diff) | |
download | freebsd-ports-gnome-638f7ade9684392a600358278975eb893cbd098f.tar.gz freebsd-ports-gnome-638f7ade9684392a600358278975eb893cbd098f.tar.zst freebsd-ports-gnome-638f7ade9684392a600358278975eb893cbd098f.zip |
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
Diffstat (limited to 'security/gnupg1')
-rw-r--r-- | security/gnupg1/Makefile | 25 | ||||
-rw-r--r-- | security/gnupg1/pkg-plist | 16 |
2 files changed, 35 insertions, 6 deletions
diff --git a/security/gnupg1/Makefile b/security/gnupg1/Makefile index 8bf4c10a8898..dda3afc00110 100644 --- a/security/gnupg1/Makefile +++ b/security/gnupg1/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> diff --git a/security/gnupg1/pkg-plist b/security/gnupg1/pkg-plist index 9f9818ffcfac..a1adbf37b929 100644 --- a/security/gnupg1/pkg-plist +++ b/security/gnupg1/pkg-plist @@ -22,3 +22,19 @@ share/locale/pt_BR/LC_MESSAGES/gnupg.mo share/locale/ru/LC_MESSAGES/gnupg.mo @dirrm share/locale/ru/LC_MESSAGES @dirrm share/locale/ru +share/doc/gnupg/README +share/doc/gnupg/DETAILS +share/doc/gnupg/FAQ +share/doc/gnupg/HACKING +share/doc/gnupg/OpenPGP +share/doc/gnupg/ABOUT-NLS +share/doc/gnupg/AUTHORS +share/doc/gnupg/BUGS +share/doc/gnupg/COPYING +share/doc/gnupg/INSTALL +share/doc/gnupg/NEWS +share/doc/gnupg/PROJECTS +share/doc/gnupg/THANKS +share/doc/gnupg/TODO +share/doc/gnupg/VERSION +@dirrm share/doc/gnupg |