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/libqxp/
Date: Sun, 30 Dec 2018 20:08:56
Message-Id: 1546200447.602fe71a29b8a2066ece66d5328e67e72544d549.asturm@gentoo
1 commit: 602fe71a29b8a2066ece66d5328e67e72544d549
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 30 20:00:02 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 30 20:07:27 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=602fe71a
7
8 app-text/libqxp: 0.0.2 version bump
9
10 Package-Manager: Portage-2.3.52, Repoman-2.3.12
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 app-text/libqxp/Manifest | 1 +
14 app-text/libqxp/libqxp-0.0.2.ebuild | 41 +++++++++++++++++++++++++++++++++++++
15 2 files changed, 42 insertions(+)
16
17 diff --git a/app-text/libqxp/Manifest b/app-text/libqxp/Manifest
18 index ce3b3b1ccc0..14d19badb9e 100644
19 --- a/app-text/libqxp/Manifest
20 +++ b/app-text/libqxp/Manifest
21 @@ -1 +1,2 @@
22 DIST libqxp-0.0.1.tar.xz 340184 BLAKE2B 759e5d0fb5886485f4ebe4a6caa34d1d98dc623c0ae124c6666a1be5ce7fb73686fc83360712d59d020e4788b39aa57d32149b7641d71b73dde917df46617f17 SHA512 a03a9ada658a92f4d985cad91d467b3916334c74dc26c1e4de89e3929e0135ca0e9c7e7e18ce616ef56a67863ec19c2638494400785849017f9a4776df07c607
23 +DIST libqxp-0.0.2.tar.xz 341760 BLAKE2B e596b3ebd23c8fff2a1675b1076ba6b4403bb41358972b50eb946610108f5968ef3e553478aec8c6211f8b476030033e7d334cb4deccc7d6bdfba3914821abf5 SHA512 409d3df82ac522b39bdd0ef4f0a781b906e246a8e6f502009c095eea90d672c482a7fc5c7f998d89952bc598c6f51357346ed6df490c25cb48e1318e27c50dab
24
25 diff --git a/app-text/libqxp/libqxp-0.0.2.ebuild b/app-text/libqxp/libqxp-0.0.2.ebuild
26 new file mode 100644
27 index 00000000000..f1095915cd1
28 --- /dev/null
29 +++ b/app-text/libqxp/libqxp-0.0.2.ebuild
30 @@ -0,0 +1,41 @@
31 +# Copyright 1999-2018 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +DESCRIPTION="Library parsing QuarkXpress documents"
37 +HOMEPAGE="https://wiki.documentfoundation.org/DLP/Libraries/${PN}"
38 +SRC_URI="https://dev-www.libreoffice.org/src/${PN}/${P}.tar.xz"
39 +
40 +LICENSE="MPL-2.0"
41 +SLOT="0"
42 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
43 +IUSE="debug doc test tools"
44 +
45 +RDEPEND="
46 + dev-libs/librevenge
47 + dev-libs/icu:=
48 +"
49 +DEPEND="${RDEPEND}
50 + dev-libs/boost
51 +"
52 +BDEPEND="
53 + virtual/pkgconfig
54 + doc? ( app-doc/doxygen )
55 +"
56 +
57 +src_configure() {
58 + local myeconfargs=(
59 + --disable-weffc
60 + $(use_enable debug)
61 + $(use_with doc docs)
62 + $(use_enable test tests)
63 + $(use_enable tools)
64 + )
65 + econf "${myeconfargs[@]}"
66 +}
67 +
68 +src_install() {
69 + default
70 + find "${D}" -name '*.la' -delete || die
71 +}