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: Thu, 12 Sep 2019 20:27:59
Message-Id: 1568320053.debfbc200e95195e3b67017f48379d1f2a02d390.asturm@gentoo
1 commit: debfbc200e95195e3b67017f48379d1f2a02d390
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 12 20:12:25 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 12 20:27:33 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=debfbc20
7
8 app-text/libabw: 0.1.3 version bump, EAPI-7 bump
9
10 Package-Manager: Portage-2.3.76, Repoman-2.3.17
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 app-text/libabw/Manifest | 1 +
14 app-text/libabw/libabw-0.1.3.ebuild | 45 +++++++++++++++++++++++++++++++++++++
15 2 files changed, 46 insertions(+)
16
17 diff --git a/app-text/libabw/Manifest b/app-text/libabw/Manifest
18 index 907099d0d30..975bf466f44 100644
19 --- a/app-text/libabw/Manifest
20 +++ b/app-text/libabw/Manifest
21 @@ -1 +1,2 @@
22 DIST libabw-0.1.2.tar.xz 318400 BLAKE2B ba25542da0d6568530241892dbdba72d2b0dcf667b50e0c1a4e656e0facf82bf77ca8eff8db4d6e57ab699f12d8dad511d32aee291541ffe6460b2ee98590b68 SHA512 a365c1aa047a97a86eee6bce8463646bdf248a51013139ee288402a832fd545586e072d7c7fc11a56f42e3637de9e922197be20d0587e53c51fd80ced409a6cd
23 +DIST libabw-0.1.3.tar.xz 318808 BLAKE2B 234ff797bf3798bc7f14f2b3f0d0cc2d80eda2a6ba2d656288c26e58d53b9798003d7f45ad7c9a0f504da36c8c8ba367f8fe5b565a85fbc6a1f1627d89e7e353 SHA512 0d2646e1bad1e11b3da43714ac5931fc67ffdbc4e7a25a44ef5b6e6a41de1e0ae14596b4a87cceb07bf56dbbe9344622b3d60afcb054ee0ab8577ca8e9b5c289
24
25 diff --git a/app-text/libabw/libabw-0.1.3.ebuild b/app-text/libabw/libabw-0.1.3.ebuild
26 new file mode 100644
27 index 00000000000..bae7f1dcebd
28 --- /dev/null
29 +++ b/app-text/libabw/libabw-0.1.3.ebuild
30 @@ -0,0 +1,45 @@
31 +# Copyright 1999-2019 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +inherit flag-o-matic
37 +
38 +DESCRIPTION="Library parsing abiword documents"
39 +HOMEPAGE="https://wiki.documentfoundation.org/DLP/Libraries/libabw"
40 +SRC_URI="https://dev-www.libreoffice.org/src/${PN}/${P}.tar.xz"
41 +
42 +LICENSE="MPL-2.0"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
45 +IUSE="doc static-libs"
46 +
47 +BDEPEND="
48 + virtual/pkgconfig
49 + doc? ( app-doc/doxygen )
50 +"
51 +RDEPEND="
52 + dev-libs/librevenge
53 + dev-libs/libxml2
54 + sys-libs/zlib
55 +"
56 +DEPEND="${RDEPEND}
57 + >=dev-libs/boost-1.46
58 + sys-devel/libtool
59 +"
60 +
61 +src_configure() {
62 + # bug 619470
63 + append-cxxflags -std=c++14
64 +
65 + local myeconfargs=(
66 + $(use_with doc docs)
67 + $(use_enable static-libs static)
68 + )
69 + econf "${myeconfargs[@]}"
70 +}
71 +
72 +src_install() {
73 + default
74 + find "${D}" -name '*.la' -delete || die
75 +}