summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta-oe/recipes-support/opencv/opencv_4.12.0.bb7
1 files changed, 6 insertions, 1 deletions
diff --git a/meta-oe/recipes-support/opencv/opencv_4.12.0.bb b/meta-oe/recipes-support/opencv/opencv_4.12.0.bb
index aa11d3da43..b8e83cd6be 100644
--- a/meta-oe/recipes-support/opencv/opencv_4.12.0.bb
+++ b/meta-oe/recipes-support/opencv/opencv_4.12.0.bb
@@ -122,7 +122,7 @@ PACKAGECONFIG[tests] = "-DBUILD_TESTS=ON -DINSTALL_TESTS=ON,-DBUILD_TESTS=OFF,,"
122PACKAGECONFIG[text] = "-DBUILD_opencv_text=ON,-DBUILD_opencv_text=OFF,tesseract," 122PACKAGECONFIG[text] = "-DBUILD_opencv_text=ON,-DBUILD_opencv_text=OFF,tesseract,"
123PACKAGECONFIG[tiff] = "-DWITH_TIFF=ON,-DWITH_TIFF=OFF,tiff," 123PACKAGECONFIG[tiff] = "-DWITH_TIFF=ON,-DWITH_TIFF=OFF,tiff,"
124PACKAGECONFIG[v4l] = "-DWITH_V4L=ON,-DWITH_V4L=OFF,v4l-utils," 124PACKAGECONFIG[v4l] = "-DWITH_V4L=ON,-DWITH_V4L=OFF,v4l-utils,"
125PACKAGECONFIG[fastcv] = "-DWITH_FASTCV=ON ,-DWITH_FASTCV=OFF,," 125PACKAGECONFIG[fastcv] = "-DWITH_FASTCV=ON ,-DWITH_FASTCV=OFF,qcom-fastcv-binaries,"
126 126
127inherit pkgconfig cmake setuptools3-base python3native 127inherit pkgconfig cmake setuptools3-base python3native
128 128
@@ -165,6 +165,11 @@ python populate_packages:prepend () {
165 if not pkg in blacklist and not pkg in metapkg_rdepends and not pkg.endswith('-dev') and not pkg.endswith('-dbg') and not pkg.endswith('-doc') and not pkg.endswith('-locale') and not pkg.endswith('-staticdev'): 165 if not pkg in blacklist and not pkg in metapkg_rdepends and not pkg.endswith('-dev') and not pkg.endswith('-dbg') and not pkg.endswith('-doc') and not pkg.endswith('-locale') and not pkg.endswith('-staticdev'):
166 metapkg_rdepends.append(pkg) 166 metapkg_rdepends.append(pkg)
167 d.setVar('RDEPENDS:' + metapkg, ' '.join(metapkg_rdepends)) 167 d.setVar('RDEPENDS:' + metapkg, ' '.join(metapkg_rdepends))
168
169 fastcv_pkgs = ["libopencv-core", "libopencv-fastcv", "libopencv-imgproc"]
170 if bb.utils.contains('PACKAGECONFIG', 'fastcv', True, False, d):
171 for pkg in fastcv_pkgs:
172 d.appendVar('RDEPENDS:' + pkg, " qcom-fastcv-binaries")
168} 173}
169 174
170PACKAGES_DYNAMIC += "^libopencv-.*" 175PACKAGES_DYNAMIC += "^libopencv-.*"