diff options
author | Alexis Ballier <aballier@gentoo.org> | 2019-08-29 17:07:18 +0200 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2019-08-29 17:50:29 +0200 |
commit | b27e51a2ccf32a7adb5f2f226abdbb94704329fc (patch) | |
tree | dc2232e3f30fc54bab16bbc4d96b33422574ecca /sci-libs/ViSP | |
parent | sci-libs/ViSP: bump to 3.2.0 (diff) | |
download | gentoo-b27e51a2ccf32a7adb5f2f226abdbb94704329fc.tar.gz gentoo-b27e51a2ccf32a7adb5f2f226abdbb94704329fc.tar.bz2 gentoo-b27e51a2ccf32a7adb5f2f226abdbb94704329fc.zip |
sci-libs/ViSP: Fix opencv detection
Package-Manager: Portage-2.3.73, Repoman-2.3.17
Signed-off-by: Alexis Ballier <aballier@gentoo.org>
Diffstat (limited to 'sci-libs/ViSP')
-rw-r--r-- | sci-libs/ViSP/ViSP-3.2.0-r1.ebuild (renamed from sci-libs/ViSP/ViSP-3.2.0.ebuild) | 2 | ||||
-rw-r--r-- | sci-libs/ViSP/files/ViSP-3.2.0-ocv.patch | 18 |
2 files changed, 19 insertions, 1 deletions
diff --git a/sci-libs/ViSP/ViSP-3.2.0.ebuild b/sci-libs/ViSP/ViSP-3.2.0-r1.ebuild index e6404f3cfb59..093857e66597 100644 --- a/sci-libs/ViSP/ViSP-3.2.0.ebuild +++ b/sci-libs/ViSP/ViSP-3.2.0-r1.ebuild @@ -46,7 +46,7 @@ RDEPEND="${RDEPEND} REQUIRED_USE="motif? ( coin )" S="${WORKDIR}/visp-${PV}" -PATCHES=( "${FILESDIR}/${PN}-3.0.1-opencv.patch" ) +PATCHES=( "${FILESDIR}/${PN}-3.2.0-ocv.patch" ) src_configure() { local mycmakeargs=( diff --git a/sci-libs/ViSP/files/ViSP-3.2.0-ocv.patch b/sci-libs/ViSP/files/ViSP-3.2.0-ocv.patch new file mode 100644 index 000000000000..56347c58f968 --- /dev/null +++ b/sci-libs/ViSP/files/ViSP-3.2.0-ocv.patch @@ -0,0 +1,18 @@ +Index: visp-3.2.0/CMakeLists.txt +=================================================================== +--- visp-3.2.0.orig/CMakeLists.txt ++++ visp-3.2.0/CMakeLists.txt +@@ -574,12 +574,7 @@ if(USE_CXX11 AND NOT USE_PTHREAD) + endif() + endif() + VP_OPTION(USE_XML2 XML2 "" "Include xml support" "" ON IF NOT WINRT) +-if(CMAKE_TOOLCHAIN_FILE) +- # Find opencv2.framework for ios and naoqi +- VP_OPTION(USE_OPENCV "MyOpenCV" QUIET "Include OpenCV support" "OpenCV_DIR;OpenCV_FOUND;OPENCV_FOUND" ON) +-else() +- VP_OPTION(USE_OPENCV "OpenCV;MyOpenCV" QUIET "Include OpenCV support" "OpenCV_DIR;OpenCV_FOUND;OPENCV_FOUND" ON) +-endif() ++VP_OPTION(USE_OPENCV "OpenCV;MyOpenCV" QUIET "Include OpenCV support" "OpenCV_DIR;OpenCV_FOUND;OPENCV_FOUND" ON) + VP_OPTION(USE_ZLIB "ZLIB;MyZLIB" "" "Include zlib support" "" ON IF NOT WINRT AND NOT IOS) + VP_OPTION(USE_X11 X11 "" "Include X11 support" "" ON IF NOT WINRT AND NOT IOS) + # The native FindGTK2.cmake doesn't consider libgobject-2.0 that is |