diff options
author | Sam James <sam@gentoo.org> | 2020-12-20 19:24:35 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2020-12-20 19:27:54 +0000 |
commit | 333b4c040fbf938648a36a6909c1e9ca00370a13 (patch) | |
tree | 6f428f94268f6ebc06db322a4e4397b411efd400 /net-libs/libnxml | |
parent | app-crypt/signify: x86 keyworded (bug #759697) (diff) | |
download | gentoo-333b4c040fbf938648a36a6909c1e9ca00370a13.tar.gz gentoo-333b4c040fbf938648a36a6909c1e9ca00370a13.tar.bz2 gentoo-333b4c040fbf938648a36a6909c1e9ca00370a13.zip |
net-libs/libnxml: cleanup old
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-libs/libnxml')
-rw-r--r-- | net-libs/libnxml/libnxml-0.18.3.ebuild | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/net-libs/libnxml/libnxml-0.18.3.ebuild b/net-libs/libnxml/libnxml-0.18.3.ebuild deleted file mode 100644 index c153deafa5a7..000000000000 --- a/net-libs/libnxml/libnxml-0.18.3.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DESCRIPTION="A C-library for parsing and writing XML 1.0/1.1 files or streams" -HOMEPAGE="https://www.autistici.org/bakunin/libnxml/doc/" -SRC_URI="https://www.autistici.org/bakunin/${PN}/${P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="amd64 ~arm ~mips ppc ~sparc x86" -IUSE="doc examples" - -RDEPEND="net-misc/curl" -DEPEND="${RDEPEND}" -BDEPEND="doc? ( app-doc/doxygen )" - -src_configure() { - econf --disable-static -} - -src_compile() { - default - - if use doc; then - ebegin "Creating documentation" - doxygen doxy.conf || die "generating docs failed" - # clean out doxygen gunk - rm doc/html/*.{md5,map} || die - HTML_DOCS=( doc/html/. ) - eend 0 - fi -} - -src_install() { - default - - if use examples; then - docinto test - dodoc test/*.c - fi - - # no static archives - find "${D}" -name '*.la' -delete || die -} |