public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Craig Andrews" <candrews@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/waylandpp/
Date: Tue, 22 Aug 2017 20:15:10 +0000 (UTC)	[thread overview]
Message-ID: <1503432105.8aefce0d6bf9f411298063a200654b39115500b3.candrews@gentoo> (raw)

commit:     8aefce0d6bf9f411298063a200654b39115500b3
Author:     Craig Andrews <candrews <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 22 02:55:55 2017 +0000
Commit:     Craig Andrews <candrews <AT> gentoo <DOT> 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 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>candrews@gentoo.org</email>
+		<name>Craig Andrews</name>
+	</maintainer>
+	<upstream>
+		<bugs-to>https://github.com/NilsBrause/waylandpp/issues</bugs-to>
+		<remote-id type="github">NilsBrause/waylandpp</remote-id>
+	</upstream>
+</pkgmetadata>

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
+}


             reply	other threads:[~2017-08-22 20:15 UTC|newest]

Thread overview: 36+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-08-22 20:15 Craig Andrews [this message]
  -- strict thread matches above, loose matches on Subject: below --
2017-08-23 16:28 [gentoo-commits] repo/gentoo:master commit in: dev-cpp/waylandpp/ Craig Andrews
2017-08-28  2:52 Craig Andrews
2017-08-28  3:14 Craig Andrews
2017-09-07 13:11 Craig Andrews
2017-09-07 13:44 Craig Andrews
2017-10-17 14:41 Craig Andrews
2017-11-06 16:10 Craig Andrews
2017-11-27 15:51 Craig Andrews
2017-12-04 15:24 Craig Andrews
2018-01-31 17:42 Craig Andrews
2018-04-23 13:36 Craig Andrews
2018-11-27 21:55 Thomas Deutschmann
2018-12-13 15:29 Mikle Kolyada
2019-01-08 21:29 Craig Andrews
2019-02-24 20:53 Craig Andrews
2019-02-24 20:53 Craig Andrews
2019-10-03 20:08 Craig Andrews
2019-10-14 18:24 Craig Andrews
2020-06-29 20:01 Craig Andrews
2020-07-14 22:39 Sam James
2020-07-23 20:41 Sam James
2021-03-01 17:18 Thomas Deutschmann
2021-03-01 23:42 Sam James
2021-03-29 14:50 Sam James
2022-01-30 22:12 Craig Andrews
2022-04-14 13:23 Craig Andrews
2022-04-25 17:08 Craig Andrews
2022-08-27 11:45 Yixun Lan
2022-12-26  3:20 Sam James
2022-12-26  3:28 Sam James
2022-12-26  3:54 Sam James
2022-12-26 19:19 Andreas Sturmlechner
2023-10-23  1:44 Sam James
2023-10-23  1:44 Sam James
2023-10-23  3:21 Sam James

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1503432105.8aefce0d6bf9f411298063a200654b39115500b3.candrews@gentoo \
    --to=candrews@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox