mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-05 12:38:09 -07:00
sed -E '/dev-libs\/gobject-introspection(:=|\s|$|-[0-9]|\[)/ { s/(>=)?dev-libs\/gobject-introspection(-[0-9.r-]*)?/>=dev-libs\/gobject-introspection-1.82.0-r2/ }' */*/*.ebuild -i
+ manually going over to undo the false positives or if the version
requirement was higher.
Bug: https://bugs.gentoo.org/947058
See-Also: ae37e3f389
Signed-off-by: Alfred Wingate <parona@protonmail.com>
Part-of: https://github.com/gentoo/gentoo/pull/44336
Closes: https://github.com/gentoo/gentoo/pull/44336
Signed-off-by: Sam James <sam@gentoo.org>
61 lines
1.2 KiB
Bash
61 lines
1.2 KiB
Bash
# Copyright 2019-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit meson xdg
|
|
|
|
DESCRIPTION="Compiz like 3D wayland compositor"
|
|
HOMEPAGE="https://github.com/WayfireWM/wf-shell"
|
|
|
|
if [[ ${PV} == 9999 ]]; then
|
|
inherit git-r3
|
|
EGIT_REPO_URI="https://github.com/WayfireWM/wf-shell.git"
|
|
SLOT="0/0.11"
|
|
else
|
|
SRC_URI="https://github.com/WayfireWM/wf-shell/releases/download/v${PV}/${P}.tar.xz"
|
|
KEYWORDS="~amd64 ~arm64"
|
|
SLOT="0/$(ver_cut 1-2)"
|
|
fi
|
|
|
|
LICENSE="MIT"
|
|
IUSE="+pulseaudio"
|
|
|
|
# no tests
|
|
RESTRICT="test"
|
|
|
|
DEPEND="
|
|
dev-cpp/glibmm:2
|
|
dev-cpp/gtkmm:3.0[wayland]
|
|
dev-libs/glib:2
|
|
>=dev-libs/gobject-introspection-1.82.0-r2
|
|
dev-libs/libsigc++:2
|
|
dev-libs/libdbusmenu[gtk3]
|
|
>=gui-libs/gtk-layer-shell-0.6
|
|
dev-libs/wayland
|
|
>=gui-libs/wf-config-0.7.0:=
|
|
gui-wm/wayfire
|
|
x11-libs/cairo
|
|
x11-libs/gtk+:3[wayland]
|
|
pulseaudio? (
|
|
media-libs/alsa-lib
|
|
media-libs/libpulse
|
|
)
|
|
"
|
|
RDEPEND="${DEPEND}
|
|
gui-apps/wayland-logout
|
|
"
|
|
BDEPEND="
|
|
dev-libs/wayland-protocols
|
|
dev-util/wayland-scanner
|
|
virtual/pkgconfig
|
|
"
|
|
|
|
src_configure () {
|
|
local emesonargs=(
|
|
"$(meson_feature pulseaudio pulse)"
|
|
-Dwayland-logout=false
|
|
)
|
|
meson_src_configure
|
|
}
|