summaryrefslogtreecommitdiffstats
path: root/meta/recipes-multimedia/libtiff/tiff_4.1.0.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@cn.fujitsu.com>2021-01-08 09:09:23 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-01-10 12:34:40 +0000
commit55bf36bf4ee62989e8844576b3cf9aa6f030b261 (patch)
tree39433331f088277eb63336d001c0c824c9e83e0c /meta/recipes-multimedia/libtiff/tiff_4.1.0.bb
parentd031768d951b9200569f7d96fef60b0c63338c53 (diff)
downloadpoky-55bf36bf4ee62989e8844576b3cf9aa6f030b261.tar.gz
tiff: upgrade 4.1.0 -> 4.2.0
(From OE-Core rev: 9c2c01607929f9aed8d606ef4e049a435d8fe6f2) Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia/libtiff/tiff_4.1.0.bb')
-rw-r--r--meta/recipes-multimedia/libtiff/tiff_4.1.0.bb50
1 files changed, 0 insertions, 50 deletions
diff --git a/meta/recipes-multimedia/libtiff/tiff_4.1.0.bb b/meta/recipes-multimedia/libtiff/tiff_4.1.0.bb
deleted file mode 100644
index 9b907fbc24..0000000000
--- a/meta/recipes-multimedia/libtiff/tiff_4.1.0.bb
+++ /dev/null
@@ -1,50 +0,0 @@
1SUMMARY = "Provides support for the Tag Image File Format (TIFF)"
2LICENSE = "BSD-2-Clause"
3LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=34da3db46fab7501992f9615d7e158cf"
4
5CVE_PRODUCT = "libtiff"
6
7SRC_URI = "http://download.osgeo.org/libtiff/tiff-${PV}.tar.gz \
8 "
9SRC_URI[md5sum] = "2165e7aba557463acc0664e71a3ed424"
10SRC_URI[sha256sum] = "5d29f32517dadb6dbcd1255ea5bbc93a2b54b94fbf83653b4d65c7d6775b8634"
11
12# exclude betas
13UPSTREAM_CHECK_REGEX = "tiff-(?P<pver>\d+(\.\d+)+).tar"
14
15inherit autotools multilib_header
16
17CACHED_CONFIGUREVARS = "ax_cv_check_gl_libgl=no"
18
19PACKAGECONFIG ?= "cxx jpeg zlib lzma \
20 strip-chopping extrasample-as-alpha check-ycbcr-subsampling"
21
22PACKAGECONFIG[cxx] = "--enable-cxx,--disable-cxx,,"
23PACKAGECONFIG[jpeg] = "--enable-jpeg,--disable-jpeg,jpeg,"
24PACKAGECONFIG[zlib] = "--enable-zlib,--disable-zlib,zlib,"
25PACKAGECONFIG[lzma] = "--enable-lzma,--disable-lzma,xz,"
26
27# Convert single-strip uncompressed images to multiple strips of specified
28# size (default: 8192) to reduce memory usage
29PACKAGECONFIG[strip-chopping] = "--enable-strip-chopping,--disable-strip-chopping,,"
30
31# Treat a fourth sample with no EXTRASAMPLE_ value as being ASSOCALPHA
32PACKAGECONFIG[extrasample-as-alpha] = "--enable-extrasample-as-alpha,--disable-extrasample-as-alpha,,"
33
34# Control picking up YCbCr subsample info. Disable to support files lacking
35# the tag
36PACKAGECONFIG[check-ycbcr-subsampling] = "--enable-check-ycbcr-subsampling,--disable-check-ycbcr-subsampling,,"
37
38# Support a mechanism allowing reading large strips (usually one strip files)
39# in chunks when using TIFFReadScanline. Experimental 4.0+ feature
40PACKAGECONFIG[chunky-strip-read] = "--enable-chunky-strip-read,--disable-chunky-strip-read,,"
41
42PACKAGES =+ "tiffxx tiff-utils"
43FILES_tiffxx = "${libdir}/libtiffxx.so.*"
44FILES_tiff-utils = "${bindir}/*"
45
46do_install_append() {
47 oe_multilib_header tiffconf.h
48}
49
50BBCLASSEXTEND = "native nativesdk"