public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sci-libs/pcl: metadata.xml ChangeLog pcl-1.7.2.ebuild pcl-9999.ebuild
@ 2014-12-08 11:53 Alexis Ballier (aballier)
  0 siblings, 0 replies; 2+ messages in thread
From: Alexis Ballier (aballier) @ 2014-12-08 11:53 UTC (permalink / raw
  To: gentoo-commits

aballier    14/12/08 11:53:13

  Added:                metadata.xml ChangeLog pcl-1.7.2.ebuild
                        pcl-9999.ebuild
  Log:
  initial import, ebuild by me
  
  Signed-off-by: aballier@gentoo.org
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 160F534A)

Revision  Changes    Path
1.1                  sci-libs/pcl/metadata.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/pcl/metadata.xml?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/pcl/metadata.xml?rev=1.1&content-type=text/plain

Index: metadata.xml
===================================================================
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>aballier@gentoo.org</email>
<name>Alexis Ballier</name>
</maintainer>
<use>
  <flag name="cuda">Adds support for NVIDIA CUDA.</flag>
  <flag name="pcap">Adds pcap file capabilities in some drivers.</flag>
  <flag name="qhull">Adds convex-hull operation support via <pkg>media-libs/qhull</pkg>.</flag>
  <flag name="vtk">Adds support for VTK-Visualizations.</flag>
  <flag name="tutorials">Builds and installs tutorials.</flag>
</use>
<longdescription lang="en">
	The Point Cloud Library (PCL) is a standalone, large scale, open project for 2D/3D image and point cloud processing.
</longdescription>
</pkgmetadata>



1.1                  sci-libs/pcl/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/pcl/ChangeLog?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/pcl/ChangeLog?rev=1.1&content-type=text/plain

Index: ChangeLog
===================================================================
# ChangeLog for sci-libs/pcl
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/pcl/ChangeLog,v 1.1 2014/12/08 11:53:13 aballier Exp $

*pcl-9999 (08 Dec 2014)
*pcl-1.7.2 (08 Dec 2014)

  08 Dec 2014; Alexis Ballier <aballier@gentoo.org> +pcl-1.7.2.ebuild,
  +pcl-9999.ebuild, +files/nogl.patch, +metadata.xml:
  initial import, ebuild by me




1.1                  sci-libs/pcl/pcl-1.7.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/pcl/pcl-1.7.2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/pcl/pcl-1.7.2.ebuild?rev=1.1&content-type=text/plain

Index: pcl-1.7.2.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/pcl/pcl-1.7.2.ebuild,v 1.1 2014/12/08 11:53:13 aballier Exp $

EAPI=5

SCM=""
if [ "${PV#9999}" != "${PV}" ] ; then
	SCM="git-r3"
	EGIT_REPO_URI="https://github.com/PointCloudLibrary/pcl"
fi

inherit ${SCM} cmake-utils multilib

if [ "${PV#9999}" != "${PV}" ] ; then
	KEYWORDS=""
	SRC_URI=""
else
	KEYWORDS="~amd64"
	SRC_URI="http://github.com/PointCloudLibrary/pcl/archive/${P}.tar.gz"
	S="${WORKDIR}/${PN}-${P}"
fi

HOMEPAGE="http://pointclouds.org/"
DESCRIPTION="2D/3D image and point cloud processing"
LICENSE="BSD"
SLOT="0"
IUSE="cuda doc opengl pcap png +qhull qt4 usb vtk sse test tutorials"

RDEPEND="
	>=sci-libs/flann-1.7.1
	dev-libs/boost:=[threads]
	dev-cpp/eigen:3
	opengl? ( virtual/opengl media-libs/freeglut )
	pcap? ( net-libs/libpcap )
	png? ( media-libs/libpng:0= )
	qhull? ( media-libs/qhull )
	qt4? ( dev-qt/qtgui:4 )
	usb? ( virtual/libusb:1 )
	vtk? ( >=sci-libs/vtk-5.6[imaging,rendering,qt4?] )
	cuda? ( >=dev-util/nvidia-cuda-toolkit-4 )
"
DEPEND="${RDEPEND}
	!!dev-cpp/metslib
	doc? ( app-doc/doxygen )
	tutorials? ( dev-python/sphinx dev-python/sphinxcontrib-doxylink )
	test? ( >=dev-cpp/gtest-1.6.0 )
	virtual/pkgconfig"

