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/libetonyek/
Date: Sun, 31 May 2020 21:09:22
Message-Id: 1590959319.36d3a0eb0777f408ebcf296520e8a9cc61939420.asturm@gentoo
1 commit: 36d3a0eb0777f408ebcf296520e8a9cc61939420
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 31 21:02:59 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun May 31 21:08:39 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36d3a0eb
7
8 app-text/libetonyek: Drop 0.1.9 (r0)
9
10 Package-Manager: Portage-2.3.100, Repoman-2.3.22
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 app-text/libetonyek/libetonyek-0.1.9.ebuild | 58 -----------------------------
14 1 file changed, 58 deletions(-)
15
16 diff --git a/app-text/libetonyek/libetonyek-0.1.9.ebuild b/app-text/libetonyek/libetonyek-0.1.9.ebuild
17 deleted file mode 100644
18 index 36303b04a6f..00000000000
19 --- a/app-text/libetonyek/libetonyek-0.1.9.ebuild
20 +++ /dev/null
21 @@ -1,58 +0,0 @@
22 -# Copyright 1999-2019 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -
27 -if [[ ${PV} = 9999 ]]; then
28 - EGIT_REPO_URI="https://anongit.freedesktop.org/git/libreoffice/libetonyek.git"
29 - inherit autotools git-r3
30 -else
31 - SRC_URI="https://dev-www.libreoffice.org/src/libetonyek/${P}.tar.xz"
32 - KEYWORDS="amd64 ~arm arm64 ~ppc64 x86"
33 -fi
34 -DESCRIPTION="Library parsing Apple Keynote presentations"
35 -HOMEPAGE="https://wiki.documentfoundation.org/DLP/Libraries/libetonyek"
36 -
37 -LICENSE="|| ( GPL-2+ LGPL-2.1 MPL-1.1 )"
38 -SLOT="0"
39 -IUSE="doc static-libs test"
40 -RESTRICT="!test? ( test )"
41 -
42 -RDEPEND="
43 - app-text/liblangtag
44 - dev-libs/librevenge
45 - dev-libs/libxml2
46 - =dev-util/mdds-1.4*:1=
47 - sys-libs/zlib
48 -"
49 -DEPEND="${RDEPEND}
50 - dev-libs/boost
51 - media-libs/glm
52 - sys-devel/libtool
53 - virtual/pkgconfig
54 - doc? ( app-doc/doxygen )
55 - test? ( dev-util/cppunit )
56 -"
57 -
58 -src_prepare() {
59 - default
60 - [[ -d m4 ]] || mkdir "m4"
61 - [[ ${PV} == 9999 ]] && eautoreconf
62 -}
63 -
64 -src_configure() {
65 - local myeconfargs=(
66 - --disable-werror
67 - --with-mdds=1.4
68 - $(use_with doc docs)
69 - $(use_enable static-libs static)
70 - $(use_enable test tests)
71 - )
72 -
73 - econf "${myeconfargs[@]}"
74 -}
75 -
76 -src_install() {
77 - default
78 - find "${D}" -name '*.la' -delete || die
79 -}