From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3798D1396D0 for ; Tue, 22 Aug 2017 20:15:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 913061FC054; Tue, 22 Aug 2017 20:15:14 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 63A421FC054 for ; Tue, 22 Aug 2017 20:15:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 63D3B341CAD for ; Tue, 22 Aug 2017 20:15:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 401B57EF9 for ; Tue, 22 Aug 2017 20:15:10 +0000 (UTC) From: "Craig Andrews" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Craig Andrews" Message-ID: <1503432105.8aefce0d6bf9f411298063a200654b39115500b3.candrews@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/waylandpp/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-cpp/waylandpp/Manifest dev-cpp/waylandpp/metadata.xml dev-cpp/waylandpp/waylandpp-0.1.0.ebuild dev-cpp/waylandpp/waylandpp-9999.ebuild X-VCS-Directories: dev-cpp/waylandpp/ X-VCS-Committer: candrews X-VCS-Committer-Name: Craig Andrews X-VCS-Revision: 8aefce0d6bf9f411298063a200654b39115500b3 X-VCS-Branch: master Date: Tue, 22 Aug 2017 20:15:10 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 948d126c-ad6f-43c9-b330-cdc4d00d7f4b X-Archives-Hash: 65b20842ec660be79c152d1fb7ec005b commit: 8aefce0d6bf9f411298063a200654b39115500b3 Author: Craig Andrews gentoo org> AuthorDate: Tue Aug 22 02:55:55 2017 +0000 Commit: Craig Andrews gentoo org> CommitDate: Tue Aug 22 20:01:45 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8aefce0d dev-cpp/waylandpp: Wayland C++ bindings Gentoo-bug: 628562 Package-Manager: Portage-2.3.8, Repoman-2.3.3 Closes: #5504 dev-cpp/waylandpp/Manifest | 1 + dev-cpp/waylandpp/metadata.xml | 12 ++++++++ dev-cpp/waylandpp/waylandpp-0.1.0.ebuild | 51 ++++++++++++++++++++++++++++++++ dev-cpp/waylandpp/waylandpp-9999.ebuild | 51 ++++++++++++++++++++++++++++++++ 4 files changed, 115 insertions(+) diff --git a/dev-cpp/waylandpp/Manifest b/dev-cpp/waylandpp/Manifest new file mode 100644 index 00000000000..49e18e0bbbb --- /dev/null +++ b/dev-cpp/waylandpp/Manifest @@ -0,0 +1 @@ +DIST waylandpp-0.1.0.tar.gz 166427 SHA256 117df357cbd1f272737b6379e05925b38bad41bafda02761017530053fa950e7 SHA512 e0521ea99eeb7ae196ed9c8759e10d28406c5b99534b52ac51845cdd9c384ff820e4cc1fec65c537a0d071046746884793da122c72f6e75e7df4bca089d19eca WHIRLPOOL 1d589fbe1884dbd38547a0957b07533e3029cca7453618375227d87afa90fa36eded62283bf302139920860c90b250aeaca9b48e0f8098b0f9f8bbaffa889067 diff --git a/dev-cpp/waylandpp/metadata.xml b/dev-cpp/waylandpp/metadata.xml new file mode 100644 index 00000000000..05f0a64835c --- /dev/null +++ b/dev-cpp/waylandpp/metadata.xml @@ -0,0 +1,12 @@ + + + + + candrews@gentoo.org + Craig Andrews + + + https://github.com/NilsBrause/waylandpp/issues + NilsBrause/waylandpp + + diff --git a/dev-cpp/waylandpp/waylandpp-0.1.0.ebuild b/dev-cpp/waylandpp/waylandpp-0.1.0.ebuild new file mode 100644 index 00000000000..a85f301bf9f --- /dev/null +++ b/dev-cpp/waylandpp/waylandpp-0.1.0.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit multilib scons-utils toolchain-funcs versionator + +DESCRIPTION="Wayland C++ bindings" +HOMEPAGE="https://github.com/NilsBrause/waylandpp" + +LICENSE="MIT" +IUSE="doc" +SLOT="0/$(get_major_version)" + +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 ~x86" + S="${WORKDIR}/waylandpp-${PV}" +fi + +COMMON_DEPEND=" + >=dev-libs/wayland-1.11.0 + media-libs/mesa[wayland] +" +DEPEND="${COMMON_DEPEND} + doc? ( + app-doc/doxygen + media-gfx/graphviz + ) + " +RDEPEND="${COMMON_DEPEND}" + +src_compile() { + CC="$(tc-getCXX)" PKG_CONFIG="$(tc-getPKG_CONFIG)" escons + if use doc; then + doxygen || die "error making docs" + fi +} + +src_install() { + PREFIX="${D%/}/usr" scons install + # fix multilib-strict QA failures + mv "${ED%/}"/usr/{lib,$(get_libdir)} || die + if use doc; then + doman doc/man/man3/*.3 + HTML_DOCS="doc/html" einstalldocs + fi +} diff --git a/dev-cpp/waylandpp/waylandpp-9999.ebuild b/dev-cpp/waylandpp/waylandpp-9999.ebuild new file mode 100644 index 00000000000..a85f301bf9f --- /dev/null +++ b/dev-cpp/waylandpp/waylandpp-9999.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit multilib scons-utils toolchain-funcs versionator + +DESCRIPTION="Wayland C++ bindings" +HOMEPAGE="https://github.com/NilsBrause/waylandpp" + +LICENSE="MIT" +IUSE="doc" +SLOT="0/$(get_major_version)" + +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 ~x86" + S="${WORKDIR}/waylandpp-${PV}" +fi + +COMMON_DEPEND=" + >=dev-libs/wayland-1.11.0 + media-libs/mesa[wayland] +" +DEPEND="${COMMON_DEPEND} + doc? ( + app-doc/doxygen + media-gfx/graphviz + ) + " +RDEPEND="${COMMON_DEPEND}" + +src_compile() { + CC="$(tc-getCXX)" PKG_CONFIG="$(tc-getPKG_CONFIG)" escons + if use doc; then + doxygen || die "error making docs" + fi +} + +src_install() { + PREFIX="${D%/}/usr" scons install + # fix multilib-strict QA failures + mv "${ED%/}"/usr/{lib,$(get_libdir)} || die + if use doc; then + doman doc/man/man3/*.3 + HTML_DOCS="doc/html" einstalldocs + fi +}