diff options
author | Arthur Zamarin <arthurzam@gentoo.org> | 2024-05-24 13:07:29 +0300 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2024-05-24 13:07:29 +0300 |
commit | 6b7e609b347d7d25409008c6dbda9b4bea924208 (patch) | |
tree | 3fcba2d48e80731ef3a4301c44a58f251eb02f8a /sys-libs/rpmatch-standalone | |
parent | net-analyzer/nagios-check_mysql_health: drop 2.2.2 (diff) | |
download | gentoo-6b7e609b347d7d25409008c6dbda9b4bea924208.tar.gz gentoo-6b7e609b347d7d25409008c6dbda9b4bea924208.tar.bz2 gentoo-6b7e609b347d7d25409008c6dbda9b4bea924208.zip |
sys-libs/rpmatch-standalone: drop 1.0
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'sys-libs/rpmatch-standalone')
-rw-r--r-- | sys-libs/rpmatch-standalone/rpmatch-standalone-1.0.ebuild | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0.ebuild b/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0.ebuild deleted file mode 100644 index d6689b450bd9..000000000000 --- a/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit autotools - -DESCRIPTION="Standalone rpmatch library for use with musl" -HOMEPAGE="https://github.com/pullmoll/musl-rpmatch" -SRC_URI="https://github.com/pullmoll/musl-rpmatch/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 arm arm64 ~mips ppc ppc64 ~riscv x86" -IUSE="static-libs" - -RDEPEND="!sys-libs/glibc" - -S="${WORKDIR}/musl-rpmatch-${PV}" - -src_prepare() { - default - eautoreconf -} - -src_configure() { - econf \ - $(use_enable static-libs static) -} - -src_install() { - default - find "${D}" -name '*.la' -delete || die - - mkdir "${ED%/}"/usr/$(get_libdir)/pkgconfig/ - cp "${S}"/musl-rpmatch.pc "${ED%/}"/usr/$(get_libdir)/pkgconfig/rpmatch-standalone.pc -} |