diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2024-08-29 21:46:08 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2024-08-30 15:11:21 +0200 |
commit | 41c21577f9d220344d85bc7c8f1ea72aa43df0c7 (patch) | |
tree | 1760bcd0405824a9d3f7568851b1c14f184b914a /dev-libs | |
parent | dev-debug/valgrind: Stabilize 3.23.0_p3 ppc64, #938727 (diff) | |
download | gentoo-41c21577f9d220344d85bc7c8f1ea72aa43df0c7.tar.gz gentoo-41c21577f9d220344d85bc7c8f1ea72aa43df0c7.tar.bz2 gentoo-41c21577f9d220344d85bc7c8f1ea72aa43df0c7.zip |
dev-libs/libfstrcmp: drop 0.7-r1
Bug: https://bugs.gentoo.org/926358
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/libfstrcmp/libfstrcmp-0.7-r1.ebuild | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/dev-libs/libfstrcmp/libfstrcmp-0.7-r1.ebuild b/dev-libs/libfstrcmp/libfstrcmp-0.7-r1.ebuild deleted file mode 100644 index 01f2a6f1a330..000000000000 --- a/dev-libs/libfstrcmp/libfstrcmp-0.7-r1.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools - -DESCRIPTION="Make fuzzy comparisons of strings and byte arrays" -HOMEPAGE="http://fstrcmp.sourceforge.net/" - -LICENSE="GPL-3+" -IUSE="doc static-libs test" -SLOT="0" - -SRC_URI="http://fstrcmp.sourceforge.net/fstrcmp-0.7.D001.tar.gz -> ${P}.tar.gz" -S="${WORKDIR}/fstrcmp-0.7.D001" -KEYWORDS="amd64 ~arm arm64 x86" - -DEPEND=" - sys-apps/groff - doc? ( app-text/ghostscript-gpl ) - test? ( app-text/ghostscript-gpl ) -" -RESTRICT="!test? ( test )" - -src_prepare() { - default - eautoreconf -} - -src_compile() { - emake all-bin - use doc && emake all-doc -} - -src_install() { - emake DESTDIR="${D}" install-bin install-include install-libdir install-man - find "${D}" -name '*.la' -delete || die - if ! use static-libs ; then - find "${D}" -name '*.a' -delete || die - fi - use doc && emake DESTDIR="${D}" install-doc - einstalldocs -} |