Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-plugins/evas_generic_loaders/
Date: Wed, 13 Jun 2018 10:41:10
Message-Id: 1528885651.b0f02ec1ad912579d504ef8b126cbdc72e67dd7e.mgorny@gentoo
1 commit: b0f02ec1ad912579d504ef8b126cbdc72e67dd7e
2 Author: Joonas Niilola <juippis <AT> gmail <DOT> com>
3 AuthorDate: Tue Jun 12 08:32:09 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 13 10:27:31 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0f02ec1
7
8 media-plugins/evas_generic_loaders: remove -9999
9
10 Unmaintained.
11
12 Package-Manager: Portage[mgorny]-2.3.36.1
13
14 .../evas_generic_loaders-9999.ebuild | 58 ----------------------
15 1 file changed, 58 deletions(-)
16
17 diff --git a/media-plugins/evas_generic_loaders/evas_generic_loaders-9999.ebuild b/media-plugins/evas_generic_loaders/evas_generic_loaders-9999.ebuild
18 deleted file mode 100644
19 index ed17342f176..00000000000
20 --- a/media-plugins/evas_generic_loaders/evas_generic_loaders-9999.ebuild
21 +++ /dev/null
22 @@ -1,58 +0,0 @@
23 -# Copyright 1999-2017 Gentoo Foundation
24 -# Distributed under the terms of the GNU General Public License v2
25 -
26 -EAPI="5"
27 -
28 -MY_P=${PN}-${PV/_/-}
29 -
30 -if [[ "${PV}" == "9999" ]] ; then
31 - EGIT_SUB_PROJECT="core"
32 - EGIT_URI_APPEND="${PN}"
33 -else
34 - SRC_URI="https://download.enlightenment.org/rel/libs/${PN}/${MY_P}.tar.xz"
35 - EKEY_STATE="snap"
36 -fi
37 -
38 -inherit enlightenment flag-o-matic
39 -
40 -DESCRIPTION="Provides external applications as generic loaders for Evas"
41 -HOMEPAGE="https://www.enlightenment.org/"
42 -
43 -LICENSE="GPL-2"
44 -IUSE="gstreamer pdf postscript raw svg"
45 -
46 -RDEPEND=">=dev-libs/efl-${PV}
47 - gstreamer? (
48 - media-libs/gstreamer:1.0
49 - media-libs/gst-plugins-base:1.0
50 - )
51 - pdf? ( app-text/poppler )
52 - postscript? ( app-text/libspectre )
53 - raw? ( media-libs/libraw )
54 - svg? (
55 - gnome-base/librsvg
56 - x11-libs/cairo
57 - )"
58 -DEPEND="${RDEPEND}"
59 -
60 -S=${WORKDIR}/${MY_P}
61 -
62 -src_prepare() {
63 - # bug 627402, poppler headers require C++11
64 - use pdf && append-cxxflags -std=c++11
65 - default
66 -}
67 -
68 -src_configure() {
69 - E_ECONF=(
70 - $(use_enable gstreamer gstreamer1)
71 - $(use_enable pdf poppler)
72 - $(use_enable postscript spectre)
73 - $(use_enable raw libraw)
74 - $(use_enable svg)
75 -
76 - --disable-gstreamer
77 - )
78 -
79 - enlightenment_src_configure
80 -}