Compare commits

...

3 Commits

5 changed files with 128 additions and 2 deletions

View File

@ -0,0 +1,105 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
#SCM=""
#if [ "${PV#9999}" != "${PV}" ] ; then
SCM="git-r3"
# EGIT_REPO_URI="https://github.com/occipital/openni2"
# TODO: publish to github
EGIT_REPO_URI="/git/openni2.git"
EGIT_BRANCH="nedko"
#fi
inherit ${SCM} toolchain-funcs multilib java-pkg-opt-2 flag-o-matic
#if [ "${PV#9999}" != "${PV}" ] ; then
# SRC_URI=""
#else
# KEYWORDS="~amd64 ~arm"
# SRC_URI="https://github.com/occipital/OpenNI2/archive/${PV/_/-}.tar.gz -> ${P}.tar.gz"
# S="${WORKDIR}/${P/_/-}"
#fi
#KEYWORDS="arm64" "~arm"
DESCRIPTION="OpenNI2 SDK"
HOMEPAGE="https://structure.io/openni"
LICENSE="Apache-2.0"
SLOT="0"
IUSE="doc java neon opengl static-libs"
RDEPEND="
virtual/libusb:1
virtual/libudev
virtual/jpeg:0
opengl? ( media-libs/freeglut )
java? ( virtual/jre:1.8 )
"
DEPEND="${RDEPEND}
doc? ( app-doc/doxygen )
java? ( virtual/jdk:1.8 )"
# these are applied via git
#PATCHES=(
# "${FILESDIR}/jpeg.patch"
# "${FILESDIR}/rpath.patch"
# "${FILESDIR}/soname.patch"
#)
#src_prepare() {
# default
#
# rm -rf ThirdParty/LibJPEG
# for i in ThirdParty/PSCommon/BuildSystem/Platform.* ; do
# echo "" > ${i}
# done
#}
src_compile() {
use neon && export CFLAGS="${CFLAGS} -DXN_NEON"
emake \
ALLOW_WARNINGS=1 \
GLUT_SUPPORTED="$(usex opengl 1 0)" \
$(usex java "" ALL_WRAPPERS="") \
$(usex java "" JAVA_SAMPLES="")
if use doc ; then
cd "${S}/Source/Documentation"
doxygen || die
fi
}
src_install() {
dolib.so "${S}/Bin/"*Release/*.so
cp -a "${S}/Bin/"*Release/OpenNI2 "${ED}/usr/$(get_libdir)"
use static-libs && dolib.a "${S}/Bin/"*Release/*.a
insinto /usr/include/openni2
doins -r Include/*
# dobin "${S}/Bin/"*Release/{PS1080Console,PSLinkConsole,SimpleRead,EventBasedRead,MultipleStreamRead,MWClosestPointApp}
dobin "${S}/Bin/"*Release/{SimpleRead,EventBasedRead,MultipleStreamRead,MWClosestPointApp}
use opengl && dobin "${S}/Bin/"*Release/{NiViewer,SimpleViewer,MultiDepthViewer,ClosestPointViewer}
if use java ; then
java-pkg_dojar "${S}/Bin/"*Release/*.jar
echo "java -jar ${JAVA_PKG_JARDEST}/org.openni.Samples.SimpleViewer.jar" > org.openni.Samples.SimpleViewer
dobin org.openni.Samples.SimpleViewer
fi
dodoc CHANGES.txt NOTICE README.md ReleaseNotes.txt Source/Documentation/Text/*.txt
if use doc ; then
docinto html
dodoc -r "${S}/Source/Documentation/html/"*
fi
dodir /usr/$(get_libdir)/pkgconfig
sed \
-e "s/@libdir@/$(get_libdir)/" \
-e "s/@version@/${PV}/" \
"${FILESDIR}/libopenni2.pc.in" > "${ED}/usr/$(get_libdir)/pkgconfig/libopenni2.pc" || die
}

View File

@ -0,0 +1,10 @@
prefix=/usr
exec_prefix=${prefix}
libdir=${exec_prefix}/@libdir@
includedir=${prefix}/include/openni2
Name: OpenNI2
Description: A general purpose driver for all OpenNI cameras.
Version: @version@
Cflags: -I${includedir}
Libs: -L${libdir} -lOpenNI2 -L${libdir}/OpenNI2/Drivers -lDummyDevice -lOniFile -lPS1080

View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>nedko@nedk.org</email>
<name>Nedko Arnaudov</name>
</maintainer>
<upstream>
<!-- TODO: <remote-id type="github">nedko/OpenNI2</remote-id> -->
</upstream>
</pkgmetadata>

View File

@ -3,7 +3,7 @@
EAPI=7
PYTHON_COMPAT=( python3_{6,7,8,9} )
PYTHON_COMPAT=( python3_{6,7,8,9,10} )
PYTHON_REQ_USE='threads(+)'
inherit flag-o-matic python-single-r1 waf-utils

View File

@ -3,7 +3,7 @@
EAPI=7
PYTHON_COMPAT=( python3_{6,7,8,9} )
PYTHON_COMPAT=( python3_{6,7,8,9,10} )
PYTHON_REQ_USE='threads(+)'
inherit flag-o-matic python-single-r1 waf-utils