summaryrefslogtreecommitdiff
path: root/sys-auth/pam-gnupg/pam-gnupg-0.4.ebuild
diff options
context:
space:
mode:
authorbaldr333 <ra@afu.re>2024-01-15 19:16:48 -0500
committerbaldr333 <ra@afu.re>2024-01-15 19:16:48 -0500
commit6f39d15e0380c6999f1614c976d1b4fbecbad260 (patch)
tree90d178da319b1a2d788beec40d18739a67a21ac1 /sys-auth/pam-gnupg/pam-gnupg-0.4.ebuild
parentb3d350b4efd52461275a48580d1df8b83643e504 (diff)
pam-gnupg added
Diffstat (limited to 'sys-auth/pam-gnupg/pam-gnupg-0.4.ebuild')
-rw-r--r--sys-auth/pam-gnupg/pam-gnupg-0.4.ebuild32
1 files changed, 32 insertions, 0 deletions
diff --git a/sys-auth/pam-gnupg/pam-gnupg-0.4.ebuild b/sys-auth/pam-gnupg/pam-gnupg-0.4.ebuild
new file mode 100644
index 0000000..11827ce
--- /dev/null
+++ b/sys-auth/pam-gnupg/pam-gnupg-0.4.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+DESCRIPTION="Unlock GnuPG keys on login"
+HOMEPAGE="https://github.com/cruegge/pam-gnupg"
+SRC_URI="https://github.com/cruegge/pam-gnupg/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+RDEPEND="
+ sys-libs/pam
+ app-crypt/gnupg
+"
+
+src_prepare() {
+ default
+ eautoreconf
+}
+
+src_configure() {
+ econf \
+ --host=${CHOST} \
+ --prefix=/usr \
+ --infodir=/usr/share/info \
+ --with-moduledir=/$(get_libdir)/security \
+ --mandir=/usr/share/man || die
+}
+