diff options
Diffstat (limited to 'meta-extras')
-rw-r--r-- | meta-extras/packages/libtiff/tiff-3.7.2/configure.patch | 20 | ||||
-rw-r--r-- | meta-extras/packages/libtiff/tiff_3.7.2.bb | 25 |
2 files changed, 45 insertions, 0 deletions
diff --git a/meta-extras/packages/libtiff/tiff-3.7.2/configure.patch b/meta-extras/packages/libtiff/tiff-3.7.2/configure.patch new file mode 100644 index 0000000000..599af6c188 --- /dev/null +++ b/meta-extras/packages/libtiff/tiff-3.7.2/configure.patch | |||
@@ -0,0 +1,20 @@ | |||
1 | Index: tiff-3.7.2/configure.ac | ||
2 | =================================================================== | ||
3 | --- tiff-3.7.2.orig/configure.ac 2005-03-15 10:42:19.000000000 -0500 | ||
4 | +++ tiff-3.7.2/configure.ac 2007-10-10 12:05:58.000000000 -0400 | ||
5 | @@ -32,7 +32,6 @@ | ||
6 | AC_CANONICAL_TARGET | ||
7 | |||
8 | AM_INIT_AUTOMAKE | ||
9 | -AM_PROG_CC_C_O | ||
10 | dnl Do not rebuild generated files every time | ||
11 | AM_MAINTAINER_MODE | ||
12 | |||
13 | @@ -55,6 +54,7 @@ | ||
14 | |||
15 | dnl Checks for programs. | ||
16 | AC_PROG_CC | ||
17 | +AM_PROG_CC_C_O | ||
18 | |||
19 | dnl We want warnings. As many warnings as possible. | ||
20 | #VL_PROG_CC_WARNINGS() | ||
diff --git a/meta-extras/packages/libtiff/tiff_3.7.2.bb b/meta-extras/packages/libtiff/tiff_3.7.2.bb new file mode 100644 index 0000000000..1f28e718bc --- /dev/null +++ b/meta-extras/packages/libtiff/tiff_3.7.2.bb | |||
@@ -0,0 +1,25 @@ | |||
1 | DESCRIPTION = "This software provides support for the Tag Image File Format (TIFF)" | ||
2 | LICENSE = "" | ||
3 | HOMEPAGE = "http://www.remotesensing.org/libtiff/" | ||
4 | DEPENDS = "zlib jpeg lzo" | ||
5 | PR = "r4" | ||
6 | |||
7 | SRC_URI = "http://dl.maptools.org/dl/libtiff/old/tiff-${PV}.tar.gz \ | ||
8 | file://configure.patch;patch=1" | ||
9 | |||
10 | inherit autotools | ||
11 | |||
12 | do_stage() { | ||
13 | autotools_stage_includes | ||
14 | install -d ${STAGING_LIBDIR} | ||
15 | oe_libinstall -C libtiff -a -so libtiff ${STAGING_LIBDIR} | ||
16 | oe_libinstall -C libtiff -a -so libtiffxx ${STAGING_LIBDIR} | ||
17 | |||
18 | } | ||
19 | |||
20 | PACKAGES =+ "tiffxx tiffxx-dbg tiffxx-dev tiff-utils tiff-utils-dbg" | ||
21 | FILES_tiffxx = "${libdir}/libtiffxx.so.*" | ||
22 | FILES_tiffxx-dev = "${libdir}/libtiffxx.so ${libdir}/libtiffxx.*a" | ||
23 | FILES_tiffxx-dbg += "${libdir}/.debug/libtiffxx.so*" | ||
24 | FILES_tiff-utils = "${bindir}/*" | ||
25 | FILES_tiff-utils-dbg += "${bindir}/.debug/" | ||