Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/faxpp/
Date: Sat, 09 Feb 2019 20:12:50
Message-Id: 1549743152.accc18e7b62e2d9991ea8e827491e62251d2616c.bman@gentoo
1 commit: accc18e7b62e2d9991ea8e827491e62251d2616c
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Sat Sep 22 20:02:53 2018 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 9 20:12:32 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=accc18e7
7
8 dev-libs/faxpp: EAPI7 revbump, improve ebuild
9
10 Closes: https://bugs.gentoo.org/666772
11 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
12 Closes: https://github.com/gentoo/gentoo/pull/9952
13 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
14
15 dev-libs/faxpp/faxpp-0.4-r1.ebuild | 26 ++++++++++++++++++++++++++
16 1 file changed, 26 insertions(+)
17
18 diff --git a/dev-libs/faxpp/faxpp-0.4-r1.ebuild b/dev-libs/faxpp/faxpp-0.4-r1.ebuild
19 new file mode 100644
20 index 00000000000..70d50bbaeaa
21 --- /dev/null
22 +++ b/dev-libs/faxpp/faxpp-0.4-r1.ebuild
23 @@ -0,0 +1,26 @@
24 +# Copyright 1999-2018 Gentoo Foundation
25 +# Distributed under the terms of the GNU General Public License v2
26 +
27 +EAPI=7
28 +
29 +DESCRIPTION="Small, fast and conformant XML pull parser written in C"
30 +HOMEPAGE="http://faxpp.sourceforge.net/"
31 +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
32 +
33 +LICENSE="Apache-2.0"
34 +SLOT="0"
35 +KEYWORDS="~amd64 ~x86"
36 +IUSE="doc examples"
37 +
38 +src_install() {
39 + default
40 +
41 + if use doc; then
42 + docinto html
43 + dodoc -r docs/api/
44 + fi
45 + if use examples; then
46 + insinto /usr/share/doc/${PF}
47 + doins -r examples
48 + fi
49 +}