summaryrefslogtreecommitdiffstats
path: root/meta/packages/jpeg/jpeg_6b.bb
diff options
context:
space:
mode:
authorZhai Edwin <edwin.zhai@intel.com>2010-07-15 13:34:26 +0800
committerRichard Purdie <rpurdie@linux.intel.com>2010-07-21 16:00:54 +0100
commitb8b678f01099d40f1412386957b2fe457dd9c0ae (patch)
tree8deecda0737801ba23fcec95a012c58cf8fa928e /meta/packages/jpeg/jpeg_6b.bb
parent37eb35995f3d4d75ef57987d5d924b23c40e83e2 (diff)
downloadpoky-b8b678f01099d40f1412386957b2fe457dd9c0ae.tar.gz
jpeg: Update to 8b
Original patch status: ldflags.patch: paths.patch: libtool_tweak.patch: Dropped as the issues got fixed in 8b debian.patch: This patch comes from debian distro. Original version can't apply, so replace it by latest version Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
Diffstat (limited to 'meta/packages/jpeg/jpeg_6b.bb')
-rw-r--r--meta/packages/jpeg/jpeg_6b.bb42
1 files changed, 0 insertions, 42 deletions
diff --git a/meta/packages/jpeg/jpeg_6b.bb b/meta/packages/jpeg/jpeg_6b.bb
deleted file mode 100644
index 87293676de..0000000000
--- a/meta/packages/jpeg/jpeg_6b.bb
+++ /dev/null
@@ -1,42 +0,0 @@
1DESCRIPTION = "libjpeg is a library for handling the JPEG (JFIF) image format."
2HOMEPAGE = "http://www.ijg.org/"
3BUGTRACKER = ""
4
5LICENSE ="jpeg"
6
7SECTION = "libs"
8PRIORITY = "required"
9
10DEPENDS = "libtool-cross"
11DEPENDS_virtclass-native = "libtool-native"
12
13PR = "r9"
14
15SRC_URI = "http://www.ijg.org/files/jpegsrc.v${PV}.tar.gz \
16 file://debian.patch;patch=1 \
17 file://ldflags.patch;patch=1 \
18 file://paths.patch;patch=1 \
19 file://libtool_tweak.patch;patch=1"
20
21inherit autotools
22
23EXTRA_OECONF="--enable-static --enable-shared"
24EXTRA_OEMAKE='"LIBTOOL=${STAGING_BINDIR_CROSS}/${HOST_SYS}-libtool"'
25
26CFLAGS_append = " -D_REENTRANT"
27
28do_configure_prepend () {
29 rm -f ${S}/ltconfig
30 rm -f ${S}/ltmain.sh
31}
32
33do_install() {
34 install -d ${D}${bindir} ${D}${includedir} \
35 ${D}${mandir}/man1 ${D}${libdir}
36 oe_runmake 'DESTDIR=${D}' install
37}
38
39PACKAGES =+ "jpeg-tools "
40FILES_jpeg-tools = "${bindir}/*"
41
42BBCLASSEXTEND = "native"