72 lines
1.7 KiB
Makefile
72 lines
1.7 KiB
Makefile
# $OpenBSD: Makefile,v 1.9 2010/11/22 09:34:10 espie Exp $
|
|
|
|
COMMENT = gnu privacy guard - a free PGP replacement
|
|
|
|
DISTNAME = gnupg-2.0.16
|
|
REVISION = 0
|
|
CATEGORIES = security
|
|
|
|
MASTER_SITES = ftp://ftp.gnupg.org/gcrypt/gnupg/ \
|
|
ftp://gd.tuwien.ac.at/privacy/gnupg/gnupg/ \
|
|
ftp://crypto.yashy.com/pub/cryptography/gnupg/ \
|
|
ftp://ftp.planetmirror.com/pub/gnupg/gnupg/ \
|
|
ftp://sunsite.dk/pub/security/gcrypt/gnupg/ \
|
|
ftp://ftp.linux.it/pub/mirrors/gnupg/gnupg/ \
|
|
ftp://pgp.iijlab.net/pub/pgp/gnupg/ \
|
|
ftp://ring.aist.go.jp/pub/net/gnupg/gnupg/
|
|
|
|
HOMEPAGE = http://www.gnupg.org/
|
|
|
|
MAINTAINER = Pierre-Emmanuel Andre <pea@openbsd.org>
|
|
|
|
# GPLv3+
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM =Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
WANTLIB += assuan bz2 c crypto curl gcrypt gpg-error
|
|
WANTLIB += idn ksba pth readline ssl termcap usb z
|
|
|
|
EXTRACT_SUFX = .tar.bz2
|
|
|
|
MODULES = devel/gettext
|
|
|
|
FLAVORS = ldap
|
|
FLAVOR ?=
|
|
|
|
LIB_DEPENDS = devel/libusb \
|
|
archivers/bzip2 \
|
|
security/libassuan \
|
|
security/libgcrypt \
|
|
security/libksba \
|
|
net/curl \
|
|
devel/pth
|
|
|
|
.if ${FLAVOR:L:Mldap}
|
|
CONFIGURE_ARGS += --enable-ldap
|
|
WANTLIB += ldap
|
|
LIB_DEPENDS += databases/openldap
|
|
.else
|
|
CONFIGURE_ARGS += --disable-ldap
|
|
.endif
|
|
|
|
RUN_DEPENDS = security/pinentry
|
|
|
|
# gpg-agent must be installed to run the regress tests
|
|
REGRESS_DEPENDS = ${PKGNAME}:${BUILD_PKGPATH}
|
|
|
|
USE_GMAKE = Yes
|
|
USE_GROFF = Yes
|
|
|
|
CONFIGURE_STYLE = gnu
|
|
CONFIGURE_ENV = CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
CONFIGURE_ARGS = docdir=${LOCALBASE}/share/doc/gnupg2
|
|
|
|
# Avoid conflict with gnupg-1.x
|
|
post-install:
|
|
@mv ${PREFIX}/man/man1/gpg-zip.1 ${PREFIX}/man/man1/gpg2-zip.1
|
|
|
|
.include <bsd.port.mk>
|