diff options
author | Aaron Ball <nullspoon@oper.io> | 2022-10-04 09:31:17 -0600 |
---|---|---|
committer | Aaron Ball <nullspoon@oper.io> | 2022-10-04 09:31:17 -0600 |
commit | 35f17080bf0b280959313d578bf38f5b38485640 (patch) | |
tree | 16187dc51fdec2d132dcdc01317ae0ae0538e5ba /pinentry-gnome3 | |
parent | daece1345f5d21e37cb4581cc8ac6f95e34f665f (diff) | |
download | ports-35f17080bf0b280959313d578bf38f5b38485640.tar.gz ports-35f17080bf0b280959313d578bf38f5b38485640.tar.xz |
pinentry-gnome3:Initial commit of version 1.2.1
Diffstat (limited to 'pinentry-gnome3')
-rw-r--r-- | pinentry-gnome3/.footprint | 3 | ||||
-rw-r--r-- | pinentry-gnome3/.md5sum | 1 | ||||
-rw-r--r-- | pinentry-gnome3/.signature | 5 | ||||
-rw-r--r-- | pinentry-gnome3/Pkgfile | 24 |
4 files changed, 33 insertions, 0 deletions
diff --git a/pinentry-gnome3/.footprint b/pinentry-gnome3/.footprint new file mode 100644 index 0000000..832c40c --- /dev/null +++ b/pinentry-gnome3/.footprint @@ -0,0 +1,3 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/pinentry-gnome3 diff --git a/pinentry-gnome3/.md5sum b/pinentry-gnome3/.md5sum new file mode 100644 index 0000000..ac1b59b --- /dev/null +++ b/pinentry-gnome3/.md5sum @@ -0,0 +1 @@ +be9b0d4bb493a139d2ec20e9b6872d37 pinentry-1.2.1.tar.bz2 diff --git a/pinentry-gnome3/.signature b/pinentry-gnome3/.signature new file mode 100644 index 0000000..bfa1690 --- /dev/null +++ b/pinentry-gnome3/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/nullspoon.pub +RWThnm0RuVZhZkGSahIlhnOqpxj3EKg4cLsUIKvAxCk5/GfC/21LSpZWKgugsTaecvds7TOwfeIrB05oS1y+vmi4S9GOEHwTkgA= +SHA256 (Pkgfile) = f828e28c7a9ca5c7689bf5d367bbd4b816abd1eb7350d7858fff209735de4367 +SHA256 (.footprint) = 3dd4ca20c70541471fb6744a6346f410c7b0c44fbe78056c9809fa66ce20d6e9 +SHA256 (pinentry-1.2.1.tar.bz2) = 457a185e5a85238fb945a955dc6352ab962dc8b48720b62fc9fa48c7540a4067 diff --git a/pinentry-gnome3/Pkgfile b/pinentry-gnome3/Pkgfile new file mode 100644 index 0000000..e8ac016 --- /dev/null +++ b/pinentry-gnome3/Pkgfile @@ -0,0 +1,24 @@ +# Description: Secure PinEntry Dialog for Gnome 3 +# URL: https://gnupg.org/related_software/pinentry/ +# Maintainer: Aaron Ball, nullspoon at oper dot io +# Depends on: libassuan libcap util-linux +# Optional: libsecret + +name=pinentry-gnome3 +version=1.2.1 +release=1 +source=(https://gnupg.org/ftp/gcrypt/${name%-*}/${name%-*}-${version}.tar.bz2) + +build() { + cd ${name%-*}-${version} + + ./configure \ + --prefix=/usr \ + --enable-pinentry-gnome3 \ + --disable-pinentry-{gtk2,qt,qt5,curses} + + make + make DESTDIR=${PKG} install + + rm -rf ${PKG}/usr/share ${PKG}/usr/bin/pinentry +} |