diff options
Diffstat (limited to 'meta/recipes-multimedia/libtiff/tiff_4.7.1.bb')
| -rw-r--r-- | meta/recipes-multimedia/libtiff/tiff_4.7.1.bb | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/libtiff/tiff_4.7.1.bb b/meta/recipes-multimedia/libtiff/tiff_4.7.1.bb new file mode 100644 index 0000000000..f46c806cf2 --- /dev/null +++ b/meta/recipes-multimedia/libtiff/tiff_4.7.1.bb | |||
| @@ -0,0 +1,64 @@ | |||
| 1 | SUMMARY = "Provides support for the Tag Image File Format (TIFF)" | ||
| 2 | DESCRIPTION = "Library provides support for the Tag Image File Format \ | ||
| 3 | (TIFF), a widely used format for storing image data. This library \ | ||
| 4 | provide means to easily access and create TIFF image files." | ||
| 5 | HOMEPAGE = "http://www.libtiff.org/" | ||
| 6 | LICENSE = "libtiff & BSD-4.3TAHOE" | ||
| 7 | LIC_FILES_CHKSUM = "file://LICENSE.md;md5=4ab490c3088a0acff254eb2f8c577547" | ||
| 8 | |||
| 9 | CVE_PRODUCT = "libtiff" | ||
| 10 | |||
| 11 | SRC_URI = "http://download.osgeo.org/libtiff/tiff-${PV}.tar.gz \ | ||
| 12 | " | ||
| 13 | |||
| 14 | SRC_URI[sha256sum] = "f698d94f3103da8ca7438d84e0344e453fe0ba3b7486e04c5bf7a9a3fabe9b69" | ||
| 15 | |||
| 16 | # exclude betas | ||
| 17 | UPSTREAM_CHECK_REGEX = "tiff-(?P<pver>\d+(\.\d+)+).tar" | ||
| 18 | |||
| 19 | CVE_STATUS[CVE-2015-7313] = "fixed-version: Tested with check from https://security-tracker.debian.org/tracker/CVE-2015-7313 and already 4.3.0 doesn't have the issue" | ||
| 20 | CVE_STATUS[CVE-2023-52356] = "fixed-version: Fixed since 4.7.0, NVD tracks this as version-less vulnerability" | ||
| 21 | CVE_STATUS[CVE-2023-6228] = "fixed-version: Fixed since 4.7.0, NVD tracks this as version-less vulnerability" | ||
| 22 | CVE_STATUS[CVE-2023-6277] = "fixed-version: Fixed since 4.7.0, NVD tracks this as version-less vulnerability" | ||
| 23 | |||
| 24 | inherit autotools multilib_header | ||
| 25 | |||
| 26 | CACHED_CONFIGUREVARS = "ax_cv_check_gl_libgl=no" | ||
| 27 | |||
| 28 | PACKAGECONFIG ?= "cxx jpeg zlib lzma \ | ||
| 29 | strip-chopping extrasample-as-alpha check-ycbcr-subsampling" | ||
| 30 | |||
| 31 | PACKAGECONFIG[cxx] = "--enable-cxx,--disable-cxx,," | ||
| 32 | PACKAGECONFIG[jbig] = "--enable-jbig,--disable-jbig,jbig," | ||
| 33 | PACKAGECONFIG[jpeg] = "--enable-jpeg,--disable-jpeg,jpeg," | ||
| 34 | PACKAGECONFIG[lerc] = "--enable-lerc,--disable-lerc,liblerc," | ||
| 35 | PACKAGECONFIG[zlib] = "--enable-zlib,--disable-zlib,zlib," | ||
| 36 | PACKAGECONFIG[lzma] = "--enable-lzma,--disable-lzma,xz," | ||
| 37 | PACKAGECONFIG[webp] = "--enable-webp,--disable-webp,libwebp," | ||
| 38 | PACKAGECONFIG[zstd] = "--enable-zstd,--disable-zstd,zstd," | ||
| 39 | PACKAGECONFIG[libdeflate] = "--enable-libdeflate,--disable-libdeflate,libdeflate," | ||
| 40 | |||
| 41 | # Convert single-strip uncompressed images to multiple strips of specified | ||
| 42 | # size (default: 8192) to reduce memory usage | ||
| 43 | PACKAGECONFIG[strip-chopping] = "--enable-strip-chopping,--disable-strip-chopping,," | ||
| 44 | |||
| 45 | # Treat a fourth sample with no EXTRASAMPLE_ value as being ASSOCALPHA | ||
| 46 | PACKAGECONFIG[extrasample-as-alpha] = "--enable-extrasample-as-alpha,--disable-extrasample-as-alpha,," | ||
| 47 | |||
| 48 | # Control picking up YCbCr subsample info. Disable to support files lacking | ||
| 49 | # the tag | ||
| 50 | PACKAGECONFIG[check-ycbcr-subsampling] = "--enable-check-ycbcr-subsampling,--disable-check-ycbcr-subsampling,," | ||
| 51 | |||
| 52 | # Support a mechanism allowing reading large strips (usually one strip files) | ||
| 53 | # in chunks when using TIFFReadScanline. Experimental 4.0+ feature | ||
| 54 | PACKAGECONFIG[chunky-strip-read] = "--enable-chunky-strip-read,--disable-chunky-strip-read,," | ||
| 55 | |||
| 56 | PACKAGES =+ "tiffxx tiff-utils" | ||
| 57 | FILES:tiffxx = "${libdir}/libtiffxx.so.*" | ||
| 58 | FILES:tiff-utils = "${bindir}/*" | ||
| 59 | |||
| 60 | do_install:append() { | ||
| 61 | oe_multilib_header tiffconf.h | ||
| 62 | } | ||
| 63 | |||
| 64 | BBCLASSEXTEND = "native nativesdk" | ||