REQUIRED_USE="
	tutorials? ( doc )
"

PATCHES=(
	"${FILESDIR}/nogl.patch"
)

src_configure() {
	local mycmakeargs=(
		"-DLIB_INSTALL_DIR=$(get_libdir)"
		"-DWITH_CUDA=$(usex cuda TRUE FALSE)"
		"-DWITH_LIBUSB=$(usex usb TRUE FALSE)"
		"-DWITH_OPENGL=$(usex opengl TRUE FALSE)"
		"-DWITH_PNG=$(usex png TRUE FALSE)"
		"-DWITH_QHULL=$(usex qhull TRUE FALSE)"
		"-DWITH_QT=$(usex qt4 TRUE FALSE)"
		"-DWITH_VTK=$(usex vtk TRUE FALSE)"
		"-DWITH_PCAP=$(usex pcap TRUE FALSE)"
		"-DPCL_ENABLE_SSE=$(usex sse TRUE FALSE)"
		"-DWITH_DOCS=$(usex doc TRUE FALSE)"
		"-DWITH_TUTORIALS=$(usex tutorials TRUE FALSE)"
		"-DBUILD_TESTS=$(usex test TRUE FALSE)"
	)
	cmake-utils_src_configure
}



1.1                  sci-libs/pcl/pcl-9999.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/pcl/pcl-9999.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/pcl/pcl-9999.ebuild?rev=1.1&content-type=text/plain

Index: pcl-9999.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/pcl/pcl-9999.ebuild,v 1.1 2014/12/08 11:53:13 aballier Exp $

EAPI=5

SCM=""
if [ "${PV#9999}" != "${PV}" ] ; then
	SCM="git-r3"
	EGIT_REPO_URI="https://github.com/PointCloudLibrary/pcl"
fi

inherit ${SCM} cmake-utils multilib

if [ "${PV#9999}" != "${PV}" ] ; then
	KEYWORDS=""
	SRC_URI=""
else
	KEYWORDS="~amd64"
	SRC_URI="http://github.com/PointCloudLibrary/pcl/archive/${P}.tar.gz"
	S="${WORKDIR}/${PN}-${P}"
fi

HOMEPAGE="http://pointclouds.org/"
DESCRIPTION="2D/3D image and point cloud processing"
LICENSE="BSD"
SLOT="0"
IUSE="cuda doc opengl pcap png +qhull qt4 usb vtk sse test tutorials"

RDEPEND="
	>=sci-libs/flann-1.7.1
	dev-libs/boost:=[threads]
	dev-cpp/eigen:3
	opengl? ( virtual/opengl media-libs/freeglut )
	pcap? ( net-libs/libpcap )
	png? ( media-libs/libpng:0= )
	qhull? ( media-libs/qhull )
	qt4? ( dev-qt/qtgui:4 )
	usb? ( virtual/libusb:1 )
	vtk? ( >=sci-libs/vtk-5.6[imaging,rendering,qt4?] )
	cuda? ( >=dev-util/nvidia-cuda-toolkit-4 )
"
DEPEND="${RDEPEND}
	!!dev-cpp/metslib
	doc? ( app-doc/doxygen )
	tutorials? ( dev-python/sphinx dev-python/sphinxcontrib-doxylink )
	test? ( >=dev-cpp/gtest-1.6.0 )
	virtual/pkgconfig"

REQUIRED_USE="
	tutorials? ( doc )
"

src_configure() {
	local mycmakeargs=(
		"-DLIB_INSTALL_DIR=$(get_libdir)"
		"-DWITH_CUDA=$(usex cuda TRUE FALSE)"
		"-DWITH_LIBUSB=$(usex usb TRUE FALSE)"
		"-DWITH_OPENGL=$(usex opengl TRUE FALSE)"
		"-DWITH_PNG=$(usex png TRUE FALSE)"
		"-DWITH_QHULL=$(usex qhull TRUE FALSE)"
		"-DWITH_QT=$(usex qt4 TRUE FALSE)"
		"-DWITH_VTK=$(usex vtk TRUE FALSE)"
		"-DWITH_PCAP=$(usex pcap TRUE FALSE)"
		"-DPCL_ENABLE_SSE=$(usex sse TRUE FALSE)"
		"-DWITH_DOCS=$(usex doc TRUE FALSE)"
		"-DWITH_TUTORIALS=$(usex tutorials TRUE FALSE)"
		"-DBUILD_TESTS=$(usex test TRUE FALSE)"
	)
	cmake-utils_src_configure
}





