Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/http-fetcher/
Date: Wed, 08 Mar 2017 22:49:57
Message-Id: 1489013306.9c3bfee419467b417400fe45921205b502e17d68.monsieurp@gentoo
1 commit: 9c3bfee419467b417400fe45921205b502e17d68
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 5 15:37:05 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Wed Mar 8 22:48:26 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c3bfee4
7
8 dev-libs/http-fetcher: EAPI 6 bump.
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 dev-libs/http-fetcher/http-fetcher-1.1.0-r1.ebuild | 35 ++++++++++++++++++++++
13 1 file changed, 35 insertions(+)
14
15 diff --git a/dev-libs/http-fetcher/http-fetcher-1.1.0-r1.ebuild b/dev-libs/http-fetcher/http-fetcher-1.1.0-r1.ebuild
16 new file mode 100644
17 index 00000000000..82fa74245a7
18 --- /dev/null
19 +++ b/dev-libs/http-fetcher/http-fetcher-1.1.0-r1.ebuild
20 @@ -0,0 +1,35 @@
21 +# Copyright 1999-2017 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=6
25 +
26 +inherit autotools
27 +
28 +MY_P="${P/-/_}"
29 +
30 +DESCRIPTION="Library for downloading files via HTTP using the GET method"
31 +HOMEPAGE="http://http-fetcher.sourceforge.net"
32 +SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
33 +LICENSE="LGPL-2.1"
34 +
35 +SLOT="0"
36 +KEYWORDS="~alpha ~amd64 ~ppc ~x86"
37 +IUSE="debug"
38 +
39 +S="${WORKDIR}/${MY_P}"
40 +
41 +src_prepare() {
42 + default
43 + eautoreconf
44 +}
45 +
46 +src_configure() {
47 + econf \
48 + --disable-strict \
49 + $(use_enable debug)
50 +}
51 +
52 +src_install() {
53 + default
54 + dodoc -r docs/html/*.html docs/index.html README ChangeLog CREDITS INSTALL
55 +}