Gentoo Archives: gentoo-commits

From: Matthew Smith <matthew@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/argtable/
Date: Sat, 02 Jul 2022 09:38:52
Message-Id: 1656754687.a20aceab3b5f2fb399c0acdb5fc765ba023a6176.matthew@gentoo
1 commit: a20aceab3b5f2fb399c0acdb5fc765ba023a6176
2 Author: Matthew Smith <matthew <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 2 09:28:44 2022 +0000
4 Commit: Matthew Smith <matthew <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 2 09:38:07 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a20aceab
7
8 dev-libs/argtable: drop 2.13-r1
9
10 Signed-off-by: Matthew Smith <matthew <AT> gentoo.org>
11
12 dev-libs/argtable/argtable-2.13-r1.ebuild | 48 -------------------------------
13 1 file changed, 48 deletions(-)
14
15 diff --git a/dev-libs/argtable/argtable-2.13-r1.ebuild b/dev-libs/argtable/argtable-2.13-r1.ebuild
16 deleted file mode 100644
17 index e8053275362f..000000000000
18 --- a/dev-libs/argtable/argtable-2.13-r1.ebuild
19 +++ /dev/null
20 @@ -1,48 +0,0 @@
21 -# Copyright 1999-2021 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=6
25 -inherit versionator
26 -
27 -DESCRIPTION="An ANSI C library for parsing GNU-style command-line options with minimal fuss"
28 -HOMEPAGE="http://argtable.sourceforge.net/"
29 -
30 -MY_PV="$(replace_version_separator 1 '-')"
31 -MY_P=${PN}${MY_PV}
32 -
33 -SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
34 -
35 -LICENSE="LGPL-2"
36 -SLOT="0"
37 -KEYWORDS="~alpha amd64 ~arm64 ~ia64 ppc ppc64 ~riscv sparc x86"
38 -IUSE="doc debug examples static-libs"
39 -
40 -S="${WORKDIR}/${MY_P}"
41 -
42 -src_configure() {
43 - econf \
44 - $(use_enable debug) \
45 - $(use_enable static-libs static)
46 -}
47 -
48 -src_install() {
49 - emake DESTDIR="${D}" install
50 - rm -rf "${D}"/usr/share/doc/${PF}/
51 -
52 - dodoc AUTHORS ChangeLog NEWS README
53 -
54 - if use doc ; then
55 - cd "${S}/doc"
56 - dodoc *.pdf *.ps
57 - docinto html
58 - dodoc *.html *.gif
59 - fi
60 -
61 - if use examples ; then
62 - cd "${S}/example"
63 - docinto examples
64 - dodoc Makefile *.[ch] README.txt
65 - fi
66 -
67 - find "${ED}" -name "*.la" -delete || die "failed to delete .la files"
68 -}