commit: f0801b1187b55275875d0a04fb84fb54c31339a8 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org> AuthorDate: Thu Mar 31 12:43:26 2016 +0000 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org> CommitDate: Thu Mar 31 12:44:32 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0801b11
www-client/fetch: EAPI 6 bump. Package-Manager: portage-2.2.26 www-client/fetch/fetch-1.0-r2.ebuild | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/www-client/fetch/fetch-1.0-r2.ebuild b/www-client/fetch/fetch-1.0-r2.ebuild new file mode 100644 index 0000000..6c55320 --- /dev/null +++ b/www-client/fetch/fetch-1.0-r2.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DESCRIPTION="HTTP download tool built atop the HTTP fetcher library" +HOMEPAGE="http://sourceforge.net/projects/fetch/" +SRC_URI="mirror://sourceforge/fetch/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND=" + >=dev-libs/http-fetcher-1.0.1" + +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${P}" + +src_prepare() { + default + sed -i -e "/^ld_rpath/d" configure || die "sed failed" +} + +src_install() { + emake DESTDIR="${D}" install + dodoc README INSTALL + dodoc -r docs/*.html +}