^ permalink raw reply	[flat|nested] 2+ messages in thread

* [gentoo-commits] gentoo-x86 commit in sci-libs/pcl: metadata.xml ChangeLog pcl-1.7.2.ebuild pcl-9999.ebuild
@ 2014-12-19 14:26 Alexis Ballier (aballier)
  0 siblings, 0 replies; 2+ messages in thread
From: Alexis Ballier (aballier) @ 2014-12-19 14:26 UTC (permalink / raw
  To: gentoo-commits

aballier    14/12/19 14:26:07

  Modified:             metadata.xml ChangeLog pcl-1.7.2.ebuild
                        pcl-9999.ebuild
  Log:
  add openni/openni2 useflags
  
  Signed-off-by: aballier@gentoo.org
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 160F534A)

Revision  Changes    Path
1.2                  sci-libs/pcl/metadata.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/pcl/metadata.xml?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/pcl/metadata.xml?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/pcl/metadata.xml?r1=1.1&r2=1.2

Index: metadata.xml
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/pcl/metadata.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- metadata.xml	8 Dec 2014 11:53:13 -0000	1.1
+++ metadata.xml	19 Dec 2014 14:26:07 -0000	1.2
@@ -7,6 +7,8 @@
 </maintainer>
 <use>
   <flag name="cuda">Adds support for NVIDIA CUDA.</flag>
+  <flag name="openni">Adds support for Kinect-like 3D sensors devices with <pkg>dev-libs/OpenNI</pkg>.</flag>
+  <flag name="openni2">Adds support for Kinect-like 3D sensors devices with <pkg>dev-libs/OpenNI2</pkg> (should be preferred over openni).</flag>
   <flag name="pcap">Adds pcap file capabilities in some drivers.</flag>
   <flag name="qhull">Adds convex-hull operation support via <pkg>media-libs/qhull</pkg>.</flag>
   <flag name="vtk">Adds support for VTK-Visualizations.</flag>



1.3                  sci-libs/pcl/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/pcl/ChangeLog?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/pcl/ChangeLog?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/pcl/ChangeLog?r1=1.2&r2=1.3

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/pcl/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog	8 Dec 2014 15:29:09 -0000	1.2
+++ ChangeLog	19 Dec 2014 14:26:07 -0000	1.3
@@ -1,6 +1,10 @@
 # ChangeLog for sci-libs/pcl
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/pcl/ChangeLog,v 1.2 2014/12/08 15:29:09 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/pcl/ChangeLog,v 1.3 2014/12/19 14:26:07 aballier Exp $
+
+  19 Dec 2014; Alexis Ballier <aballier@gentoo.org> pcl-1.7.2.ebuild,
+  pcl-9999.ebuild, metadata.xml:
+  add openni/openni2 useflags
 
   08 Dec 2014; Alexis Ballier <aballier@gentoo.org> pcl-1.7.2.ebuild,
   pcl-9999.ebuild:



1.3                  sci-libs/pcl/pcl-1.7.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/pcl/pcl-1.7.2.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/pcl/pcl-1.7.2.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/pcl/pcl-1.7.2.ebuild?r1=1.2&r2=1.3

Index: pcl-1.7.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/pcl/pcl-1.7.2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- pcl-1.7.2.ebuild	8 Dec 2014 15:29:09 -0000	1.2
+++ pcl-1.7.2.ebuild	19 Dec 2014 14:26:07 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/pcl/pcl-1.7.2.ebuild,v 1.2 2014/12/08 15:29:09 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/pcl/pcl-1.7.2.ebuild,v 1.3 2014/12/19 14:26:07 aballier Exp $
 
 EAPI=5
 
@@ -25,13 +25,15 @@
 DESCRIPTION="2D/3D image and point cloud processing"
 LICENSE="BSD"
 SLOT="0"
