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/libwps/
Date: Tue, 28 Nov 2017 19:04:32
Message-Id: 1511895847.235bf72d02fbb66698639d3eccff5cd6e2b72e5d.asturm@gentoo
1 commit: 235bf72d02fbb66698639d3eccff5cd6e2b72e5d
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Tue Nov 28 18:57:46 2017 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 28 19:04:07 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=235bf72d
7
8 app-text/libwps: 0.4.8 version bump
9
10 Package-Manager: Portage-2.3.16, Repoman-2.3.6
11
12 app-text/libwps/Manifest | 3 ++-
13 app-text/libwps/libwps-0.4.8.ebuild | 35 +++++++++++++++++++++++++++++++++++
14 2 files changed, 37 insertions(+), 1 deletion(-)
15
16 diff --git a/app-text/libwps/Manifest b/app-text/libwps/Manifest
17 index 1f7ac191590..80727c38495 100644
18 --- a/app-text/libwps/Manifest
19 +++ b/app-text/libwps/Manifest
20 @@ -1 +1,2 @@
21 -DIST libwps-0.4.7.tar.xz 595580 SHA256 2f2cab630bceace24f9dbb7d187cd6cd1f4c9f8a7b682c5f7e49c1e2cb58b217 SHA512 d38b778016f8ca6a44edba86177d28a3f0bcd338e57276a615eeb9d470def71aa9326c3077789129418b38e88ae6f6d1901d08f5716081ba2eb9847a133c96da WHIRLPOOL 8dd7cc93f9a9da8e1685ab40c9a8fbe92bc0b1ca1c2888c9d70681156fdaea918dcef2bc6ed31f8d0d6a1345009275cb5517cdb513bea8abd90c17b124aba5e7
22 +DIST libwps-0.4.7.tar.xz 595580 BLAKE2B 697d0572aa8dccc732b5ff3f23c3bacf2a82ea77442e819172a03a8b906aaee010fc992419d161f573efb3c998cc8d001a7431e16996f5348fe4aa80b8060bdd SHA512 d38b778016f8ca6a44edba86177d28a3f0bcd338e57276a615eeb9d470def71aa9326c3077789129418b38e88ae6f6d1901d08f5716081ba2eb9847a133c96da
23 +DIST libwps-0.4.8.tar.xz 648512 BLAKE2B b446c9999ff0e760569daa52fd24e42af8cdda78f2c0bc77d26cc25957381456f045dde1eb4ec8bd7999de29f658d67b2a493fdeacde4faa12a00aa28725603f SHA512 bf5d7aeb6f06e87f15ec8e911fb6436fb4e14839123db71488638f0e658034ad4ea8849ed83926af2fab9b50a7ef7410199d4a1102abc63c83d37bf1966a4afb
24
25 diff --git a/app-text/libwps/libwps-0.4.8.ebuild b/app-text/libwps/libwps-0.4.8.ebuild
26 new file mode 100644
27 index 00000000000..d52a852a39e
28 --- /dev/null
29 +++ b/app-text/libwps/libwps-0.4.8.ebuild
30 @@ -0,0 +1,35 @@
31 +# Copyright 1999-2017 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +DESCRIPTION="Microsoft Works file word processor format import filter library"
37 +HOMEPAGE="https://sourceforge.net/p/libwps/wiki/Home/"
38 +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz"
39 +
40 +LICENSE="|| ( LGPL-2.1 MPL-2.0 )"
41 +SLOT="0"
42 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~x86"
43 +IUSE="doc debug static-libs tools"
44 +
45 +RDEPEND="
46 + dev-libs/librevenge
47 +"
48 +DEPEND="${RDEPEND}
49 + virtual/pkgconfig
50 + doc? ( app-doc/doxygen )
51 +"
52 +
53 +src_configure() {
54 + econf \
55 + --disable-werror \
56 + $(use_enable debug) \
57 + $(use_with doc docs) \
58 + $(use_enable static-libs static) \
59 + $(use_enable tools)
60 +}
61 +
62 +src_install() {
63 + default
64 + find "${D}" -name '*.la' -delete || die
65 +}