Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/clutter/
Date: Tue, 28 Jan 2020 09:39:24
Message-Id: 1580204063.778e605a7b84da5a2611aa38a74ba8a64274f59e.leio@gentoo
1 commit: 778e605a7b84da5a2611aa38a74ba8a64274f59e
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 28 09:28:31 2020 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 28 09:34:23 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=778e605a
7
8 media-libs/clutter: remove old
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
11 Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
12
13 media-libs/clutter/clutter-1.26.2-r1.ebuild | 108 ----------------------------
14 1 file changed, 108 deletions(-)
15
16 diff --git a/media-libs/clutter/clutter-1.26.2-r1.ebuild b/media-libs/clutter/clutter-1.26.2-r1.ebuild
17 deleted file mode 100644
18 index f29567c8550..00000000000
19 --- a/media-libs/clutter/clutter-1.26.2-r1.ebuild
20 +++ /dev/null
21 @@ -1,108 +0,0 @@
22 -# Copyright 1999-2019 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -GNOME2_LA_PUNT="yes"
27 -
28 -inherit gnome2 virtualx
29 -
30 -HOMEPAGE="https://wiki.gnome.org/Projects/Clutter"
31 -DESCRIPTION="Clutter is a library for creating graphical user interfaces"
32 -
33 -LICENSE="LGPL-2.1+ FDL-1.1+"
34 -SLOT="1.0"
35 -
36 -IUSE="aqua debug doc egl gtk +introspection test wayland X"
37 -RESTRICT="!test? ( test )"
38 -REQUIRED_USE="
39 - || ( aqua wayland X )
40 - wayland? ( egl )
41 -"
42 -
43 -KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc x86"
44 -
45 -# NOTE: glx flavour uses libdrm + >=mesa-7.3
46 -# >=libX11-1.3.1 needed for X Generic Event support
47 -# do not depend on tslib, it does not build and is disabled by default upstream
48 -RDEPEND="
49 - >=dev-libs/glib-2.44.0:2
50 - >=dev-libs/atk-2.5.3[introspection?]
51 - >=dev-libs/json-glib-0.12[introspection?]
52 - >=media-libs/cogl-1.21.2:1.0=[introspection?,pango,wayland?]
53 - >=x11-libs/cairo-1.14:=[aqua?,glib]
54 - >=x11-libs/pango-1.30[introspection?]
55 -
56 - virtual/opengl
57 - x11-libs/libdrm:=
58 -
59 - egl? (
60 - >=dev-libs/libinput-0.19.0
61 - media-libs/cogl[gles2,kms]
62 - >=dev-libs/libgudev-136
63 - x11-libs/libxkbcommon
64 - )
65 - gtk? ( >=x11-libs/gtk+-3.22.6:3[aqua?] )
66 - introspection? ( >=dev-libs/gobject-introspection-1.39:= )
67 - X? (
68 - media-libs/fontconfig
69 - >=x11-libs/libX11-1.3.1
70 - x11-libs/libXext
71 - x11-libs/libXdamage
72 - >=x11-libs/libXi-1.3
73 - >=x11-libs/libXcomposite-0.4 )
74 - wayland? (
75 - dev-libs/wayland
76 - x11-libs/gdk-pixbuf:2 )
77 -"
78 -DEPEND="${RDEPEND}
79 - dev-util/glib-utils
80 - >=dev-util/gtk-doc-am-1.20
81 - >=sys-devel/gettext-0.17
82 - virtual/pkgconfig
83 - doc? (
84 - >=dev-util/gtk-doc-1.20
85 - >=app-text/docbook-sgml-utils-0.6.14[jadetex]
86 - dev-libs/libxslt )
87 - X? ( x11-base/xorg-proto )
88 - test? ( x11-libs/gdk-pixbuf )
89 -"
90 -
91 -src_prepare() {
92 - # We only need conformance tests, the rest are useless for us
93 - sed -e 's/^\(SUBDIRS =\).*/\1 accessibility conform/g' \
94 - -i tests/Makefile.am || die "am tests sed failed"
95 - sed -e 's/^\(SUBDIRS =\)[^\]*/\1 accessibility conform/g' \
96 - -i tests/Makefile.in || die "in tests sed failed"
97 -
98 - gnome2_src_prepare
99 -}
100 -
101 -src_configure() {
102 - # XXX: Conformance test suite (and clutter itself) does not work under Xvfb
103 - # (GLX error blabla)
104 - # XXX: coverage disabled for now
105 - # XXX: What about cex100/win32 backends?
106 - gnome2_src_configure \
107 - --disable-maintainer-flags \
108 - --disable-mir-backend \
109 - --disable-gcov \
110 - --disable-cex100-backend \
111 - --disable-win32-backend \
112 - --disable-tslib-input \
113 - $(use_enable aqua quartz-backend) \
114 - $(usex debug --enable-debug=yes --enable-debug=minimum) \
115 - $(use_enable doc docs) \
116 - $(use_enable egl egl-backend) \
117 - $(use_enable egl evdev-input) \
118 - $(use_enable gtk gdk-backend) \
119 - $(use_enable introspection) \
120 - $(use_enable test gdk-pixbuf) \
121 - $(use_enable wayland wayland-backend) \
122 - $(use_enable wayland wayland-compositor) \
123 - $(use_enable X xinput) \
124 - $(use_enable X x11-backend)
125 -}
126 -
127 -src_test() {
128 - virtx emake check -C tests/conform
129 -}