diff options
author | tm <tm@pkgsrc.org> | 2018-05-16 10:22:22 +0000 |
---|---|---|
committer | tm <tm@pkgsrc.org> | 2018-05-16 10:22:22 +0000 |
commit | 40600cceacaab02bcff76d9a6dd4bf896794caae (patch) | |
tree | 39a0664abb944db051cd9f9855ae9c6168122e61 | |
parent | 9245ebbed0b7c8185cb82279eb5738233cf6fee2 (diff) | |
download | pkgsrc-40600cceacaab02bcff76d9a6dd4bf896794caae.tar.gz |
gnupg2: add bzip2 and zlib to PKG_SUGGESTED_OPTIONS
Based on the previous default behave on NetBSD add bzip2 and zlib to the
suggested options. In the past gnupg2 automatically detected bzip2 and
zlib from the system and enabled these options also if no buildlink file
was present.
bzip2 and zlib still stay as options because if gnupg2 remote agent
forwarding is used both gnupg2 versions (local and remote) need to provide
the same compression options. This allow the user to build gnupg2 with or
without compression options if needed.
PKGREVISION bump because new suggested options might require an rebuild on
different operating systems if bzip2 and zlib was not accidentally detected
and enabled.
Reviewed by wiedi
-rw-r--r-- | security/gnupg2/Makefile | 4 | ||||
-rw-r--r-- | security/gnupg2/options.mk | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/security/gnupg2/Makefile b/security/gnupg2/Makefile index 8c7ce49ccdc..24630fd1a9a 100644 --- a/security/gnupg2/Makefile +++ b/security/gnupg2/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.86 2018/05/08 11:56:21 tm Exp $ +# $NetBSD: Makefile,v 1.87 2018/05/16 10:22:22 tm Exp $ DISTNAME= gnupg-2.2.7 PKGNAME= ${DISTNAME:S/gnupg-/gnupg2-/} -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= security MASTER_SITES= ftp://ftp.gnupg.org/gcrypt/gnupg/ EXTRACT_SUFX= .tar.bz2 diff --git a/security/gnupg2/options.mk b/security/gnupg2/options.mk index 27965e46fab..1b44472c2fb 100644 --- a/security/gnupg2/options.mk +++ b/security/gnupg2/options.mk @@ -1,8 +1,8 @@ -# $NetBSD: options.mk,v 1.12 2018/05/08 11:56:21 tm Exp $ +# $NetBSD: options.mk,v 1.13 2018/05/16 10:22:22 tm Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.gnupg2 PKG_SUPPORTED_OPTIONS= bzip2 ldap libusb-1 zlib -PKG_SUGGESTED_OPTIONS= libusb-1 +PKG_SUGGESTED_OPTIONS= bzip2 libusb-1 zlib .include "../../mk/bsd.options.mk" |