diff options
author | Michał Górny <mgorny@gentoo.org> | 2019-08-22 12:03:33 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2019-08-22 13:14:54 +0200 |
commit | 26ab76702c63b9b58fcc1e2a7197a0927396c5dc (patch) | |
tree | ffe79a3d6f24f6330372ca5e9d0a1f0c1f3e499e /xfce-base/xfce4-panel | |
parent | xfce-extra/xfce4-places-plugin: Require xfce-base/exo[gtk2] (diff) | |
download | gentoo-26ab76702c63b9b58fcc1e2a7197a0927396c5dc.tar.gz gentoo-26ab76702c63b9b58fcc1e2a7197a0927396c5dc.tar.bz2 gentoo-26ab76702c63b9b58fcc1e2a7197a0927396c5dc.zip |
xfce-base/xfce4-panel: Make GTK+2 optional
Closes: https://bugs.gentoo.org/692714
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'xfce-base/xfce4-panel')
-rw-r--r-- | xfce-base/xfce4-panel/metadata.xml | 3 | ||||
-rw-r--r-- | xfce-base/xfce4-panel/xfce4-panel-4.14.0.ebuild | 9 |
2 files changed, 7 insertions, 5 deletions
diff --git a/xfce-base/xfce4-panel/metadata.xml b/xfce-base/xfce4-panel/metadata.xml index 359901b31db4..b307dd980e01 100644 --- a/xfce-base/xfce4-panel/metadata.xml +++ b/xfce-base/xfce4-panel/metadata.xml @@ -5,4 +5,7 @@ <email>xfce@gentoo.org</email> <name>XFCE Team</name> </maintainer> + <use> + <flag name='gtk2'>Enable GTK+2 plugin support.</flag> + </use> </pkgmetadata> diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.14.0.ebuild b/xfce-base/xfce4-panel/xfce4-panel-4.14.0.ebuild index 0bba6eebc237..0598e0545e8d 100644 --- a/xfce-base/xfce4-panel/xfce4-panel-4.14.0.ebuild +++ b/xfce-base/xfce4-panel/xfce4-panel-4.14.0.ebuild @@ -12,12 +12,12 @@ SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2" LICENSE="GPL-2+ LGPL-2.1+" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris" -IUSE="introspection vala" +IUSE="+gtk2 introspection vala" REQUIRED_USE="vala? ( introspection )" +RESTRICT="!gtk2? ( test )" RDEPEND=">=dev-libs/glib-2.42 >=x11-libs/cairo-1 - >=x11-libs/gtk+-2.20:2 >=x11-libs/gtk+-3.22:3[introspection?] x11-libs/libX11 x11-libs/libwnck:3 @@ -26,6 +26,7 @@ RDEPEND=">=dev-libs/glib-2.42 >=xfce-base/libxfce4ui-4.13:= >=xfce-base/libxfce4util-4.13:=[introspection?] >=xfce-base/xfconf-4.13:= + gtk2? ( >=x11-libs/gtk+-2.20:2 ) introspection? ( dev-libs/gobject-introspection:= )" DEPEND="${RDEPEND} vala? ( $(vala_depend) ) @@ -42,11 +43,9 @@ src_prepare() { src_configure() { local myconf=( + $(use_enable gtk2) $(use_enable introspection) $(use_enable vala) - - # enable GTK+2 compatibility - --enable-gtk2 ) use vala && vala_src_prepare |