diff options
| author | Craig Andrews <candrews@gentoo.org> | 2022-04-25 13:07:23 -0400 |
|---|---|---|
| committer | Craig Andrews <candrews@gentoo.org> | 2022-04-25 13:08:24 -0400 |
| commit | 6765bec6c39804471db6999ec350fb638cb7d3dd (patch) | |
| tree | 469ee1069bb52bc16f9abdc61a4e000003783457 /dev-cpp/waylandpp/waylandpp-1.0.0.ebuild | |
| parent | a1944cc02370b0a5f6a7badcc797491878d04b24 (diff) | |
| download | gentoo-6765bec6c39804471db6999ec350fb638cb7d3dd.tar.gz gentoo-6765bec6c39804471db6999ec350fb638cb7d3dd.tar.bz2 gentoo-6765bec6c39804471db6999ec350fb638cb7d3dd.zip | |
dev-cpp/waylandpp: 1.0.0 version bump
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Craig Andrews <candrews@gentoo.org>
Diffstat (limited to 'dev-cpp/waylandpp/waylandpp-1.0.0.ebuild')
| -rw-r--r-- | dev-cpp/waylandpp/waylandpp-1.0.0.ebuild | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/dev-cpp/waylandpp/waylandpp-1.0.0.ebuild b/dev-cpp/waylandpp/waylandpp-1.0.0.ebuild new file mode 100644 index 000000000000..ed2592fab36d --- /dev/null +++ b/dev-cpp/waylandpp/waylandpp-1.0.0.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2022 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 ~x86" +fi + +RDEPEND=" + >=dev-libs/wayland-1.11.0 + media-libs/mesa[wayland] + >=dev-libs/pugixml-1.9-r1 +" +DEPEND="${RDEPEND} + doc? ( + app-doc/doxygen + media-gfx/graphviz + ) + " + +src_configure() { + local mycmakeargs=( + -DBUILD_DOCUMENTATION=$(usex doc) + ) + + cmake_src_configure +} |
