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: Sat, 21 Oct 2017 19:46:02
Message-Id: 1508615138.8a36f1b16707776f89d0cbd3f32e51b1214968c9.asturm@gentoo
1 commit: 8a36f1b16707776f89d0cbd3f32e51b1214968c9
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 21 19:24:14 2017 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 21 19:45:38 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a36f1b1
7
8 app-text/libqxp: New package
9
10 Required by app-office/libreoffice-6.
11
12 Thanks-to: cyrillic <cyrilmaley <AT> hotmail.com>
13 Gentoo-bug: 629834
14 Package-Manager: Portage-2.3.12, Repoman-2.3.3
15
16 app-text/libqxp/Manifest | 1 +
17 app-text/libqxp/libqxp-0.0.0.ebuild | 37 +++++++++++++++++++++++++++++++++++++
18 app-text/libqxp/metadata.xml | 11 +++++++++++
19 3 files changed, 49 insertions(+)
20
21 diff --git a/app-text/libqxp/Manifest b/app-text/libqxp/Manifest
22 new file mode 100644
23 index 00000000000..1ad9581492d
24 --- /dev/null
25 +++ b/app-text/libqxp/Manifest
26 @@ -0,0 +1 @@
27 +DIST libqxp-0.0.0.tar.xz 337292 SHA256 0dd32afbf1c889debc28848b260c1bdc0eba5f57504476b787e164f7c59776d5 SHA512 c92cb6298ea4643e29145732ff3b6df806f2d30c86ab4967e445dcbc8c43b6d9fdd17c30a3e6131b4f0f2a42135caa0137b61aac2ab2722528a08e1fd6c02df9 WHIRLPOOL b24aa8205ab11792f189dc1862f54afafe2b7fbbbd45487ec5a212afa3946de5f1372af59ff0c05332d7b77763b112ae95de017b24d472221015655d719e7093
28
29 diff --git a/app-text/libqxp/libqxp-0.0.0.ebuild b/app-text/libqxp/libqxp-0.0.0.ebuild
30 new file mode 100644
31 index 00000000000..f38c8f335ab
32 --- /dev/null
33 +++ b/app-text/libqxp/libqxp-0.0.0.ebuild
34 @@ -0,0 +1,37 @@
35 +# Copyright 1999-2017 Gentoo Foundation
36 +# Distributed under the terms of the GNU General Public License v2
37 +
38 +EAPI=6
39 +
40 +DESCRIPTION="Library parsing QuarkXpress documents"
41 +HOMEPAGE="https://wiki.documentfoundation.org/DLP/Libraries/${PN}"
42 +SRC_URI="https://dev-www.libreoffice.org/src/${PN}/${P}.tar.xz"
43 +
44 +LICENSE="MPL-2.0"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~x86"
47 +IUSE="debug doc test tools"
48 +
49 +RDEPEND="
50 + dev-libs/librevenge
51 + dev-libs/icu:=
52 +"
53 +DEPEND="${RDEPEND}
54 + dev-libs/boost
55 + virtual/pkgconfig
56 + doc? ( app-doc/doxygen )
57 +"
58 +
59 +src_configure() {
60 + econf \
61 + --disable-weffc \
62 + $(use_enable debug) \
63 + $(use_with doc docs) \
64 + $(use_enable test tests) \
65 + $(use_enable tools)
66 +}
67 +
68 +src_install() {
69 + default
70 + find "${D}" -name '*.la' -delete || die
71 +}
72
73 diff --git a/app-text/libqxp/metadata.xml b/app-text/libqxp/metadata.xml
74 new file mode 100644
75 index 00000000000..e99ec98e14f
76 --- /dev/null
77 +++ b/app-text/libqxp/metadata.xml
78 @@ -0,0 +1,11 @@
79 +<?xml version="1.0" encoding="UTF-8"?>
80 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
81 +<pkgmetadata>
82 + <maintainer type="project">
83 + <email>office@g.o</email>
84 + <name>Gentoo Office project</name>
85 + </maintainer>
86 + <use>
87 + <flag name="tools">Build file conversion tools</flag>
88 + </use>
89 +</pkgmetadata>