diff options
author | Matt Turner <mattst88@gentoo.org> | 2022-03-27 11:53:34 -0700 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2022-03-27 11:57:55 -0700 |
commit | 77d50f8824bbaabb273439f40950777072fa4a45 (patch) | |
tree | 59a237b9cf60903bc57867621b17cadfeedc0f28 /x11-wm/metacity/metacity-3.44.0.ebuild | |
parent | gnome-base/gnome-panel: Version bump to 3.44.0 (diff) | |
download | gentoo-77d50f8824bbaabb273439f40950777072fa4a45.tar.gz gentoo-77d50f8824bbaabb273439f40950777072fa4a45.tar.bz2 gentoo-77d50f8824bbaabb273439f40950777072fa4a45.zip |
x11-wm/metacity: Version bump to 3.44.0
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'x11-wm/metacity/metacity-3.44.0.ebuild')
-rw-r--r-- | x11-wm/metacity/metacity-3.44.0.ebuild | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/x11-wm/metacity/metacity-3.44.0.ebuild b/x11-wm/metacity/metacity-3.44.0.ebuild new file mode 100644 index 000000000000..842bd646d0ef --- /dev/null +++ b/x11-wm/metacity/metacity-3.44.0.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +inherit gnome2 + +DESCRIPTION="GNOME Flashback window manager" +HOMEPAGE="https://gitlab.gnome.org/GNOME/metacity/" + +LICENSE="GPL-2+" +SLOT="0" +IUSE="+libcanberra vulkan xinerama" +KEYWORDS="~amd64 ~riscv" + +# TODO: libgtop could be optional, but no knob +RDEPEND=" + >=dev-libs/glib-2.67.3:2 + >=x11-libs/gtk+-3.24.6:3[X] + >=x11-libs/pango-1.2.0 + >=x11-libs/libXcomposite-0.3 + >=gnome-base/gsettings-desktop-schemas-3.3.0 + x11-libs/libXfixes + x11-libs/libXrender + x11-libs/libXdamage + x11-libs/libXres + x11-libs/libXpresent + libcanberra? ( media-libs/libcanberra[gtk3] ) + >=x11-libs/startup-notification-0.7 + x11-libs/libXcursor + gnome-base/libgtop:2= + x11-libs/libX11 + xinerama? ( x11-libs/libXinerama ) + x11-libs/libXrandr + x11-libs/libXext + x11-libs/libICE + x11-libs/libSM + gnome-extra/zenity + vulkan? ( media-libs/vulkan-loader ) +" +DEPEND="${RDEPEND} + x11-base/xorg-proto +" +BDEPEND=" + vulkan? ( dev-util/vulkan-headers ) + dev-util/glib-utils + >=sys-devel/gettext-0.19.6 + virtual/pkgconfig +" # autoconf-archive for eautoreconf + +src_configure() { + gnome2_src_configure \ + --disable-static \ + $(use_enable libcanberra canberra) \ + $(use_enable xinerama) \ + $(use_enable vulkan) +} |