diff options
author | 2024-09-08 22:47:29 +0200 | |
---|---|---|
committer | 2024-09-08 22:47:29 +0200 | |
commit | 8948058750d73d0512a35c2c5f268169e8f7f7de (patch) | |
tree | 58311acbae619c21573daecaa8176c241b445b52 /dev-libs/argtable | |
parent | dev-db/kyotocabinet: drop 1.2.77, 1.2.79-r1 (diff) | |
download | gentoo-8948058750d73d0512a35c2c5f268169e8f7f7de.tar.gz gentoo-8948058750d73d0512a35c2c5f268169e8f7f7de.tar.bz2 gentoo-8948058750d73d0512a35c2c5f268169e8f7f7de.zip |
dev-libs/argtable: drop 2.13-r3
Signed-off-by: Petr Vaněk <arkamar@gentoo.org>
Diffstat (limited to 'dev-libs/argtable')
-rw-r--r-- | dev-libs/argtable/argtable-2.13-r3.ebuild | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/dev-libs/argtable/argtable-2.13-r3.ebuild b/dev-libs/argtable/argtable-2.13-r3.ebuild deleted file mode 100644 index bbd3be201745..000000000000 --- a/dev-libs/argtable/argtable-2.13-r3.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -MY_PV="$(ver_rs 1 '-')" -MY_P=${PN}${MY_PV} - -DESCRIPTION="An ANSI C library for parsing GNU-style command-line options with minimal fuss" -HOMEPAGE="https://argtable.sourceforge.net" -SRC_URI="https://downloads.sourceforge.net/${PN}/${MY_P}.tar.gz" -S="${WORKDIR}"/${MY_P} - -LICENSE="LGPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 ~arm64 ~ia64 ~loong ppc ppc64 ~riscv sparc x86" -IUSE="doc debug examples static-libs" - -PATCHES=( - "${FILESDIR}"/${PN}-2.13-Fix-implicit-function-declaration.patch -) - -src_configure() { - econf \ - $(use_enable debug) \ - $(use_enable static-libs static) -} - -src_install() { - default - - rm -rf "${ED}"/usr/share/doc/${PF}/ - - if use doc ; then - cd "${S}"/doc || die - dodoc *.pdf *.ps - docinto html - dodoc *.html *.gif - fi - - if use examples ; then - cd "${S}"/example || die - docinto examples - dodoc Makefile *.[ch] README.txt - fi - - find "${ED}" -name "*.la" -delete || die "failed to delete .la files" -} |