Gentoo Archives: gentoo-commits

From: "Andreas Hüttel" <dilfridge@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/libetonyek/
Date: Tue, 29 Nov 2016 20:27:23
Message-Id: 1480451230.38eab5444276f38ec219321f72b25a1206bd893b.dilfridge@gentoo
1 commit: 38eab5444276f38ec219321f72b25a1206bd893b
2 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
3 AuthorDate: Tue Nov 29 19:58:48 2016 +0000
4 Commit: Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 29 20:27:10 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38eab544
7
8 app-text/libetonyek: Remove old
9
10 Package-Manager: portage-2.3.2
11
12 app-text/libetonyek/Manifest | 1 -
13 app-text/libetonyek/libetonyek-0.1.3.ebuild | 63 -----------------------------
14 2 files changed, 64 deletions(-)
15
16 diff --git a/app-text/libetonyek/Manifest b/app-text/libetonyek/Manifest
17 index c057d31..263ad91 100644
18 --- a/app-text/libetonyek/Manifest
19 +++ b/app-text/libetonyek/Manifest
20 @@ -1,2 +1 @@
21 -DIST libetonyek-0.1.3.tar.xz 372884 SHA256 fe12276a62bd5f5ca4f5bfbd4938a74d097084e1f9fe173e521f63203f56f055 SHA512 912cb94e6cd63a162a8831368f953c4e6fb14b582a13a7ce93c0bcbb63b688fcbe4733dbb883d6a9faee2011ca5e888d00adda075c2a58d00858770ed68d6844 WHIRLPOOL 5fe864e37f6611c8cda92243a13e08e38ce1fd6f9544ddee7d3392fa9bfe573cd9af6ddd0ff03c7a0cee19b63c46b96398d985eaeb7367cd06aac8796d3655b8
22 DIST libetonyek-0.1.6.tar.xz 1243364 SHA256 df54271492070fbcc6aad9f81ca89658b25dd106cc4ab6b04b067b7a43dcc078 SHA512 10ae0403d98f33b27be4c3c905dec3df48cc01ce438f8760298edeadb76dd74da997edbd7dc03635fbc168b318bfe6e130f2306f495dfbf4135dd6dfcccabb4e WHIRLPOOL 932704f1d8bb1269e6be8e3fd7bd64af01ba0f098272befc747da9a4bd225bb201542bebf31d6e6338e613835fca4d7c6e2c1454df4ed764af30459393b6d73b
23
24 diff --git a/app-text/libetonyek/libetonyek-0.1.3.ebuild b/app-text/libetonyek/libetonyek-0.1.3.ebuild
25 deleted file mode 100644
26 index 295a5d8..00000000
27 --- a/app-text/libetonyek/libetonyek-0.1.3.ebuild
28 +++ /dev/null
29 @@ -1,63 +0,0 @@
30 -# Copyright 1999-2016 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -# $Id$
33 -
34 -EAPI=5
35 -
36 -EGIT_REPO_URI="git://anongit.freedesktop.org/git/libreoffice/libetonyek"
37 -inherit base eutils
38 -[[ ${PV} == 9999 ]] && inherit autotools git-2
39 -
40 -DESCRIPTION="Library parsing Apple Keynote presentations"
41 -HOMEPAGE="https://wiki.documentfoundation.org/DLP/Libraries/libetonyek"
42 -[[ ${PV} == 9999 ]] || SRC_URI="http://dev-www.libreoffice.org/src/${PN}/${P}.tar.xz"
43 -
44 -LICENSE="|| ( GPL-2+ LGPL-2.1 MPL-1.1 )"
45 -SLOT="0"
46 -[[ ${PV} == 9999 ]] || \
47 -KEYWORDS="amd64 ~arm x86"
48 -IUSE="doc static-libs test"
49 -
50 -RDEPEND="
51 - dev-libs/librevenge
52 - dev-libs/libxml2
53 - sys-libs/zlib
54 -"
55 -DEPEND="${RDEPEND}
56 - >=dev-libs/boost-1.46
57 - >=dev-util/mdds-0.12.1:0
58 - media-libs/glm
59 - sys-devel/libtool
60 - virtual/pkgconfig
61 - doc? ( app-doc/doxygen )
62 - test? ( dev-util/cppunit )
63 -"
64 -
65 -pkg_pretend() {
66 - if [[ $(gcc-major-version) -lt 4 ]] || {
67 - [[ $(gcc-major-version) -eq 4 && $(gcc-minor-version) -lt 8 ]]; }
68 - then
69 - eerror "Compilation with gcc older than 4.8 is not supported"
70 - die "Too old gcc found."
71 - fi
72 -}
73 -
74 -src_prepare() {
75 - [[ -d m4 ]] || mkdir "m4"
76 - base_src_prepare
77 - [[ ${PV} == 9999 ]] && eautoreconf
78 -}
79 -
80 -src_configure() {
81 - econf \
82 - --docdir="${EPREFIX}/usr/share/doc/${PF}" \
83 - $(use_enable static-libs static) \
84 - --disable-werror \
85 - $(use_enable test tests) \
86 - $(use_with doc docs)
87 -}
88 -
89 -src_install() {
90 - default
91 - prune_libtool_files --all
92 -}