[libcamera-devel] [PATCH] package: gentoo: Add libcamera ebuild

Jacopo Mondi jacopo at jmondi.org
Thu May 2 15:02:01 CEST 2019


Add live .ebuild file for libcamera.

As the ebuild is used for building in ChromeOS with clang, temporarly
point it to a branch which includes a few patches to work-around
build-time issues with the clang9 provided libstdc++ implementation.

Signed-off-by: Jacopo Mondi <jacopo at jmondi.org>
---
 package/gentoo/libcamera-9999.ebuild | 34 ++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)
 create mode 100644 package/gentoo/libcamera-9999.ebuild

diff --git a/package/gentoo/libcamera-9999.ebuild b/package/gentoo/libcamera-9999.ebuild
new file mode 100644
index 000000000000..6d2e6fee67a4
--- /dev/null
+++ b/package/gentoo/libcamera-9999.ebuild
@@ -0,0 +1,34 @@
+# Copyright 2019 Google Inc.
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit git-r3 meson
+
+DESCRIPTION="Camera support library for Linux"
+HOMEPAGE="http://libcamera.org"
+EGIT_REPO_URI="git-libcamera-org at git.libcamera.org:libcamera/libcamera.git"
+EGIT_BRANCH="pinchartl/clang"
+
+LICENSE="LGPL-2.1+"
+SLOT="0"
+KEYWORDS="*"
+IUSE="udev"
+
+RDEPEND="udev? ( virtual/libudev )"
+DEPEND="${RDEPEND}"
+
+src_configure() {
+	local emesonargs=(
+		-Ddocumentation=false
+		-Dtests=false
+	)
+	meson_src_configure
+}
+
+src_compile() {
+	meson_src_compile
+}
+
+src_install() {
+	meson_src_install
+}
-- 
2.21.0



More information about the libcamera-devel mailing list