diff options
author | Mikle Kolyada <zlogene@gentoo.org> | 2017-12-26 20:00:40 +0300 |
---|---|---|
committer | Mikle Kolyada <zlogene@gentoo.org> | 2017-12-26 20:00:40 +0300 |
commit | 9daceab62525df8777297aff82f2cdf1c243b713 (patch) | |
tree | 6f84fd1c3e089b0de52fbef799ed040e58838c4d /dev-libs/argtable | |
parent | dev-libs/argtable: amd64/x86 stable (diff) | |
download | gentoo-9daceab62525df8777297aff82f2cdf1c243b713.tar.gz gentoo-9daceab62525df8777297aff82f2cdf1c243b713.tar.bz2 gentoo-9daceab62525df8777297aff82f2cdf1c243b713.zip |
dev-libs/argtable: Drop revision with old EAPI
Package-Manager: Portage-2.3.13, Repoman-2.3.3
Diffstat (limited to 'dev-libs/argtable')
-rw-r--r-- | dev-libs/argtable/argtable-2.13.ebuild | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/dev-libs/argtable/argtable-2.13.ebuild b/dev-libs/argtable/argtable-2.13.ebuild deleted file mode 100644 index eb1d1ecaed64..000000000000 --- a/dev-libs/argtable/argtable-2.13.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=3 -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="amd64 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 || die "install failed" - rm -rf "${D}"/usr/share/doc/${PN}2/ - - dodoc AUTHORS ChangeLog NEWS README || die "dodoc failed" - - if use doc ; then - cd "${S}/doc" - dohtml *.html *.gif || die "dohtml failed" - dodoc *.pdf *.ps || die "dodoc failed" - fi - - if use examples ; then - cd "${S}/example" - docinto examples - dodoc Makefile *.[ch] README.txt || die "dodoc failed" - fi - - find "${ED}" -name "*.la" -delete || die "failed to delete .la files" -} |