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 e946206995 Upgrade to 1.0.5.
o The semantics of --verify have changed.
  o Corrected hash calculation for input data larger than 512M.
  o Large File Support is now working.
  o A bunch of new options and commands.
  o Keyserver support for the W32 version.
  o Better handling of key expiration and subkeys.
  o Estonian and Turkish translation.
  o The usual fixes and other enhancements.
2001-04-30 03:22:56 +00:00

48 lines
1.1 KiB
Makefile

# New ports collection makefile for: gnupg
# Date created: Sep 30, 1998
# Whom: kuriyama@FreeBSD.org
#
# $FreeBSD$
#
PORTNAME= gnupg
PORTVERSION= 1.0.5
CATEGORIES= security
MASTER_SITES= ftp://ftp.gnupg.org/pub/gcrypt/%SUBDIR%/ \
ftp://pgp.iijlab.net/pub/%SUBDIR%/ \
${MASTER_SITE_RINGSERVER:S,%SUBDIR%,net/gnupg/&,}
MASTER_SITE_SUBDIR= gnupg
MAINTAINER= kuriyama@FreeBSD.org
RESTRICTED= "Crypto; export-controlled"
GNU_CONFIGURE= YES
CONFIGURE_ARGS= --with-included-gettext
MAN1= gpg.1 gpgv.1
MLINKS= gpg.1 gpgm.1
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 300000
USE_GMAKE= YES
.endif
CFLAGS:= ${CFLAGS:S/-pipe//g}
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>