mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-19 20:13:01 -04:00
gui-libs/scenefx: add 0.5
Signed-off-by: Saveliy Boyarchuk <sav.boyar@gmail.com>
This commit is contained in:
@@ -1 +1,2 @@
|
||||
DIST scenefx-0.4.1.tar.gz 92158 BLAKE2B f4d8cf0d531009bd849fa05d0b4b6940002e0f8e54c89ba4226b95885f796ab75fc879b649b0d75190169ea6080a65b1ce75aaa0da72c019303fa38c634a7af2 SHA512 e56d35fe8c1d3a31623aa62177957460592ac90dfcbc100539dd45d6aec51cc55cf0930f8b66e3c1d48b2380bf84245497ba204bc2e94da1da6a7399b0d14cfd
|
||||
DIST scenefx-0.5.tar.gz 109708 BLAKE2B e8b5f43373b4d36933deffa980fca86c89657615f0c0290fa6813b8635c06623a2065528900f93e0b3ea4353d415f0c0871f6f38f05cce94bda5cb075e574c2d SHA512 055511e88ba4036e6bb4a9f1c5f3a16c4841c518a57b98ad824dd0ecd53c251541a9801be9c760ebf78936400918a51c3b04300f22a47437077d444bc7bc2f08
|
||||
|
||||
56
gui-libs/scenefx/scenefx-0.5.ebuild
Normal file
56
gui-libs/scenefx/scenefx-0.5.ebuild
Normal file
@@ -0,0 +1,56 @@
|
||||
# Copyright 1999-2024 Gentoo Authors
|
||||
# Distributed under the terms of the GNU Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit meson
|
||||
|
||||
if [[ ${PV} == 9999 ]]; then
|
||||
EGIT_REPO_URI="https://github.com/wlrfx/scenefx"
|
||||
inherit git-r3
|
||||
else
|
||||
SRC_URI="https://github.com/wlrfx/scenefx/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
S="${WORKDIR}/${PN}-${PV}"
|
||||
KEYWORDS="~amd64 ~arm64"
|
||||
fi
|
||||
|
||||
DESCRIPTION="A replacement for the wlroots scene API with eye-candy effects."
|
||||
HOMEPAGE="https://github.com/wlrfx/scenefx"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
IUSE="examples X"
|
||||
|
||||
DEPEND="
|
||||
>=dev-libs/wayland-1.23.1
|
||||
>=x11-libs/libdrm-2.4.122
|
||||
media-libs/mesa[egl(+),gles2(+)]
|
||||
>=x11-libs/pixman-0.43.0
|
||||
media-libs/libglvnd
|
||||
x11-libs/libxkbcommon
|
||||
"
|
||||
|
||||
DEPEND+="
|
||||
>=gui-libs/wlroots-0.20:=[X?]
|
||||
<gui-libs/wlroots-0.21:=[X?]
|
||||
"
|
||||
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
BDEPEND="
|
||||
>=dev-libs/wayland-protocols-1.35
|
||||
>=dev-build/meson-0.59.0
|
||||
virtual/pkgconfig
|
||||
dev-build/ninja
|
||||
dev-util/wayland-scanner
|
||||
"
|
||||
|
||||
src_configure() {
|
||||
local emesonargs=(
|
||||
-Drenderers='gles2'
|
||||
$(meson_use examples)
|
||||
)
|
||||
|
||||
meson_src_configure
|
||||
}
|
||||
Reference in New Issue
Block a user