diff options
author | John Turner <jturner.usa+gentoo@gmail.com> | 2025-07-31 04:38:09 -0400 |
---|---|---|
committer | John Turner <jturner.usa+gentoo@gmail.com> | 2025-07-31 04:38:09 -0400 |
commit | 79e2b85e37eda4c071f3494da64985fda91303eb (patch) | |
tree | 1d47f3c4f6a29eadabb91efe4f77bfb8ec588ffc /sys-auth | |
parent | 8aacc1fbb8fe2eff45700156742c95fc046b8dbf (diff) | |
download | ebuilds-79e2b85e37eda4c071f3494da64985fda91303eb.tar.gz |
add pam_xdg-0.0.2
Diffstat (limited to 'sys-auth')
-rw-r--r-- | sys-auth/pam_xdg/Manifest | 1 | ||||
-rw-r--r-- | sys-auth/pam_xdg/pam_xdg-0.0.2.ebuild | 26 |
2 files changed, 27 insertions, 0 deletions
diff --git a/sys-auth/pam_xdg/Manifest b/sys-auth/pam_xdg/Manifest index 1b27832..79c5d58 100644 --- a/sys-auth/pam_xdg/Manifest +++ b/sys-auth/pam_xdg/Manifest @@ -1 +1,2 @@ DIST pam_xdg-0.0.1.tar.gz 2016 BLAKE2B 343bff517fce81bd80a44e963280b6c368a3e70393bfe90905a0fa7d5b99b7114dac7b9e1e8f4eaa78e8c6c8c9b3cbaab2e3f13db83a5803ef364a7c7de45f16 SHA512 08c4295babd28d77cdc989682bfa297298cda408546d0b78f7edd7c0a52bd49dbecd3a382ac8cf1769d23acabd3c4f7c613ed783434082e3d6ea5c3fd8579ed3 +DIST pam_xdg-0.0.2.tar.gz 2409 BLAKE2B eb9019470c0601a4b5412b22981ff85d4716216720ba5ce38832ee759221809eb03c3a340fed63b33118985727872cd2c8de1885c60c3e6e3bf4765c5ce88652 SHA512 8a0f925c7826b38b4324891ee2d467b59679462c480c92b505691e1477390f38e94d59591dc63d779c647de9e57b721268fcd7824a7359f887db681dcbfca952 diff --git a/sys-auth/pam_xdg/pam_xdg-0.0.2.ebuild b/sys-auth/pam_xdg/pam_xdg-0.0.2.ebuild new file mode 100644 index 0000000..c9d8841 --- /dev/null +++ b/sys-auth/pam_xdg/pam_xdg-0.0.2.ebuild @@ -0,0 +1,26 @@ +# Copyright 2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit meson + +DESCRIPTION="A pam module to create XDG runtime directories." +HOMEPAGE="https://jturnerusa.dev/gitweb/?p=pam_xdg;a=summary" +SRC_URI="https://jturnerusa.dev/cgit/pam_xdg/snapshot/${P}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" + +DEPEND="dev-db/sqlite" +RDEPEND="${DEPEND}" + +src_configure() { + local emesonargs=(--prefix=/ --libdir=$(get_libdir)) + meson_src_configure +} |