-IUSE="cuda doc opengl pcap png +qhull qt4 usb vtk sse test tutorials"
+IUSE="cuda doc opengl openni openni2 pcap png +qhull qt4 usb vtk sse test tutorials"
 
 RDEPEND="
 	>=sci-libs/flann-1.7.1
 	dev-libs/boost:=[threads]
 	dev-cpp/eigen:3
 	opengl? ( virtual/opengl media-libs/freeglut )
+	openni? ( dev-libs/OpenNI )
+	openni2? ( dev-libs/OpenNI2 )
 	pcap? ( net-libs/libpcap )
 	png? ( media-libs/libpng:0= )
 	qhull? ( media-libs/qhull )
@@ -66,6 +68,10 @@
 		"-DWITH_QT=$(usex qt4 TRUE FALSE)"
 		"-DWITH_VTK=$(usex vtk TRUE FALSE)"
 		"-DWITH_PCAP=$(usex pcap TRUE FALSE)"
+		"-DWITH_OPENNI=$(usex openni TRUE FALSE)"
+		"-DBUILD_OPENNI=$(usex openni TRUE FALSE)"
+		"-DWITH_OPENNI2=$(usex openni2 TRUE FALSE)"
+		"-DBUILD_OPENNI2=$(usex openni2 TRUE FALSE)"
 		"-DPCL_ENABLE_SSE=$(usex sse TRUE FALSE)"
 		"-DWITH_DOCS=$(usex doc TRUE FALSE)"
 		"-DWITH_TUTORIALS=$(usex tutorials TRUE FALSE)"



1.3                  sci-libs/pcl/pcl-9999.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/pcl/pcl-9999.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/pcl/pcl-9999.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/pcl/pcl-9999.ebuild?r1=1.2&r2=1.3

Index: pcl-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/pcl/pcl-9999.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- pcl-9999.ebuild	8 Dec 2014 15:29:09 -0000	1.2
+++ pcl-9999.ebuild	19 Dec 2014 14:26:07 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/pcl/pcl-9999.ebuild,v 1.2 2014/12/08 15:29:09 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/pcl/pcl-9999.ebuild,v 1.3 2014/12/19 14:26:07 aballier Exp $
 
 EAPI=5
 
@@ -25,13 +25,15 @@
 DESCRIPTION="2D/3D image and point cloud processing"
 LICENSE="BSD"
 SLOT="0"
-IUSE="cuda doc opengl pcap png +qhull qt4 usb vtk sse test tutorials"
+IUSE="cuda doc opengl openni openni2 pcap png +qhull qt4 usb vtk sse test tutorials"
 
 RDEPEND="
 	>=sci-libs/flann-1.7.1
 	dev-libs/boost:=[threads]
 	dev-cpp/eigen:3
 	opengl? ( virtual/opengl media-libs/freeglut )
+	openni? ( dev-libs/OpenNI )
+	openni2? ( dev-libs/OpenNI2 )
 	pcap? ( net-libs/libpcap )
 	png? ( media-libs/libpng:0= )
 	qhull? ( media-libs/qhull )
@@ -62,6 +64,10 @@
 		"-DWITH_QT=$(usex qt4 TRUE FALSE)"
 		"-DWITH_VTK=$(usex vtk TRUE FALSE)"
 		"-DWITH_PCAP=$(usex pcap TRUE FALSE)"
+		"-DWITH_OPENNI=$(usex openni TRUE FALSE)"
+		"-DBUILD_OPENNI=$(usex openni TRUE FALSE)"
+		"-DWITH_OPENNI2=$(usex openni2 TRUE FALSE)"
+		"-DBUILD_OPENNI2=$(usex openni2 TRUE FALSE)"
 		"-DPCL_ENABLE_SSE=$(usex sse TRUE FALSE)"
 		"-DWITH_DOCS=$(usex doc TRUE FALSE)"
 		"-DWITH_TUTORIALS=$(usex tutorials TRUE FALSE)"





^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2014-12-19 14:26 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-19 14:26 [gentoo-commits] gentoo-x86 commit in sci-libs/pcl: metadata.xml ChangeLog pcl-1.7.2.ebuild pcl-9999.ebuild Alexis Ballier (aballier)
  -- strict thread matches above, loose matches on Subject: below --
2014-12-08 11:53 Alexis Ballier (aballier)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox