From: "Haelwenn Monnier" <contact@hacktivis.me>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:dev commit in: media-libs/openxr-loader/
Date: Tue, 20 Jul 2021 22:00:44 +0000 (UTC) [thread overview]
Message-ID: <1626818378.57b8fc54b321503000a69096876ef30cf91343a0.lanodan@gentoo> (raw)
commit: 57b8fc54b321503000a69096876ef30cf91343a0
Author: Haelwenn (lanodan) Monnier <contact <AT> hacktivis <DOT> me>
AuthorDate: Tue Jul 20 21:46:02 2021 +0000
Commit: Haelwenn Monnier <contact <AT> hacktivis <DOT> me>
CommitDate: Tue Jul 20 21:59:38 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=57b8fc54
media-libs/openxr-loader: New Package
Signed-off-by: Haelwenn (lanodan) Monnier <contact <AT> hacktivis.me>
media-libs/openxr-loader/Manifest | 1 +
media-libs/openxr-loader/metadata.xml | 11 +++++
.../openxr-loader/openxr-loader-1.0.17.ebuild | 53 ++++++++++++++++++++++
media-libs/openxr-loader/openxr-loader-9999.ebuild | 53 ++++++++++++++++++++++
4 files changed, 118 insertions(+)
diff --git a/media-libs/openxr-loader/Manifest b/media-libs/openxr-loader/Manifest
new file mode 100644
index 000000000..09224f9ea
--- /dev/null
+++ b/media-libs/openxr-loader/Manifest
@@ -0,0 +1 @@
+DIST openxr-loader-1.0.17.tar.gz 771547 BLAKE2B 3fbc055e1b8a80b2f344fe8b11a67a9c9ad26136b25add788b09f914849ab2a3fa5a8e47fde13d8755a1f2be8f9b28603e4b1526a96ee945cd581655995a9204 SHA512 e8db096d01cf2802dd2bc48aa82d6002c705266bff74d2e86ee6ab4afafcbe4b1c7da720cf7a18750b5fdc153fef89d967c9a807a77d7d06d70fc64e5d792acf
diff --git a/media-libs/openxr-loader/metadata.xml b/media-libs/openxr-loader/metadata.xml
new file mode 100644
index 000000000..d14186a26
--- /dev/null
+++ b/media-libs/openxr-loader/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>contact@hacktivis.me</email>
+ <name>Haelwenn (lanodan) Monnier</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="github">KhronosGroup/OpenXR-SDK</remote-id>
+ </upstream>
+</pkgmetadata>
diff --git a/media-libs/openxr-loader/openxr-loader-1.0.17.ebuild b/media-libs/openxr-loader/openxr-loader-1.0.17.ebuild
new file mode 100644
index 000000000..044319086
--- /dev/null
+++ b/media-libs/openxr-loader/openxr-loader-1.0.17.ebuild
@@ -0,0 +1,53 @@
+# Copyright 2020-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_PN=OpenXR-SDK
+inherit cmake
+
+if [[ ${PV} == *9999* ]]; then
+ EGIT_REPO_URI="https://github.com/KhronosGroup/${MY_PN}.git"
+ inherit git-r3
+else
+ SRC_URI="https://github.com/KhronosGroup/${MY_PN}/archive/release-${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64"
+ S="${WORKDIR}"/${MY_PN}-release-${PV}
+fi
+
+DESCRIPTION="OpenXR loader"
+HOMEPAGE="https://github.com/KhronosGroup/OpenXR-SDK"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+
+IUSE="+wayland +X"
+
+BDEPEND=">=dev-util/cmake-3.10.2"
+DEPEND="
+ media-libs/vulkan-loader
+ media-libs/mesa
+ dev-libs/jsoncpp:=
+ wayland? (
+ dev-libs/wayland
+ dev-libs/wayland-protocols
+ dev-util/wayland-scanner
+ )
+ X? (
+ x11-libs/libxcb
+ x11-libs/xcb-util-keysyms
+ x11-libs/libXrandr
+ x11-libs/libXxf86vm
+ )
+"
+
+src_configure() {
+ local mycmakeargs=(
+ -DBUILD_WITH_SYSTEM_JSONCPP=ON
+ -DBUILD_WITH_XLIB_HEADERS=$(usex X)
+ -DBUILD_WITH_XCB_HEADERS=$(usex X)
+ -DBUILD_WITH_WAYLAND_HEADERS=$(usex wayland)
+ )
+
+ cmake_src_configure
+}
diff --git a/media-libs/openxr-loader/openxr-loader-9999.ebuild b/media-libs/openxr-loader/openxr-loader-9999.ebuild
new file mode 100644
index 000000000..10573f656
--- /dev/null
+++ b/media-libs/openxr-loader/openxr-loader-9999.ebuild
@@ -0,0 +1,53 @@
+# Copyright 2020-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_PN=OpenXR-SDK
+inherit cmake
+
+if [[ ${PV} == *9999* ]]; then
+ EGIT_REPO_URI="https://github.com/KhronosGroup/${MY_PN}.git"
+ inherit git-r3
+else
+ SRC_URI="https://github.com/KhronosGroup/${MY_PN}/archive/release-${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64"
+ S="${WORKDIR}"/${MY_PN}-${PV}
+fi
+
+DESCRIPTION="OpenXR loader"
+HOMEPAGE="https://github.com/KhronosGroup/OpenXR-SDK"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+
+IUSE="+wayland +X"
+
+BDEPEND=">=dev-util/cmake-3.10.2"
+DEPEND="
+ media-libs/vulkan-loader
+ media-libs/mesa
+ dev-libs/jsoncpp:=
+ wayland? (
+ dev-libs/wayland
+ dev-libs/wayland-protocols
+ dev-util/wayland-scanner
+ )
+ X? (
+ x11-libs/libxcb
+ x11-libs/xcb-util-keysyms
+ x11-libs/libXrandr
+ x11-libs/libXxf86vm
+ )
+"
+
+src_configure() {
+ local mycmakeargs=(
+ -DBUILD_WITH_SYSTEM_JSONCPP=ON
+ -DBUILD_WITH_XLIB_HEADERS=$(usex X)
+ -DBUILD_WITH_XCB_HEADERS=$(usex X)
+ -DBUILD_WITH_WAYLAND_HEADERS=$(usex wayland)
+ )
+
+ cmake_src_configure
+}
next reply other threads:[~2021-07-20 22:00 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-07-20 22:00 Haelwenn Monnier [this message]
-- strict thread matches above, loose matches on Subject: below --
2021-09-17 1:56 [gentoo-commits] repo/proj/guru:dev commit in: media-libs/openxr-loader/ Haelwenn Monnier
2021-09-17 1:56 Haelwenn Monnier
2021-10-28 20:58 Haelwenn Monnier
2021-10-28 20:58 Haelwenn Monnier
2023-11-23 18:50 Patrick Nicolas
2024-09-21 21:51 Haelwenn Monnier
2024-09-24 3:42 Haelwenn Monnier
2024-09-26 15:35 Haelwenn Monnier
2024-12-08 12:01 Patrick Nicolas
2024-12-08 12:01 Patrick Nicolas
2025-02-17 11:40 Haelwenn Monnier
2025-02-17 11:40 Haelwenn Monnier
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=1626818378.57b8fc54b321503000a69096876ef30cf91343a0.lanodan@gentoo \
--to=contact@hacktivis.me \
--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