aboutsummaryrefslogtreecommitdiffstats
path: root/meta/packages/libpng/libpng_1.2.44.bb
diff options
context:
space:
mode:
authorKevin Tian <kevin.tian@intel.com>2010-07-20 19:39:57 +0800
committerRichard Purdie <rpurdie@linux.intel.com>2010-07-21 21:44:37 +0100
commit8a251accbfd68078fbab23a96411b76928cf1063 (patch)
treeddbddfd81b7b0a3403ec69d17eeb2c11919e58d8 /meta/packages/libpng/libpng_1.2.44.bb
parentd86e127ea046f5a150a5022c457c7a8dbf0a22f0 (diff)
downloadopenembedded-core-contrib-8a251accbfd68078fbab23a96411b76928cf1063.tar.gz
libpng: upgrade to 1.2.44
although the latest version is 1.4.3, some API changes happen which are not compatible to some packages (such as libmatchbox using png_check_sig which is abandoned in 1.4 version). I didn't check fully about other broken places, and then be conservative to choose 1.2.44 as the target instead atm. [Patches] REMOVE _makefile_fix.patch_: a specific fix for libtool2.2.2. with 2.2.10, it's not required then [Recipe] - add license checksum - remove old do_install and do_package - clean up package split - remove inherit pkgconfig_stage, since its own Makefile handles it well Signed-off-by: Kevin Tian <kevin.tian@intel.com>
Diffstat (limited to 'meta/packages/libpng/libpng_1.2.44.bb')
-rw-r--r--meta/packages/libpng/libpng_1.2.44.bb23
1 files changed, 23 insertions, 0 deletions
diff --git a/meta/packages/libpng/libpng_1.2.44.bb b/meta/packages/libpng/libpng_1.2.44.bb
new file mode 100644
index 0000000000..318bb7436d
--- /dev/null
+++ b/meta/packages/libpng/libpng_1.2.44.bb
@@ -0,0 +1,23 @@
+DESCRIPTION = "PNG Library"
+HOMEPAGE = "http://www.libpng.org/"
+SECTION = "libs"
+PRIORITY = "required"
+LICENSE = "libpng"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=a294a2bb08b7f25558119edbfd6b2e92 \
+ file://png.h;startline=172;endline=261;md5=3253923f0093658f470e52a06ddcf4e7"
+DEPENDS = "zlib"
+PR = "r0"
+
+SRC_URI = "${SOURCEFORGE_MIRROR}/libpng/libpng-${PV}.tar.bz2"
+
+inherit autotools binconfig pkgconfig
+
+PACKAGES =+ "${PN}12-dbg ${PN}12 ${PN}12-dev"
+
+FILES_${PN}12-dbg = "${libdir}/.debug/libpng12*"
+FILES_${PN}12 = "${libdir}/libpng12${SOLIBS}"
+FILES_${PN}12-dev = "${libdir}/libpng12.* ${includedir}/libpng12 ${libdir}/pkgconfig/libpng12.pc"
+FILES_${PN} = "${libdir}/lib*${SOLIBS}"
+FILES_${PN}-dev += " ${bindir} ${sbindir}"
+
+BBCLASSEXTEND = "native"