diff options
author | 2024-09-22 11:09:34 +0100 | |
---|---|---|
committer | 2024-09-22 11:10:24 +0100 | |
commit | f2af2de22180fb3a2f9b6f445ca2d536c0b703e7 (patch) | |
tree | acd627244e8c38225fef8883f71433f937fd0576 /app-admin/stow/stow-2.4.1.ebuild | |
parent | net-misc/streamlink: add 6.10.0 (diff) | |
download | gentoo-f2af2de22180fb3a2f9b6f445ca2d536c0b703e7.tar.gz gentoo-f2af2de22180fb3a2f9b6f445ca2d536c0b703e7.tar.bz2 gentoo-f2af2de22180fb3a2f9b6f445ca2d536c0b703e7.zip |
app-admin/stow: add 2.4.1
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-admin/stow/stow-2.4.1.ebuild')
-rw-r--r-- | app-admin/stow/stow-2.4.1.ebuild | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/app-admin/stow/stow-2.4.1.ebuild b/app-admin/stow/stow-2.4.1.ebuild new file mode 100644 index 000000000000..a69e14905be7 --- /dev/null +++ b/app-admin/stow/stow-2.4.1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/adamspiers.asc +inherit perl-functions verify-sig + +DESCRIPTION="GNU Stow is a symlink farm manager" +HOMEPAGE="https://www.gnu.org/software/stow/ https://git.savannah.gnu.org/cgit/stow.git" +SRC_URI="mirror://gnu/stow/${P}.tar.bz2" +SRC_URI+=" verify-sig? ( mirror://gnu/stow/${P}.tar.bz2.sig )" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND="dev-lang/perl:=" +DEPEND="${RDEPEND}" +BDEPEND=" + test? ( + dev-perl/IO-stringy + virtual/perl-Test-Harness + dev-perl/Test-Output + ) + verify-sig? ( sec-keys/openpgp-keys-adamspiers ) +" + +src_configure() { + perl_set_version + econf "--with-pmdir=${VENDOR_LIB}" +} |