summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'x11-libs')
-rw-r--r--x11-libs/colord-gtk/Manifest1
-rw-r--r--x11-libs/colord-gtk/colord-gtk-0.2.0.ebuild60
-rw-r--r--x11-libs/colord-gtk/files/colord-gtk-0.2.0-optional-introspection.patch41
3 files changed, 0 insertions, 102 deletions
diff --git a/x11-libs/colord-gtk/Manifest b/x11-libs/colord-gtk/Manifest
index 8ee9f62d959b..327a9dbc3436 100644
--- a/x11-libs/colord-gtk/Manifest
+++ b/x11-libs/colord-gtk/Manifest
@@ -1,2 +1 @@
-DIST colord-gtk-0.2.0.tar.xz 20480 BLAKE2B 73bbb349e84e5bfd28358cbe22609de84b86f90eb96a3fedc6e30a1764d9c667cd82408116cdf65591496ab4e2f59f2b415cd1aa8f995fe2162ee4d649c5d496 SHA512 797eebfd4451fcae4cf70835f5de3d9bdc9e8401ddb82a2fef2310002f28bf523b599c587ff35eb89ceff38a245a6311129ad90b107f837ac4f42f268c9aad97
DIST colord-gtk-0.3.0.tar.xz 21768 BLAKE2B e6fe56dfa969f18bd406d481dd13e83b689a820aeddaf1482ec97e89a3f78d4228544c79849d330962f3d45e3506f1c0b2540ed7bfab36ede04008877d503b94 SHA512 95ea9e8925d56462b8e5230a6737ca8e75d2273b2803e00f7aa2f933d22f88373194dccc00117fce85579274cc0daf88876fa265510580b1610734bb45220896
diff --git a/x11-libs/colord-gtk/colord-gtk-0.2.0.ebuild b/x11-libs/colord-gtk/colord-gtk-0.2.0.ebuild
deleted file mode 100644
index 4f7cfc86fec5..000000000000
--- a/x11-libs/colord-gtk/colord-gtk-0.2.0.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-VALA_USE_DEPEND="vapigen"
-
-inherit meson vala
-
-DESCRIPTION="GTK support library for colord"
-HOMEPAGE="https://www.freedesktop.org/software/colord/"
-SRC_URI="https://www.freedesktop.org/software/colord/releases/${P}.tar.xz"
-
-LICENSE="LGPL-3+"
-SLOT="0/1" # subslot = libcolord-gtk soname version
-KEYWORDS="~alpha amd64 ~arm arm64 ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc x86"
-
-IUSE="doc +introspection vala"
-REQUIRED_USE="vala? ( introspection )"
-
-DEPEND="
- >=dev-libs/glib-2.28:2
- x11-libs/gtk+:3[introspection?]
- >=x11-misc/colord-0.1.27:=[introspection?,vala?]
-"
-RDEPEND="${DEPEND}"
-BDEPEND="
- dev-libs/libxslt
- >=sys-devel/gettext-0.17
- virtual/pkgconfig
- doc? (
- app-text/docbook-xml-dtd:4.1.2
- >=dev-util/gtk-doc-1.9
- )
- app-text/docbook-xsl-ns-stylesheets
- introspection? ( >=dev-libs/gobject-introspection-0.9.8 )
- vala? ( $(vala_depend) )
-"
-
-RESTRICT="test" # Tests need a display device with a default color profile set
-
-PATCHES=(
- "${FILESDIR}/${P}-optional-introspection.patch"
-)
-
-src_prepare() {
- use vala && vala_src_prepare
- default
-}
-
-src_configure() {
- local -a emesonargs=(
- -Dgtk2=false
- -Dman=true
- -Dtests=false
- $(meson_use doc docs)
- $(meson_use introspection)
- $(meson_use vala vapi)
- )
- meson_src_configure
-}
diff --git a/x11-libs/colord-gtk/files/colord-gtk-0.2.0-optional-introspection.patch b/x11-libs/colord-gtk/files/colord-gtk-0.2.0-optional-introspection.patch
deleted file mode 100644
index 543b443e3aec..000000000000
--- a/x11-libs/colord-gtk/files/colord-gtk-0.2.0-optional-introspection.patch
+++ /dev/null
@@ -1,41 +0,0 @@
-From 0fb3425873a04ba100b57d59449d27bba6768ff3 Mon Sep 17 00:00:00 2001
-From: David Michael <fedora.dm0@gmail.com>
-Date: Sat, 9 Jan 2021 14:42:39 -0500
-Subject: [PATCH] Make introspection optional in meson
-
-It defaults to enabled to preserve existing behavior.
----
- libcolord-gtk/meson.build | 2 ++
- meson_options.txt | 1 +
- 2 files changed, 3 insertions(+)
-
-diff --git a/libcolord-gtk/meson.build b/libcolord-gtk/meson.build
-index c4fe704..18f36a0 100644
---- a/libcolord-gtk/meson.build
-+++ b/libcolord-gtk/meson.build
-@@ -61,6 +61,7 @@ pkgg.generate(
- description : 'colord-gtk is GTK integration for libcolord',
- )
-
-+if get_option('introspection')
- libcolord_gtk_gir = gnome.generate_gir(
- colord_gtk,
- sources : [
-@@ -97,6 +98,7 @@ libcolord_gtk_gir = gnome.generate_gir(
- ],
- install : true
- )
-+endif
-
- if get_option('vapi')
- gnome.generate_vapi(
-diff --git a/meson_options.txt b/meson_options.txt
-index 1c3cecc..a4efa84 100644
---- a/meson_options.txt
-+++ b/meson_options.txt
-@@ -1,4 +1,5 @@
- option('gtk2', type : 'boolean', value : false, description : 'Build Gtk2 library')
-+option('introspection', type : 'boolean', value : true, description : 'Build gobject-introspection typelib files')
- option('vapi', type : 'boolean', value : false, description : 'Build vala bindings')
- option('tests', type : 'boolean', value : true, description : 'Build self tests')
- option('man', type : 'boolean', value : true, description : 'Generate man pages')