summaryrefslogtreecommitdiffstats
path: root/meta/recipes-multimedia/libtiff
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2025-11-07 13:31:53 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-11-07 13:31:53 +0000
commit8c22ff0d8b70d9b12f0487ef696a7e915b9e3173 (patch)
treeefdc32587159d0050a69009bdf2330a531727d95 /meta/recipes-multimedia/libtiff
parentd412d2747595c1cc4a5e3ca975e3adc31b2f7891 (diff)
downloadpoky-8c22ff0d8b70d9b12f0487ef696a7e915b9e3173.tar.gz
The poky repository master branch is no longer being updated.
You can either: a) switch to individual clones of bitbake, openembedded-core, meta-yocto and yocto-docs b) use the new bitbake-setup You can find information about either approach in our documentation: https://docs.yoctoproject.org/ Note that "poky" the distro setting is still available in meta-yocto as before and we continue to use and maintain that. Long live Poky! Some further information on the background of this change can be found in: https://lists.openembedded.org/g/openembedded-architecture/message/2179 Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia/libtiff')
-rw-r--r--meta/recipes-multimedia/libtiff/tiff_4.7.1.bb65
1 files changed, 0 insertions, 65 deletions
diff --git a/meta/recipes-multimedia/libtiff/tiff_4.7.1.bb b/meta/recipes-multimedia/libtiff/tiff_4.7.1.bb
deleted file mode 100644
index 0d4b3a4abd..0000000000
--- a/meta/recipes-multimedia/libtiff/tiff_4.7.1.bb
+++ /dev/null
@@ -1,65 +0,0 @@
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"
23CVE_STATUS[CVE-2025-8851] = "fixed-version: Fixed since 4.7.0, NVD tracks this as fixed in 2024-08-11 vulnerability"
24
25inherit autotools multilib_header
26
27CACHED_CONFIGUREVARS = "ax_cv_check_gl_libgl=no"
28
29PACKAGECONFIG ?= "cxx jpeg zlib lzma \
30 strip-chopping extrasample-as-alpha check-ycbcr-subsampling"
31
32PACKAGECONFIG[cxx] = "--enable-cxx,--disable-cxx,,"
33PACKAGECONFIG[jbig] = "--enable-jbig,--disable-jbig,jbig,"
34PACKAGECONFIG[jpeg] = "--enable-jpeg,--disable-jpeg,jpeg,"
35PACKAGECONFIG[lerc] = "--enable-lerc,--disable-lerc,liblerc,"
36PACKAGECONFIG[zlib] = "--enable-zlib,--disable-zlib,zlib,"
37PACKAGECONFIG[lzma] = "--enable-lzma,--disable-lzma,xz,"
38PACKAGECONFIG[webp] = "--enable-webp,--disable-webp,libwebp,"
39PACKAGECONFIG[zstd] = "--enable-zstd,--disable-zstd,zstd,"
40PACKAGECONFIG[libdeflate] = "--enable-libdeflate,--disable-libdeflate,libdeflate,"
41
42# Convert single-strip uncompressed images to multiple strips of specified
43# size (default: 8192) to reduce memory usage
44PACKAGECONFIG[strip-chopping] = "--enable-strip-chopping,--disable-strip-chopping,,"
45
46# Treat a fourth sample with no EXTRASAMPLE_ value as being ASSOCALPHA
47PACKAGECONFIG[extrasample-as-alpha] = "--enable-extrasample-as-alpha,--disable-extrasample-as-alpha,,"
48
49# Control picking up YCbCr subsample info. Disable to support files lacking
50# the tag
51PACKAGECONFIG[check-ycbcr-subsampling] = "--enable-check-ycbcr-subsampling,--disable-check-ycbcr-subsampling,,"
52
53# Support a mechanism allowing reading large strips (usually one strip files)
54# in chunks when using TIFFReadScanline. Experimental 4.0+ feature
55PACKAGECONFIG[chunky-strip-read] = "--enable-chunky-strip-read,--disable-chunky-strip-read,,"
56
57PACKAGES =+ "tiffxx tiff-utils"
58FILES:tiffxx = "${libdir}/libtiffxx.so.*"
59FILES:tiff-utils = "${bindir}/*"
60
61do_install:append() {
62 oe_multilib_header tiffconf.h
63}
64
65BBCLASSEXTEND = "native nativesdk"