summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Smith <matthew@gentoo.org>2022-07-03 12:47:29 +0100
committerMatthew Smith <matthew@gentoo.org>2022-07-03 12:47:57 +0100
commit1e56455be295dfe817c7cd7f37bd48f287f282c0 (patch)
tree2ed02d3c55d2b965207429d281dde2a895464f94
parentsys-apps/kcheck: drop 0.0.2-r1 (diff)
downloadgentoo-1e56455be295dfe817c7cd7f37bd48f287f282c0.tar.gz
gentoo-1e56455be295dfe817c7cd7f37bd48f287f282c0.tar.bz2
gentoo-1e56455be295dfe817c7cd7f37bd48f287f282c0.zip
dev-libs/argtable: drop 2.13-r1
Signed-off-by: Matthew Smith <matthew@gentoo.org>
-rw-r--r--dev-libs/argtable/argtable-2.13-r1.ebuild48
1 files changed, 0 insertions, 48 deletions
diff --git a/dev-libs/argtable/argtable-2.13-r1.ebuild b/dev-libs/argtable/argtable-2.13-r1.ebuild
deleted file mode 100644
index e8053275362f..000000000000
--- a/dev-libs/argtable/argtable-2.13-r1.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit versionator
-
-DESCRIPTION="An ANSI C library for parsing GNU-style command-line options with minimal fuss"
-HOMEPAGE="http://argtable.sourceforge.net/"
-
-MY_PV="$(replace_version_separator 1 '-')"
-MY_P=${PN}${MY_PV}
-
-SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
-
-LICENSE="LGPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm64 ~ia64 ppc ppc64 ~riscv sparc x86"
-IUSE="doc debug examples static-libs"
-
-S="${WORKDIR}/${MY_P}"
-
-src_configure() {
- econf \
- $(use_enable debug) \
- $(use_enable static-libs static)
-}
-
-src_install() {
- emake DESTDIR="${D}" install
- rm -rf "${D}"/usr/share/doc/${PF}/
-
- dodoc AUTHORS ChangeLog NEWS README
-
- if use doc ; then
- cd "${S}/doc"
- dodoc *.pdf *.ps
- docinto html
- dodoc *.html *.gif
- fi
-
- if use examples ; then
- cd "${S}/example"
- docinto examples
- dodoc Makefile *.[ch] README.txt
- fi
-
- find "${ED}" -name "*.la" -delete || die "failed to delete .la files"
-}