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