summaryrefslogtreecommitdiff
path: root/dev-cpp/waylandpp/waylandpp-1.0.0-r2.ebuild
diff options
context:
space:
mode:
authorAlexey Sokolov <alexey+gentoo@asokolov.org>2025-05-04 14:40:19 +0100
committerSam James <sam@gentoo.org>2025-05-22 01:35:01 +0100
commit1738f9c592b23580b17152c1aec889d2d3c9f80c (patch)
tree4ddd5fe974c06d608d23671248b56690d2e72fd8 /dev-cpp/waylandpp/waylandpp-1.0.0-r2.ebuild
parent35b04648a390ebc6b10218d9db0dcfd97bf16078 (diff)
downloadgentoo-1738f9c592b23580b17152c1aec889d2d3c9f80c.tar.gz
gentoo-1738f9c592b23580b17152c1aec889d2d3c9f80c.tar.bz2
gentoo-1738f9c592b23580b17152c1aec889d2d3c9f80c.zip
dev-cpp/waylandpp: fix build with cmake 4
Signed-off-by: Alexey Sokolov <alexey+gentoo@asokolov.org> Part-of: https://github.com/gentoo/gentoo/pull/41931 Closes: https://github.com/gentoo/gentoo/pull/41931 Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-cpp/waylandpp/waylandpp-1.0.0-r2.ebuild')
-rw-r--r--dev-cpp/waylandpp/waylandpp-1.0.0-r2.ebuild46
1 files changed, 46 insertions, 0 deletions
diff --git a/dev-cpp/waylandpp/waylandpp-1.0.0-r2.ebuild b/dev-cpp/waylandpp/waylandpp-1.0.0-r2.ebuild
new file mode 100644
index 000000000000..27ada98d76b3
--- /dev/null
+++ b/dev-cpp/waylandpp/waylandpp-1.0.0-r2.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Wayland C++ bindings"
+HOMEPAGE="https://github.com/NilsBrause/waylandpp"
+
+LICENSE="MIT"
+IUSE="doc"
+SLOT="0/$(ver_cut 1-2)"
+
+if [[ ${PV} == *9999 ]] ; then
+ EGIT_REPO_URI="https://github.com/NilsBrause/waylandpp.git"
+ inherit git-r3
+else
+ SRC_URI="https://github.com/NilsBrause/waylandpp/archive/${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
+fi
+
+RDEPEND="
+ >=dev-libs/wayland-1.11.0
+ media-libs/mesa[wayland]
+ >=dev-libs/pugixml-1.9-r1
+"
+DEPEND="${RDEPEND}
+ doc? (
+ app-text/doxygen
+ media-gfx/graphviz
+ )
+ "
+
+PATCHES=(
+ "${FILESDIR}"/${PN}-1.0.0-gcc-13.patch
+ "${FILESDIR}"/${PN}-1.0.0-cmake4.patch
+)
+
+src_configure() {
+ local mycmakeargs=(
+ -DBUILD_DOCUMENTATION=$(usex doc)
+ )
+
+ cmake_src_configure
+}