commit:     1d9cc570e5698757d4ee6f2e59cec263220e4662
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Thu May 23 08:08:37 2024 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Thu May 23 08:08:37 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d9cc570

sci-libs/pcl: bump to 1.14.1

Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>

 sci-libs/pcl/Manifest          |   1 +
 sci-libs/pcl/pcl-1.14.1.ebuild | 116 +++++++++++++++++++++++++++++++++++++++++
 2 files changed, 117 insertions(+)

diff --git a/sci-libs/pcl/Manifest b/sci-libs/pcl/Manifest
index 62ffefd253d6..9b9b818237e4 100644
--- a/sci-libs/pcl/Manifest
+++ b/sci-libs/pcl/Manifest
@@ -1 +1,2 @@
 DIST pcl-1.14.0.tar.gz 68662907 BLAKE2B 
5e797666b2a6cd5b828b399592daaa78c3bcbc0968c1ec5dafe441717bb4067de4604cdab11d3317370c7f69a1b29db0cca6348e91697d16846ae44c1952ce3e
 SHA512 
0ea388d5f4ccdc1e5fcace6a1e1b90843be1a4ed2e1d37cc3c80d8abc0e868324d8f9da80513f1cb3f16738e00586f29cac151ce0d501645514f280aee8b1d7f
+DIST pcl-1.14.1.tar.gz 68672885 BLAKE2B 
207389d844ac2793f6f321504c05282ace2d8e51aaf0277c13fb11f5be22ac93f7e044f34fc2259aca7d7e34ae3b9b00287ee9df0d15f851f1f4b4bd651578c7
 SHA512 
8e2d2839fe73a955d49b9a72861de2becf2da9a0dc906bd10ab8a3518e270a2f1900d801922d02871d704f2ed380273d35c2d0e04d8da7e24a21eb351c43c00b

diff --git a/sci-libs/pcl/pcl-1.14.1.ebuild b/sci-libs/pcl/pcl-1.14.1.ebuild
new file mode 100644
index 000000000000..46645bec9842
--- /dev/null
+++ b/sci-libs/pcl/pcl-1.14.1.ebuild
@@ -0,0 +1,116 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake cuda
+
+if [[ ${PV} == *9999 ]]; then
+       inherit git-r3
+       EGIT_REPO_URI="https://github.com/PointCloudLibrary/pcl";
+else
+       KEYWORDS="~amd64 ~arm"
+       SRC_URI="https://github.com/PointCloudLibrary/pcl/archive/${P}.tar.gz";
+       S="${WORKDIR}/${PN}-${P}"
+fi
+
+HOMEPAGE="https://pointclouds.org/";
+DESCRIPTION="2D/3D image and point cloud processing"
+LICENSE="BSD"
+SLOT="0/$(ver_cut 1-2)"
+IUSE="cuda doc opengl openni openni2 pcap png +qhull qt5 qt6 usb vtk 
cpu_flags_x86_sse test tutorials"
+# tests need the gtest sources to be available at build time
+RESTRICT="test"
+
+RDEPEND="
+       >=sci-libs/flann-1.7.1
+       dev-libs/boost:=
+       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:= )
+       qt5? (
+               dev-qt/qtgui:5
+               dev-qt/qtcore:5
+               dev-qt/qtconcurrent:5
+               dev-qt/qtopengl:5
+               vtk? ( sci-libs/vtk[qt5] )
+       )
+       qt6? (
+               !qt5? (
+                       dev-qt/qtbase:6[concurrent,gui,opengl]
+                       vtk? ( sci-libs/vtk[-qt5,qt6] )
+               )
+       )
+       usb? ( virtual/libusb:1 )
+       vtk? ( >=sci-libs/vtk-5.6:=[imaging,rendering,views] )
+       cuda? ( >=dev-util/nvidia-cuda-toolkit-4 )
+"
+DEPEND="${RDEPEND}
+       !!dev-cpp/metslib
+"
+BDEPEND="
+       doc? (
+               app-text/doxygen[dot]
+               virtual/latex-base
+       )
+       tutorials? (
+               dev-python/sphinx
+               dev-python/sphinx-rtd-theme
+               dev-python/sphinxcontrib-doxylink
+       )
+       virtual/pkgconfig"
+
+REQUIRED_USE="
+       openni? ( usb )
+       openni2? ( usb )
+       tutorials? ( doc )
+"
+
+PATCHES=(
+       "${FILESDIR}"/${PN}-1.12.1-allow-configuration-of-install-dirs.patch
+       
"${FILESDIR}"/${PN}-1.12.1-fix-hardcoded-relative-directory-of-the-installed-cmake-files.patch
+)
+
+src_prepare() {
+       if use cuda; then
+               cuda_src_prepare
+               cuda_add_sandbox -w
+       fi
+
+       cmake_src_prepare
+}
+
+src_configure() {
+       local mycmakeargs=(
+               "-DDOC_INSTALL_DIR=share/doc/${PF}"
+               "-DLIB_INSTALL_DIR=$(get_libdir)"
+               "-DPCLCONFIG_INSTALL_DIR=share/cmake/${PN}-$(ver_cut 1-2)"
+               "-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_VTK=$(usex vtk TRUE FALSE)"
+               "-DWITH_PCAP=$(usex pcap TRUE FALSE)"
+               "-DWITH_OPENNI=$(usex openni TRUE FALSE)"
+               "-DWITH_OPENNI2=$(usex openni2 TRUE FALSE)"
+               "-DPCL_ENABLE_SSE=$(usex cpu_flags_x86_sse TRUE FALSE)"
+               "-DWITH_DOCS=$(usex doc TRUE FALSE)"
+               "-DWITH_TUTORIALS=$(usex tutorials TRUE FALSE)"
+               "-DBUILD_global_tests=FALSE"
+       )
+
+       if use qt5; then
+               mycmakeargs+=( "-DWITH_QT=QT5" )
+       elif use qt6; then
+               mycmakeargs+=( "-DWITH_QT=QT6" )
+       else
+               mycmakeargs+=( "-DWITH_QT=NO" )
+       fi
+
+       cmake_src_configure
+}

Reply via email to