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/libabw/
Date: Sun, 07 Jan 2018 09:55:57
Message-Id: 1515318769.f54366ab6f3f6a0e9dad9b103672c3a92c8b0a85.asturm@gentoo
1 commit: f54366ab6f3f6a0e9dad9b103672c3a92c8b0a85
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 7 09:52:49 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 7 09:52:49 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f54366ab
7
8 app-text/libabw: 0.1.2 version bump
9
10 Package-Manager: Portage-2.3.19, Repoman-2.3.6
11
12 app-text/libabw/Manifest | 1 +
13 app-text/libabw/libabw-0.1.2.ebuild | 44 +++++++++++++++++++++++++++++++++++++
14 2 files changed, 45 insertions(+)
15
16 diff --git a/app-text/libabw/Manifest b/app-text/libabw/Manifest
17 index 959e4f00a7a..24dfe74af61 100644
18 --- a/app-text/libabw/Manifest
19 +++ b/app-text/libabw/Manifest
20 @@ -1 +1,2 @@
21 DIST libabw-0.1.1.tar.xz 287628 BLAKE2B c8873512d7bb4c6594330dd35f044a6d6fb7bd07f4b915b5f0d0752ae36c9c6d2c8a5e7e7f66947fb5c27256e0701214b3fe171e1f52c09cfd42bbf106bc689e SHA512 853dd86ecc79e8590d3163e05e145ad66240ae3cf12d206d021775a94bfb33d70aa5acdcdd193ac747baeae1ba0eed18099ea6f4515be23bdd70b431e96c4b1a
22 +DIST libabw-0.1.2.tar.xz 318400 BLAKE2B ba25542da0d6568530241892dbdba72d2b0dcf667b50e0c1a4e656e0facf82bf77ca8eff8db4d6e57ab699f12d8dad511d32aee291541ffe6460b2ee98590b68 SHA512 a365c1aa047a97a86eee6bce8463646bdf248a51013139ee288402a832fd545586e072d7c7fc11a56f42e3637de9e922197be20d0587e53c51fd80ced409a6cd
23
24 diff --git a/app-text/libabw/libabw-0.1.2.ebuild b/app-text/libabw/libabw-0.1.2.ebuild
25 new file mode 100644
26 index 00000000000..9db45bfc4cf
27 --- /dev/null
28 +++ b/app-text/libabw/libabw-0.1.2.ebuild
29 @@ -0,0 +1,44 @@
30 +# Copyright 1999-2018 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +
35 +inherit autotools
36 +
37 +DESCRIPTION="Library parsing abiword documents"
38 +HOMEPAGE="https://wiki.documentfoundation.org/DLP/Libraries/libabw"
39 +SRC_URI="https://dev-www.libreoffice.org/src/${PN}/${P}.tar.xz"
40 +
41 +LICENSE="MPL-2.0"
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~arm ~arm64 ~x86"
44 +IUSE="doc static-libs"
45 +
46 +RDEPEND="
47 + dev-libs/librevenge
48 + dev-libs/libxml2
49 + sys-libs/zlib
50 +"
51 +DEPEND="${RDEPEND}
52 + >=dev-libs/boost-1.46
53 + sys-devel/libtool
54 + virtual/pkgconfig
55 + doc? ( app-doc/doxygen )
56 +"
57 +
58 +src_prepare() {
59 + default
60 + eautoreconf
61 +}
62 +
63 +src_configure() {
64 + econf \
65 + --disable-werror \
66 + $(use_with doc docs) \
67 + $(use_enable static-libs static)
68 +}
69 +
70 +src_install() {
71 + default
72 + find "${D}" -name '*.la' -delete || die
73 +}