gentoo/gui-libs/aquamarine/aquamarine-0.9.2.ebuild
Martin Hanzlowsky b3582c34b0
gui-libs/aquamarine: add 0.9.2, update dependencies
Signed-off-by: Martin Hanzlowsky <martin.hanzlowskyg@gmail.com>
Signed-off-by: Yixun Lan <dlan@gentoo.org>
2025-08-06 23:43:14 +00:00

55 lines
1.1 KiB
Bash

# Copyright 2023-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="Aquamarine is a very light linux rendering backend library"
HOMEPAGE="https://github.com/hyprwm/aquamarine"
if [[ ${PV} == *9999* ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/hyprwm/${PN^}.git"
else
SRC_URI="https://github.com/hyprwm/${PN^}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
fi
LICENSE="BSD"
SLOT="0/$(ver_cut 1-2)"
# Upstream states that the simpleWindow test is broken, see bug 936653
RESTRICT="test"
RDEPEND="
>=dev-libs/libinput-1.26.1
dev-libs/wayland
>=dev-util/hyprwayland-scanner-0.4.5
>=gui-libs/hyprutils-0.8.0:=
media-libs/libdisplay-info:=
media-libs/libglvnd
media-libs/mesa[opengl]
sys-apps/hwdata
>=sys-auth/seatd-0.8.0
x11-libs/cairo
x11-libs/libdrm
x11-libs/libxkbcommon
x11-libs/pango
x11-libs/pixman
virtual/libudev
"
DEPEND="
${RDEPEND}
dev-libs/wayland-protocols
"
BDEPEND="
dev-util/wayland-scanner
virtual/pkgconfig
"
src_prepare() {
sed -i "/add_compile_options(-O3)/d" "${S}/CMakeLists.txt" || die
cmake_src_prepare
}