From 330173c75426aa38919091da9ae8a9e90de9e0e2 Mon Sep 17 00:00:00 2001 From: Marko Lindqvist Date: Sun, 13 May 2012 21:37:03 +0300 Subject: jpeg: update to upstream version 8d * fix_for_automake_1.11.2.patch removed as issue resolved upstream * Have README as license file instead of several source files that just refer to it Signed-off-by: Marko Lindqvist --- meta/recipes-core/jpeg/jpeg_8d.bb | 55 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 meta/recipes-core/jpeg/jpeg_8d.bb (limited to 'meta/recipes-core/jpeg/jpeg_8d.bb') diff --git a/meta/recipes-core/jpeg/jpeg_8d.bb b/meta/recipes-core/jpeg/jpeg_8d.bb new file mode 100644 index 0000000000..61f1c2e038 --- /dev/null +++ b/meta/recipes-core/jpeg/jpeg_8d.bb @@ -0,0 +1,55 @@ +SUMMARY = "libjpeg is a library for handling the JPEG (JFIF) image format." +DESCRIPTION = "libjpeg contains a library for handling the JPEG (JFIF) image format, as well as related programs for accessing the libjpeg functions." +HOMEPAGE = "http://www.ijg.org/" +BUGTRACKER = "" + +LICENSE ="BSD-3-Clause" +LIC_FILES_CHKSUM = "file://README;md5=4f46756b064c225fae088903300e5c98" + +SECTION = "libs" + +DEPENDS = "libtool-cross" +DEPENDS_virtclass-native = "libtool-native" + +PR = "r0" + +SRC_URI = "http://www.ijg.org/files/jpegsrc.v${PV}.tar.gz \ + file://debian-libjpeg7_7-1.diff" + +SRC_URI[md5sum] = "52654eb3b2e60c35731ea8fc87f1bd29" +SRC_URI[sha256sum] = "00029b1473f0f0ea72fbca3230e8cb25797fbb27e58ae2e46bb8bf5a806fe0b3" + +inherit autotools + +EXTRA_OECONF="--enable-static --enable-shared" +EXTRA_OEMAKE='"LIBTOOL=${STAGING_BINDIR_CROSS}/${HOST_SYS}-libtool"' + +CFLAGS_append = " -D_REENTRANT" + +do_configure_prepend () { + rm -f ${S}/ltconfig + rm -f ${S}/ltmain.sh +} + +do_install() { + install -d ${D}${bindir} ${D}${includedir} \ + ${D}${mandir}/man1 ${D}${libdir} + oe_runmake 'DESTDIR=${D}' install +} + +PACKAGES =+ "jpeg-tools " +DESCRIPTION_jpeg-tools = "The jpeg-tools package includes the client programs for access libjpeg functionality. These tools allow for the compression, decompression, transformation and display of JPEG files." +FILES_jpeg-tools = "${bindir}/*" + +BBCLASSEXTEND = "native" + +pkg_postinst_${PN}_linuxstdbase () { + if [ "$D" = "" ]; then + if [ ! -e ${libdir}/libjpeg.so.62 ]; then + JPEG=`find ${libdir} -type f -name libjpeg.so.\*.\*.\*` + ln -sf `basename $JPEG` ${libdir}/libjpeg.so.62 + fi + else + exit 1 + fi +} -- cgit 1.2.3-korg