diff options
author | Sebastian Pipping <sping@gentoo.org> | 2018-01-06 16:50:02 +0100 |
---|---|---|
committer | Sebastian Pipping <sping@gentoo.org> | 2018-01-06 17:06:08 +0100 |
commit | e1d6534e45c92ef9c37331923f20f91c46c62f95 (patch) | |
tree | 6b68138d21e39fb9f7b9cc2adde9face46953e52 /dev-libs/uriparser/uriparser-0.7.9.ebuild | |
parent | dev-tex/notoccite: remove last rited package (diff) | |
download | gentoo-e1d6534e45c92ef9c37331923f20f91c46c62f95.tar.gz gentoo-e1d6534e45c92ef9c37331923f20f91c46c62f95.tar.bz2 gentoo-e1d6534e45c92ef9c37331923f20f91c46c62f95.zip |
dev-libs/uriparser: Remove old
Package-Manager: Portage-2.3.16, Repoman-2.3.6
Diffstat (limited to 'dev-libs/uriparser/uriparser-0.7.9.ebuild')
-rw-r--r-- | dev-libs/uriparser/uriparser-0.7.9.ebuild | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/dev-libs/uriparser/uriparser-0.7.9.ebuild b/dev-libs/uriparser/uriparser-0.7.9.ebuild deleted file mode 100644 index 64193ffa3c9f..000000000000 --- a/dev-libs/uriparser/uriparser-0.7.9.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 - -inherit eutils - -DESCRIPTION="Uriparser is a strictly RFC 3986 compliant URI parsing library in C" -HOMEPAGE="http://uriparser.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris" -IUSE="doc qt4 test unicode" - -RDEPEND="" -DEPEND="virtual/pkgconfig - doc? ( >=app-doc/doxygen-1.5.8 - qt4? ( dev-qt/qthelp:4 ) ) - test? ( >=dev-util/cpptest-1.1.1 )" - -REQUIRED_USE="test? ( unicode )" - -src_configure() { - econf \ - --disable-sizedown \ - $(use_enable test) \ - --enable-char \ - $(use_enable unicode wchar_t) \ - $(use_enable doc) \ - --disable-dependency-tracking \ - --docdir=/usr/share/doc/${PF}/ -} - -src_install() { - emake DESTDIR="${D}" install || die "make install failed" - dodoc AUTHORS ChangeLog THANKS doc/*.txt || die - - if use doc && use qt4; then - insinto /usr/share/doc/${PF}/ - doins doc/*.qch || die # Using doins to avoid dodoc's compression - fi -} |