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/libstaroffice/
Date: Thu, 27 Jul 2017 15:27:28
Message-Id: 1501169229.9386c540f6123e93f9a0dc9558543b41297a8740.asturm@gentoo
1 commit: 9386c540f6123e93f9a0dc9558543b41297a8740
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 27 15:02:35 2017 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 27 15:27:09 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9386c540
7
8 app-text/libstaroffice: 0.0.4 version bump
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.1
11
12 app-text/libstaroffice/Manifest | 1 +
13 app-text/libstaroffice/libstaroffice-0.0.4.ebuild | 45 +++++++++++++++++++++++
14 2 files changed, 46 insertions(+)
15
16 diff --git a/app-text/libstaroffice/Manifest b/app-text/libstaroffice/Manifest
17 index 368e4ecd5f5..3d11505a4c6 100644
18 --- a/app-text/libstaroffice/Manifest
19 +++ b/app-text/libstaroffice/Manifest
20 @@ -1 +1,2 @@
21 DIST libstaroffice-0.0.3.tar.xz 679800 SHA256 bedeec104b4cc3896b3dfd1976dda5ce7392d1942bf8f5d2f7d796cc47e422c6 SHA512 ea60576537761a5b969a861ac43c8d4a9da5e5261d0a31f3d7743f8507e6979ccd4cba1784e8c3d909c08b692349ae11e87428834fd3df5b8d56e423caa7bcd8 WHIRLPOOL c8ba69eb347aa0c77f886511d79dba5011aa0ff25c3e9f4ec4af31b8b9303fd9dc1df32742bbc3c87d2a7fba32a7f830fdc3a38ca391559038388f4d97afe9af
22 +DIST libstaroffice-0.0.4.tar.xz 681828 SHA256 6e728784d002144716b10fe122973b3e4edda9004538386b0b58bb303404903a SHA512 d591e554ce108165f1952ae82835241df0f986ce51f1a4fe43d282733358bb8d72418621f91f431367a5c09f9a40a9784666ffa2da303c5543ee000b1d6abf38 WHIRLPOOL ac295aa290f92bc2071a56439dafb4280c52e2de8e36e6e686cdf31150bff8c87989bbc693cc4175d96c1ae5a155f21bb8f9344b0ed10920ebec161ba20a7110
23
24 diff --git a/app-text/libstaroffice/libstaroffice-0.0.4.ebuild b/app-text/libstaroffice/libstaroffice-0.0.4.ebuild
25 new file mode 100644
26 index 00000000000..57dbc81af32
27 --- /dev/null
28 +++ b/app-text/libstaroffice/libstaroffice-0.0.4.ebuild
29 @@ -0,0 +1,45 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +
35 +EGIT_REPO_URI="https://github.com/fosnola/libstaroffice.git"
36 +[[ ${PV} == 9999 ]] && inherit git-r3 autotools
37 +
38 +DESCRIPTION="Import filter for old StarOffice documents"
39 +HOMEPAGE="https://github.com/fosnola/libstaroffice"
40 +[[ ${PV} == 9999 ]] || SRC_URI="http://dev-www.libreoffice.org/src/${P}.tar.xz"
41 +
42 +LICENSE="|| ( LGPL-2.1+ MPL-2.0 )"
43 +SLOT="0"
44 +[[ ${PV} == 9999 ]] || \
45 +KEYWORDS="~amd64 ~arm ~x86"
46 +
47 +IUSE="debug doc tools +zlib"
48 +
49 +RDEPEND="
50 + dev-libs/librevenge
51 + zlib? ( sys-libs/zlib )
52 +"
53 +DEPEND="${RDEPEND}
54 + doc? ( app-doc/doxygen )
55 +"
56 +
57 +src_prepare() {
58 + default
59 + [[ ${PV} == 9999 ]] && eautoreconf
60 +}
61 +
62 +src_configure() {
63 + econf \
64 + --disable-werror \
65 + $(use_enable debug) \
66 + $(use_with doc docs) \
67 + $(use_enable tools) \
68 + $(use_enable zlib zip)
69 +}
70 +
71 +src_install() {
72 + default
73 + find "${D}" -name '*.la' -delete || die
74 +}