7fc9190f0e
* gcc is kept at -Np0, because of void-cross ```sh git grep -l '^patch_args=-Np0' "srcpkgs/$1*/template" | while read template; do for p in ${template%/template}/patches/*; do sed -i ' \,^[+-][+-][+-] /dev/null,b /^[*-]\+ [0-9]\+\(,[0-9]\+\)\? [*-]\+$/b s,^[*][*][*] ,&a/, /^--- /{ s,\(^--- \)\(./\)*,\1a/, s,[.][Oo][Rr][Ii][Gg]\([ /]\),\1, s/[.][Oo][Rr][Ii][Gg]$// s/[.]patched[.]\([^.]\)/.\1/ h } /^+++ -/{ g s/^--- a/+++ b/ b } s,\(^+++ \)\(./\)*,\1b/, ' "$p" done sed -i '/^patch_args=/d' $template done ```
49 lines
1.6 KiB
Bash
49 lines
1.6 KiB
Bash
# Template file for 'gnupg2'
|
|
pkgname=gnupg2
|
|
version=2.2.28
|
|
revision=1
|
|
wrksrc="gnupg-${version}"
|
|
build_style=gnu-configure
|
|
configure_args="--enable-gpg-is-gpg2 $(vopt_enable ldap)
|
|
--with-libgcrypt-prefix=${XBPS_CROSS_BASE}/usr
|
|
--with-libassuan-prefix=${XBPS_CROSS_BASE}/usr
|
|
--with-ksba-prefix=${XBPS_CROSS_BASE}/usr
|
|
--with-npth-prefix=${XBPS_CROSS_BASE}/usr"
|
|
hostmakedepends="pkg-config"
|
|
makedepends="bzip2-devel gnutls-devel libassuan-devel libcurl-devel
|
|
libksba-devel libldap-devel libusb-compat-devel npth-devel sqlite-devel
|
|
libgcrypt-devel"
|
|
depends="pinentry"
|
|
short_desc="GNU Privacy Guard (2.x)"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
license="GPL-3.0-or-later"
|
|
homepage="https://www.gnupg.org/"
|
|
distfiles="https://gnupg.org/ftp/gcrypt/gnupg/gnupg-${version}.tar.bz2"
|
|
checksum=6ff891fc7583a9c3fb9f097ee0d1de0a12469d4b53997e7ba5064950637dfaec
|
|
build_options="ldap"
|
|
build_options_default="ldap"
|
|
|
|
post_patch() {
|
|
# On at least aarch64, configure sets this even though it doesn't exist
|
|
vsed -i 's/HAVE_DECL_SYS_SIGLIST/0/' common/signal.c
|
|
vsed -i '/examples\/systemd-user/d' doc/Makefile.in
|
|
}
|
|
|
|
post_install() {
|
|
# remove conflicts with gnupg 1.
|
|
mv ${DESTDIR}/usr/share/man/man7/gnupg.7 ${DESTDIR}/usr/share/man/man7/gnupg2.7
|
|
|
|
vmkdir usr/share/examples
|
|
mv ${DESTDIR}/usr/share/doc/gnupg/examples ${DESTDIR}/usr/share/examples/gnupg2
|
|
|
|
mv ${DESTDIR}/usr/share/doc/gnupg ${DESTDIR}/usr/share/doc/gnupg2
|
|
}
|
|
|
|
gnupg2-scdaemon_package() {
|
|
depends="${sourcepkg}>=${version}_${revision} libpcsclite"
|
|
short_desc+=" - smartcard daemon"
|
|
pkg_install() {
|
|
vmove usr/libexec/scdaemon
|
|
vmove usr/share/man/man1/scdaemon.1
|
|
}
|
|
}
|