diff options
Diffstat (limited to 'meta/recipes-multimedia/libtiff/tiff_4.0.4.bb')
-rw-r--r-- | meta/recipes-multimedia/libtiff/tiff_4.0.4.bb | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/meta/recipes-multimedia/libtiff/tiff_4.0.4.bb b/meta/recipes-multimedia/libtiff/tiff_4.0.4.bb deleted file mode 100644 index 74f0a7228c..0000000000 --- a/meta/recipes-multimedia/libtiff/tiff_4.0.4.bb +++ /dev/null | |||
@@ -1,47 +0,0 @@ | |||
1 | SUMMARY = "Provides support for the Tag Image File Format (TIFF)" | ||
2 | LICENSE = "BSD-2-Clause" | ||
3 | LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=34da3db46fab7501992f9615d7e158cf" | ||
4 | HOMEPAGE = "http://www.remotesensing.org/libtiff/" | ||
5 | |||
6 | SRC_URI = "ftp://ftp.remotesensing.org/pub/libtiff/tiff-${PV}.tar.gz \ | ||
7 | file://libtool2.patch \ | ||
8 | " | ||
9 | |||
10 | SRC_URI[md5sum] = "9aee7107408a128c0c7b24286c0db900" | ||
11 | SRC_URI[sha256sum] = "8cb1d90c96f61cdfc0bcf036acc251c9dbe6320334da941c7a83cfe1576ef890" | ||
12 | |||
13 | # exclude betas | ||
14 | UPSTREAM_CHECK_REGEX = "tiff-(?P<pver>\d+(\.\d+)+).tar" | ||
15 | |||
16 | inherit autotools | ||
17 | |||
18 | CACHED_CONFIGUREVARS = "ax_cv_check_gl_libgl=no" | ||
19 | |||
20 | PACKAGECONFIG ?= "cxx jpeg zlib lzma \ | ||
21 | strip-chopping extrasample-as-alpha check-ycbcr-subsampling" | ||
22 | |||
23 | PACKAGECONFIG[cxx] = "--enable-cxx,--disable-cxx,," | ||
24 | PACKAGECONFIG[jpeg] = "--enable-jpeg,--disable-jpeg,jpeg," | ||
25 | PACKAGECONFIG[zlib] = "--enable-zlib,--disable-zlib,zlib," | ||
26 | PACKAGECONFIG[lzma] = "--enable-lzma,--disable-lzma,xz," | ||
27 | |||
28 | # Convert single-strip uncompressed images to multiple strips of specified | ||
29 | # size (default: 8192) to reduce memory usage | ||
30 | PACKAGECONFIG[strip-chopping] = "--enable-strip-chopping,--disable-strip-chopping,," | ||
31 | |||
32 | # Treat a fourth sample with no EXTRASAMPLE_ value as being ASSOCALPHA | ||
33 | PACKAGECONFIG[extrasample-as-alpha] = "--enable-extrasample-as-alpha,--disable-extrasample-as-alpha,," | ||
34 | |||
35 | # Control picking up YCbCr subsample info. Disable to support files lacking | ||
36 | # the tag | ||
37 | PACKAGECONFIG[check-ycbcr-subsampling] = "--enable-check-ycbcr-subsampling,--disable-check-ycbcr-subsampling,," | ||
38 | |||
39 | # Support a mechanism allowing reading large strips (usually one strip files) | ||
40 | # in chunks when using TIFFReadScanline. Experimental 4.0+ feature | ||
41 | PACKAGECONFIG[chunky-strip-read] = "--enable-chunky-strip-read,--disable-chunky-strip-read,," | ||
42 | |||
43 | PACKAGES =+ "tiffxx tiff-utils" | ||
44 | FILES_tiffxx = "${libdir}/libtiffxx.so.*" | ||
45 | FILES_tiff-utils = "${bindir}/*" | ||
46 | |||
47 | BBCLASSEXTEND = "native" | ||