mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-17 14:49:30 -07:00
x11-wm/muffin: 5.2.1 version bump
Add wacom dependency and build flag. Bug: https://bugs.gentoo.org/863194 Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Matthew S. Turnbull <sparky@bluefang-logic.com> Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
committed by
Sam James
parent
d49ff59b4a
commit
1bcd9031dc
@@ -1 +1,2 @@
|
||||
DIST muffin-5.2.0.tar.gz 5197334 BLAKE2B e1c3ffc6f88ef4a6c5b2f3e03838448540baeeacce3029a039b2fae1804c79193f9ee0bb64d9187f4b2f7f902f47211dc5c5fb185e4f2fcf94513bfe2f0913bf SHA512 16d83d10e8ca4f0cc1cb679e8bf8bc0fd0788d656fa39470a921d848bcb0b158ef56bdd681a842e2ca41b40cb0121007d5e7f5f7f1570459b31fd21a78f96932
|
||||
DIST muffin-5.2.1.tar.gz 5197177 BLAKE2B 9703a2e2c5ef75c7d4da3e201b60033a7ba549d94106df33aa9b89d0029f52c06fb4be00dd4c4d996bb083a790635a8227c8ff729dc43940f70b679e1b46924d SHA512 fa88a88f77a1cb84c2159fac8ab3ed38ae1054d3a01bb100aa264e8b91493a744da6e83ffad9190f0f7a07bd26022fea12d13a60e213d57f289685fba1810eb6
|
||||
|
||||
108
x11-wm/muffin/muffin-5.2.1.ebuild
Normal file
108
x11-wm/muffin/muffin-5.2.1.ebuild
Normal file
@@ -0,0 +1,108 @@
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit autotools gnome2-utils xdg-utils virtualx
|
||||
|
||||
DESCRIPTION="Compositing window manager forked from Mutter for use with Cinnamon"
|
||||
HOMEPAGE="https://projects.linuxmint.com/cinnamon/ https://github.com/linuxmint/muffin"
|
||||
SRC_URI="https://github.com/linuxmint/muffin/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2+"
|
||||
SLOT="0"
|
||||
IUSE="input_devices_wacom +introspection test xinerama"
|
||||
KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
|
||||
|
||||
RDEPEND="
|
||||
>=dev-libs/glib-2.37.3:2[dbus]
|
||||
>=dev-libs/json-glib-1.0
|
||||
>=gnome-extra/cinnamon-desktop-5.2:0=
|
||||
gnome-extra/zenity
|
||||
>=media-libs/libcanberra-0.26[gtk3]
|
||||
media-libs/libglvnd
|
||||
>=x11-libs/cairo-1.14:=[X]
|
||||
x11-libs/gdk-pixbuf:2[introspection?]
|
||||
>=x11-libs/gtk+-3.9.12:3[X,introspection?]
|
||||
x11-libs/libICE
|
||||
x11-libs/libSM
|
||||
x11-libs/libX11
|
||||
x11-libs/libxcb
|
||||
>=x11-libs/libXcomposite-0.3
|
||||
x11-libs/libXcursor
|
||||
x11-libs/libXdamage
|
||||
x11-libs/libXext
|
||||
x11-libs/libXfixes
|
||||
>=x11-libs/libXi-1.6.0
|
||||
>=x11-libs/libxkbcommon-0.4.3[X]
|
||||
x11-libs/libxkbfile
|
||||
x11-libs/libXrandr
|
||||
x11-libs/libXrender
|
||||
>=x11-libs/pango-1.14.0[X,introspection?]
|
||||
>=x11-libs/startup-notification-0.7:=
|
||||
x11-misc/xkeyboard-config
|
||||
|
||||
input_devices_wacom? ( >=dev-libs/libwacom-0.7:= )
|
||||
introspection? ( >=dev-libs/gobject-introspection-0.9.12:= )
|
||||
xinerama? ( x11-libs/libXinerama )
|
||||
"
|
||||
DEPEND="
|
||||
${RDEPEND}
|
||||
x11-base/xorg-proto
|
||||
|
||||
test? ( app-text/docbook-xml-dtd:4.5 )
|
||||
"
|
||||
# needs gtk-doc, not just -am, for gtk-doc.make
|
||||
BDEPEND="
|
||||
dev-util/glib-utils
|
||||
dev-util/gtk-doc
|
||||
dev-util/gtk-doc-am
|
||||
>=dev-util/intltool-0.35
|
||||
sys-devel/gettext
|
||||
virtual/pkgconfig
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
eautoreconf
|
||||
gnome2_disable_deprecation_warning
|
||||
}
|
||||
|
||||
# Wayland is not supported upstream.
|
||||
src_configure() {
|
||||
econf \
|
||||
--disable-gtk-doc \
|
||||
--disable-maintainer-mode \
|
||||
--disable-schemas-compile \
|
||||
--enable-compile-warnings=minimum \
|
||||
--disable-static \
|
||||
--enable-shape \
|
||||
--enable-sm \
|
||||
--enable-startup-notification \
|
||||
--enable-xsync \
|
||||
--enable-verbose-mode \
|
||||
--with-libcanberra \
|
||||
$(use_with input_devices_wacom libwacom ) \
|
||||
$(use_enable introspection) \
|
||||
$(use_enable xinerama)
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
find "${D}" -name '*.la' -delete || die
|
||||
dodoc HACKING MAINTAINERS *.txt doc/*.txt
|
||||
}
|
||||
|
||||
src_test() {
|
||||
virtx default
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
xdg_desktop_database_update
|
||||
gnome2_schemas_update
|
||||
}
|
||||
|
||||
pkg_postrm() {
|
||||
xdg_desktop_database_update
|
||||
gnome2_schemas_update
|
||||
}
|
||||
Reference in New Issue
Block a user