diff options
author | Alexander Kanavin <alexander.kanavin@linux.intel.com> | 2017-05-03 15:59:45 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-06-28 15:52:17 +0100 |
commit | 64bf619da6f062e6c17da0c16b8297516fa32ede (patch) | |
tree | a2d4e2a2569a338997a258e93fe3fc97f5714548 /meta | |
parent | ac0a2f8bff71ab2c8f6a8aa1023bbf19135c6e4a (diff) | |
download | poky-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')
-rw-r--r-- | meta/recipes-extended/packagegroups/packagegroup-core-lsb.bb | 1 | ||||
-rw-r--r-- | meta/recipes-lsb4/libpng/libpng12_1.2.57.bb | 36 |
2 files changed, 0 insertions, 37 deletions
diff --git a/meta/recipes-extended/packagegroups/packagegroup-core-lsb.bb b/meta/recipes-extended/packagegroups/packagegroup-core-lsb.bb index 61b35e6892..a6fb302305 100644 --- a/meta/recipes-extended/packagegroups/packagegroup-core-lsb.bb +++ b/meta/recipes-extended/packagegroups/packagegroup-core-lsb.bb | |||
@@ -177,7 +177,6 @@ RDEPENDS_packagegroup-core-lsb-core = "\ | |||
177 | ncurses \ | 177 | ncurses \ |
178 | zlib \ | 178 | zlib \ |
179 | nspr \ | 179 | nspr \ |
180 | libpng12 \ | ||
181 | nss \ | 180 | nss \ |
182 | " | 181 | " |
183 | 182 | ||
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 @@ | |||
1 | SUMMARY = "PNG image format decoding library" | ||
2 | HOMEPAGE = "http://www.libpng.org/" | ||
3 | SECTION = "libs" | ||
4 | LICENSE = "Libpng" | ||
5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=597b8a91994a3e27ae6aa79bf02677d9 \ | ||
6 | file://png.h;beginline=19;endline=109;md5=166406397718925b660f0033f7558ef7" | ||
7 | DEPENDS = "zlib" | ||
8 | |||
9 | PN = "libpng12" | ||
10 | S = "${WORKDIR}/libpng-${PV}" | ||
11 | |||
12 | SRC_URI = "${GENTOO_MIRROR}/libpng-${PV}.tar.xz" | ||
13 | |||
14 | SRC_URI[md5sum] = "307052e5e8af97b82b17b64fb1b3677a" | ||
15 | SRC_URI[sha256sum] = "0f4620e11fa283fedafb474427c8e96bf149511a1804bdc47350963ae5cf54d8" | ||
16 | |||
17 | UPSTREAM_CHECK_URI = "http://sourceforge.net/projects/libpng/files/libpng12/" | ||
18 | UPSTREAM_CHECK_REGEX = "/libpng12/(?P<pver>(\d+[\.\-_]*)+)/" | ||
19 | |||
20 | BINCONFIG_GLOB = "${PN}-config" | ||
21 | |||
22 | inherit autotools binconfig pkgconfig | ||
23 | |||
24 | do_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 | } | ||