diff options
author | Sam James <sam@gentoo.org> | 2024-05-22 02:53:01 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-05-22 03:17:53 +0100 |
commit | d4add215b5b753ef833d4871d39fe0a9fe548c69 (patch) | |
tree | 954f90413c9f1a024ee18f79c61d04971e0cb940 /dev-perl | |
parent | dev-perl/Alien-LibGumbo: EAPI 8, rely on eclass impls (diff) | |
download | gentoo-d4add215b5b753ef833d4871d39fe0a9fe548c69.tar.gz gentoo-d4add215b5b753ef833d4871d39fe0a9fe548c69.tar.bz2 gentoo-d4add215b5b753ef833d4871d39fe0a9fe548c69.zip |
dev-perl/Authen-Libwrap: EAPI 8, rely on eclass impls
This covers more variables/args, etc.
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-perl')
-rw-r--r-- | dev-perl/Authen-Libwrap/Authen-Libwrap-0.230.0-r3.ebuild | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/dev-perl/Authen-Libwrap/Authen-Libwrap-0.230.0-r3.ebuild b/dev-perl/Authen-Libwrap/Authen-Libwrap-0.230.0-r3.ebuild new file mode 100644 index 000000000000..9ad0d1407e8a --- /dev/null +++ b/dev-perl/Authen-Libwrap/Authen-Libwrap-0.230.0-r3.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DIST_AUTHOR=DMUEY +DIST_VERSION=0.23 +DIST_EXAMPLES=("example.pl") +inherit perl-module + +DESCRIPTION="Perl access to the TCP Wrappers interface" + +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND="sys-apps/tcp-wrappers" +DEPEND="dev-perl/Module-Build" +BDEPEND=" + ${RDEPEND} + >=dev-perl/Module-Build-0.420.0 + virtual/perl-ExtUtils-CBuilder + test? ( + virtual/perl-Test-Simple + dev-perl/Test-Exception + ) +" + +PATCHES=( + "${FILESDIR}/${PN}-0.23-inc-paths.patch" +) + +PERL_RM_FILES=( + t/03_pod.t + t/02_maintainer.t +) + +src_configure() { + GENTOO_INCDIR="${EPREFIX}/usr/include" \ + GENTOO_LIBDIR="${EPREFIX}/usr/$(get_libdir)" \ + perl-module_src_configure +} |