Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/libebook/
Date: Sun, 07 Jan 2018 09:55:58
Message-Id: 1515318941.78d39ce7bad8e7ed18ec38f083285b6dd0113530.asturm@gentoo
1 commit: 78d39ce7bad8e7ed18ec38f083285b6dd0113530
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 7 09:55:41 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 7 09:55:41 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78d39ce7
7
8 app-text/libebook: 0.1.3 version bump
9
10 Package-Manager: Portage-2.3.19, Repoman-2.3.6
11
12 app-text/libebook/Manifest | 1 +
13 app-text/libebook/libebook-0.1.3.ebuild | 54 +++++++++++++++++++++++++++++++++
14 2 files changed, 55 insertions(+)
15
16 diff --git a/app-text/libebook/Manifest b/app-text/libebook/Manifest
17 index 4c6c58851a1..b9dc46f930d 100644
18 --- a/app-text/libebook/Manifest
19 +++ b/app-text/libebook/Manifest
20 @@ -1 +1,2 @@
21 DIST libe-book-0.1.2.tar.bz2 465922 BLAKE2B 11898cb34d41a6abbf256ed8a7ff44006f239616987ca5883a8a611041bcda2cce221acc00c57cd36d94f8c26510889df3206ca4f071c23ae272262938e2c396 SHA512 82982874f9c0f5e400166e9367a4b6017cf11bbd69e2e79240137385a5d68ddea08f13676f8c5d0e983f441de17cda9f4b5f7c90c5cb3515e319de638edf3a38
22 +DIST libe-book-0.1.3.tar.bz2 510498 BLAKE2B e29f9f80a85210447494af20cf30ce7f231ef43f40af9683df7f63e172f5ff8d944d74b995b5850856b2736044b1a5a1ac386262e52a48575325339224a1d339 SHA512 9afa2949f702a34fd6278145ce8d18d504326ed5a103bbc872d0493fcf3e2166d41d094bb0d74b80aa913ca6d082f5bd3259799a4a3c7359331ccdfa1e029a21
23
24 diff --git a/app-text/libebook/libebook-0.1.3.ebuild b/app-text/libebook/libebook-0.1.3.ebuild
25 new file mode 100644
26 index 00000000000..4458a48c026
27 --- /dev/null
28 +++ b/app-text/libebook/libebook-0.1.3.ebuild
29 @@ -0,0 +1,54 @@
30 +# Copyright 1999-2018 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +
35 +MY_PN="libe-book"
36 +MY_P="${MY_PN}-${PV}"
37 +
38 +inherit autotools
39 +
40 +DESCRIPTION="Library parsing various ebook formats"
41 +HOMEPAGE="http://www.sourceforge.net/projects/libebook/"
42 +SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2"
43 +
44 +LICENSE="MPL-2.0"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~arm ~arm64 ~x86"
47 +IUSE="doc test tools"
48 +
49 +RDEPEND="
50 + dev-libs/icu:=
51 + dev-libs/librevenge
52 + dev-libs/libxml2
53 + sys-libs/zlib
54 +"
55 +DEPEND="${RDEPEND}
56 + dev-libs/boost
57 + dev-util/gperf
58 + virtual/pkgconfig
59 + doc? ( app-doc/doxygen )
60 + test? ( dev-util/cppunit )
61 +"
62 +RDEPEND="${RDEPEND}"
63 +
64 +S="${WORKDIR}/${MY_P}"
65 +
66 +src_prepare() {
67 + default
68 + eautoreconf
69 +}
70 +
71 +src_configure() {
72 + econf \
73 + --disable-static \
74 + --disable-werror \
75 + $(use_with doc docs) \
76 + $(use_enable test tests) \
77 + $(use_with tools)
78 +}
79 +
80 +src_install() {
81 + default
82 + find "${D}" -name '*.la' -delete || die
83 +}