diff options
| author | Alexey Sokolov <alexey+gentoo@asokolov.org> | 2025-05-04 14:40:19 +0100 |
|---|---|---|
| committer | Sam James <sam@gentoo.org> | 2025-05-22 01:35:01 +0100 |
| commit | 1738f9c592b23580b17152c1aec889d2d3c9f80c (patch) | |
| tree | 4ddd5fe974c06d608d23671248b56690d2e72fd8 | |
| parent | 35b04648a390ebc6b10218d9db0dcfd97bf16078 (diff) | |
| download | gentoo-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>
| -rw-r--r-- | dev-cpp/waylandpp/files/waylandpp-1.0.0-cmake4.patch | 13 | ||||
| -rw-r--r-- | dev-cpp/waylandpp/waylandpp-1.0.0-r2.ebuild | 46 |
2 files changed, 59 insertions, 0 deletions
diff --git a/dev-cpp/waylandpp/files/waylandpp-1.0.0-cmake4.patch b/dev-cpp/waylandpp/files/waylandpp-1.0.0-cmake4.patch new file mode 100644 index 000000000000..994fc2f45668 --- /dev/null +++ b/dev-cpp/waylandpp/files/waylandpp-1.0.0-cmake4.patch @@ -0,0 +1,13 @@ +https://github.com/NilsBrause/waylandpp/pull/85 + +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -21,7 +21,7 @@ + # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +-cmake_minimum_required(VERSION 3.4) ++cmake_minimum_required(VERSION 3.4...4.0) + project(waylandpp VERSION 1.0.0 LANGUAGES CXX) + + # packages 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 +} |
