Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 1 | SUMMARY = "Pixman: Pixel Manipulation library" |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 2 | DESCRIPTION = "Pixman provides a library for manipulating pixel regions \ |
| 3 | -- a set of Y-X banded rectangles, image compositing using the \ |
| 4 | Porter/Duff model and implicit mask generation for geometric primitives \ |
| 5 | including trapezoids, triangles, and rectangles." |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 6 | HOMEPAGE = "http://www.pixman.org" |
| 7 | SECTION = "x11/libs" |
| 8 | DEPENDS = "zlib" |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 9 | |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 10 | SRC_URI = "https://www.cairographics.org/releases/${BP}.tar.gz \ |
| 11 | file://0001-ARM-qemu-related-workarounds-in-cpu-features-detecti.patch \ |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 12 | " |
Andrew Geissler | 4ed12e1 | 2020-06-05 18:00:41 -0500 | [diff] [blame] | 13 | SRC_URI[md5sum] = "73858c0862dd9896fb5f62ae267084a4" |
| 14 | SRC_URI[sha256sum] = "6d200dec3740d9ec4ec8d1180e25779c00bc749f94278c8b9021f5534db223fc" |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 15 | |
| 16 | # see http://cairographics.org/releases/ - only even minor versions are stable |
| 17 | UPSTREAM_CHECK_REGEX = "pixman-(?P<pver>\d+\.(\d*[02468])+(\.\d+)+)" |
| 18 | |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 19 | PE = "1" |
| 20 | |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 21 | LICENSE = "MIT & MIT-style & PD" |
| 22 | LIC_FILES_CHKSUM = "file://COPYING;md5=14096c769ae0cbb5fcb94ec468be11b3 \ |
| 23 | file://pixman/pixman-matrix.c;endline=21;md5=4a018dff3e4e25302724c88ff95c2456 \ |
| 24 | file://pixman/pixman-arm-neon-asm.h;endline=24;md5=9a9cc1e51abbf1da58f4d9528ec9d49b \ |
| 25 | " |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 26 | |
| 27 | inherit meson pkgconfig |
| 28 | |
| 29 | # These are for the tests and demos, which we don't install |
| 30 | EXTRA_OEMESON = "-Dgtk=disabled -Dlibpng=disabled" |
| 31 | # ld: pixman/libpixman-mmx.a(pixman-mmx.c.o): |
| 32 | # linking mips:loongson_2f module with previous mips:isa64 modules |
| 33 | EXTRA_OEMESON += "-Dloongson-mmi=disabled" |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 34 | # disable iwmmxt due to compile fails on most arm platforms. |
| 35 | EXTRA_OEMESON += "-Diwmmxt=disabled" |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 36 | |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 37 | BBCLASSEXTEND = "native nativesdk" |