summaryrefslogtreecommitdiffstats
path: root/meta/recipes-lsb4
diff options
context:
space:
mode:
authorAlexander Kanavin <alexander.kanavin@linux.intel.com>2017-05-03 15:59:45 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-06-28 15:52:17 +0100
commit64bf619da6f062e6c17da0c16b8297516fa32ede (patch)
treea2d4e2a2569a338997a258e93fe3fc97f5714548 /meta/recipes-lsb4
parentac0a2f8bff71ab2c8f6a8aa1023bbf19135c6e4a (diff)
downloadpoky-64bf619da6f062e6c17da0c16b8297516fa32ede.tar.gz
libpng12: remove the recipe
It was only in oe-core because of LSB; let's remove it. Current libpng is 1.6.x. (From OE-Core rev: 839af0eafc39b4d182617925e6ab9299431c8601) Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-lsb4')
-rw-r--r--meta/recipes-lsb4/libpng/libpng12_1.2.57.bb36
1 files changed, 0 insertions, 36 deletions
diff --git a/meta/recipes-lsb4/libpng/libpng12_1.2.57.bb b/meta/recipes-lsb4/libpng/libpng12_1.2.57.bb
deleted file mode 100644
index 9f74f5fdb5..0000000000
--- a/meta/recipes-lsb4/libpng/libpng12_1.2.57.bb
+++ /dev/null
@@ -1,36 +0,0 @@
1SUMMARY = "PNG image format decoding library"
2HOMEPAGE = "http://www.libpng.org/"
3SECTION = "libs"
4LICENSE = "Libpng"
5LIC_FILES_CHKSUM = "file://LICENSE;md5=597b8a91994a3e27ae6aa79bf02677d9 \
6 file://png.h;beginline=19;endline=109;md5=166406397718925b660f0033f7558ef7"
7DEPENDS = "zlib"
8
9PN = "libpng12"
10S = "${WORKDIR}/libpng-${PV}"
11
12SRC_URI = "${GENTOO_MIRROR}/libpng-${PV}.tar.xz"
13
14SRC_URI[md5sum] = "307052e5e8af97b82b17b64fb1b3677a"
15SRC_URI[sha256sum] = "0f4620e11fa283fedafb474427c8e96bf149511a1804bdc47350963ae5cf54d8"
16
17UPSTREAM_CHECK_URI = "http://sourceforge.net/projects/libpng/files/libpng12/"
18UPSTREAM_CHECK_REGEX = "/libpng12/(?P<pver>(\d+[\.\-_]*)+)/"
19
20BINCONFIG_GLOB = "${PN}-config"
21
22inherit autotools binconfig pkgconfig
23
24do_install_append() {
25 # The follow link files link to corresponding png12*.h and libpng12* files
26 # They conflict with higher verison, so drop them
27 rm ${D}/${includedir}/png.h
28 rm ${D}/${includedir}/pngconf.h
29
30 rm ${D}/${libdir}/libpng.la
31 rm ${D}/${libdir}/libpng.so
32 rm ${D}/${libdir}/libpng.a || true
33 rm ${D}/${libdir}/pkgconfig/libpng.pc
34
35 rm ${D}/${bindir}/libpng-config
36}