commit:     0480c72dfe025dc8fe1ce115a4736d44f80108cf
Author:     Eli Schwartz <eschwartz <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 13 15:31:31 2024 +0000
Commit:     Eli Schwartz <eschwartz <AT> gentoo <DOT> org>
CommitDate: Fri Sep 13 16:09:55 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0480c72d

media-libs/clutter-gtk: relax overly restrictive USE dep guarding automagic

It prevents automagically building against gtk[X,wayland] by tightly
binding to gtk's USE flags.

We can solve this with a (new) gentoo-specific macro that hides the GTK
implementations when we don't want it. This is gated on our existing USE
flags for wayland/X support.

Signed-off-by: Eli Schwartz <eschwartz <AT> gentoo.org>

 media-libs/clutter-gtk/clutter-gtk-1.8.4-r2.ebuild | 50 ++++++++++++++++++++++
 1 file changed, 50 insertions(+)

diff --git a/media-libs/clutter-gtk/clutter-gtk-1.8.4-r2.ebuild 
b/media-libs/clutter-gtk/clutter-gtk-1.8.4-r2.ebuild
new file mode 100644
index 000000000000..d8655c294ab9
--- /dev/null
+++ b/media-libs/clutter-gtk/clutter-gtk-1.8.4-r2.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+GNOME2_LA_PUNT="yes"
+inherit flag-o-matic gnome2
+
+DESCRIPTION="Library for embedding a Clutter canvas (stage) in GTK+"
+HOMEPAGE="https://wiki.gnome.org/Projects/Clutter";
+
+LICENSE="LGPL-2.1+"
+SLOT="1.0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc 
~x86"
+IUSE="X debug examples gtk +introspection wayland"
+
+RDEPEND="
+       >=x11-libs/gtk+-3.24.41-r1:3[X?,introspection?,wayland?]
+       >=media-libs/clutter-1.23.7:1.0[X=,gtk=,introspection?,wayland=]
+       media-libs/cogl:1.0=[introspection?]
+       introspection? ( >=dev-libs/gobject-introspection-1.32:= )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+       >=dev-build/gtk-doc-am-1.24
+       >=sys-devel/gettext-0.18
+       virtual/pkgconfig
+"
+
+src_configure() {
+       # defang automagic dependencies.
+       use wayland || append-cflags -DGENTOO_GTK_HIDE_WAYLAND
+       use X || append-cflags -DGENTOO_GTK_HIDE_X11
+
+       gnome2_src_configure \
+               --disable-maintainer-flags \
+               --enable-deprecated \
+               $(usev debug --enable-debug=yes) \
+               $(use_enable introspection)
+}
+
+src_install() {
+       gnome2_src_install
+
+       if use examples; then
+               docinto examples
+               dodoc examples/{*.c,redhand.png}
+               docompress -x /usr/share/doc/${PF}/examples
+       fi
+}

Reply via email to