mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-23 09:10:43 +00:00
ec81de8e63
* gpg: Ignore all key-signatures received from keyservers. This change is required to mitigate a DoS due to keys flooded with faked key-signatures. The old behaviour can be achieved by adding keyserver-options no-self-sigs-only,no-import-clean to your gpg.conf. [#4607] * gpg: If an imported keyblocks is too large to be stored in the keybox (pubring.kbx) do not error out but fallback to an import using the options "self-sigs-only,import-clean". [#4591] * gpg: New command --locate-external-key which can be used to refresh keys from the Web Key Directory or via other methods configured with --auto-key-locate. * gpg: New import option "self-sigs-only". * gpg: In --auto-key-retrieve prefer WKD over keyservers. [#4595] * dirmngr: Support the "openpgpkey" subdomain feature from draft-koch-openpgp-webkey-service-07. [#4590]. * dirmngr: Add an exception for the "openpgpkey" subdomain to the CSRF protection. [#4603] * dirmngr: Fix endless loop due to http errors 503 and 504. [#4600] * dirmngr: Fix TLS bug during redirection of HKP requests. [#4566] * gpgconf: Fix a race condition when killing components. [#4577] Release-info: https://dev.gnupg.org/T4606 MFH: 2019Q3
65 lines
1.6 KiB
Makefile
65 lines
1.6 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= gnupg
|
|
PORTVERSION= 2.2.17
|
|
CATEGORIES= security
|
|
MASTER_SITES= GNUPG
|
|
|
|
MAINTAINER= adamw@FreeBSD.org
|
|
COMMENT= Complete and free PGP implementation
|
|
|
|
LICENSE= GPLv3 LGPL3
|
|
LICENSE_COMB= multi
|
|
LICENSE_FILE_GPLv3= ${WRKSRC}/COPYING
|
|
LICENSE_FILE_LGPL3= ${WRKSRC}/COPYING.LGPL3
|
|
|
|
LIB_DEPENDS= libassuan.so:security/libassuan \
|
|
libgcrypt.so:security/libgcrypt \
|
|
libgpg-error.so:security/libgpg-error \
|
|
libksba.so:security/libksba \
|
|
libnpth.so:devel/npth
|
|
BUILD_DEPENDS= libassuan>=2.5.1:security/libassuan \
|
|
libgpg-error>=1.16:security/libgpg-error
|
|
RUN_DEPENDS= pinentry:security/pinentry
|
|
|
|
USES= compiler:c11 cpe gmake iconv pkgconfig readline sqlite tar:bzip2
|
|
|
|
CONFLICTS= gnupg-2.0.* dirmngr-[0-9]*
|
|
CPE_VENDOR= gnupg
|
|
|
|
CONFIGURE_ARGS= --disable-ntbtls --disable-wks-tools \
|
|
--enable-gpg-is-gpg2 --enable-symcryptrun
|
|
GNU_CONFIGURE= yes
|
|
INFO= gnupg
|
|
TEST_TARGET= check
|
|
|
|
SUB_FILES= pkg-message
|
|
|
|
OPTIONS_DEFINE= DOCS GNUTLS LARGE_RSA LDAP NLS SCDAEMON SUID_GPG
|
|
OPTIONS_DEFAULT=GNUTLS SCDAEMON
|
|
OPTIONS_SUB= yes
|
|
|
|
LARGE_RSA_DESC= Enable support for 8192-bit RSA keys
|
|
LDAP_DESC= LDAP keyserver interface
|
|
SCDAEMON_DESC= Enable Smartcard daemon (with libusb)
|
|
SUID_GPG_DESC= Install GPG with suid
|
|
|
|
GNUTLS_CONFIGURE_ENABLE=gnutls
|
|
GNUTLS_LIB_DEPENDS= libgnutls.so:security/gnutls
|
|
|
|
LARGE_RSA_CONFIGURE_ENABLE= large-secmem
|
|
|
|
LDAP_CONFIGURE_WITH= ldap=${LOCALBASE}
|
|
LDAP_LIBS= -L${LOCALBASE}/lib
|
|
LDAP_USE= OPENLDAP=yes
|
|
|
|
NLS_CONFIGURE_ENABLE= nls
|
|
NLS_USES= gettext
|
|
|
|
SCDAEMON_CONFIGURE_ENABLE= scdaemon
|
|
|
|
post-install:
|
|
@${MV} ${STAGEDIR}${DATADIR}/help*.txt ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|