summaryrefslogtreecommitdiffstats
path: root/meta/recipes-multimedia/libtiff/tiff_4.7.1.bb
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-multimedia/libtiff/tiff_4.7.1.bb')
-rw-r--r--meta/recipes-multimedia/libtiff/tiff_4.7.1.bb64
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 @@
1SUMMARY = "Provides support for the Tag Image File Format (TIFF)"
2DESCRIPTION = "Library provides support for the Tag Image File Format \
3(TIFF), a widely used format for storing image data. This library \
4provide means to easily access and create TIFF image files."
5HOMEPAGE = "http://www.libtiff.org/"
6LICENSE = "libtiff & BSD-4.3TAHOE"
7LIC_FILES_CHKSUM = "file://LICENSE.md;md5=4ab490c3088a0acff254eb2f8c577547"
8
9CVE_PRODUCT = "libtiff"
10
11SRC_URI = "http://download.osgeo.org/libtiff/tiff-${PV}.tar.gz \
12 "
13
14SRC_URI[sha256sum] = "f698d94f3103da8ca7438d84e0344e453fe0ba3b7486e04c5bf7a9a3fabe9b69"
15
16# exclude betas
17UPSTREAM_CHECK_REGEX = "tiff-(?P<pver>\d+(\.\d+)+).tar"
18
19CVE_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"
20CVE_STATUS[CVE-2023-52356] = "fixed-version: Fixed since 4.7.0, NVD tracks this as version-less vulnerability"
21CVE_STATUS[CVE-2023-6228] = "fixed-version: Fixed since 4.7.0, NVD tracks this as version-less vulnerability"
22CVE_STATUS[CVE-2023-6277] = "fixed-version: Fixed since 4.7.0, NVD tracks this as version-less vulnerability"
23
24inherit autotools multilib_header
25
26CACHED_CONFIGUREVARS = "ax_cv_check_gl_libgl=no"
27
28PACKAGECONFIG ?= "cxx jpeg zlib lzma \
29 strip-chopping extrasample-as-alpha check-ycbcr-subsampling"
30
31PACKAGECONFIG[cxx] = "--enable-cxx,--disable-cxx,,"
32PACKAGECONFIG[jbig] = "--enable-jbig,--disable-jbig,jbig,"
33PACKAGECONFIG[jpeg] = "--enable-jpeg,--disable-jpeg,jpeg,"
34PACKAGECONFIG[lerc] = "--enable-lerc,--disable-lerc,liblerc,"
35PACKAGECONFIG[zlib] = "--enable-zlib,--disable-zlib,zlib,"
36PACKAGECONFIG[lzma] = "--enable-lzma,--disable-lzma,xz,"
37PACKAGECONFIG[webp] = "--enable-webp,--disable-webp,libwebp,"
38PACKAGECONFIG[zstd] = "--enable-zstd,--disable-zstd,zstd,"
39PACKAGECONFIG[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
43PACKAGECONFIG[strip-chopping] = "--enable-strip-chopping,--disable-strip-chopping,,"
44
45# Treat a fourth sample with no EXTRASAMPLE_ value as being ASSOCALPHA
46PACKAGECONFIG[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
50PACKAGECONFIG[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
54PACKAGECONFIG[chunky-strip-read] = "--enable-chunky-strip-read,--disable-chunky-strip-read,,"
55
56PACKAGES =+ "tiffxx tiff-utils"
57FILES:tiffxx = "${libdir}/libtiffxx.so.*"
58FILES:tiff-utils = "${bindir}/*"
59
60do_install:append() {
61 oe_multilib_header tiffconf.h
62}
63
64BBCLASSEXTEND = "native nativesdk"