mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-15 06:10:02 +00:00
c79ede2655
Changelog: =========== - Y4M loader: add support for full range color - Y4M loader: add support for 10-bit 4:2:0 - XPM loader: Fix potential segv on malformed file - imlib2_load: Add crc32 printout - test: Corrections for for libjxl-0.10 - XPM loader: Fix some color table parsing errors - XPM loader: Major overhaul - test_load_2: Add full range color y4m image - test_load_2: Add some more y4m test images - Some cleanups in asm code - Add endbr32/64 instruction at the start of asm functions - Add missing CET (Control-flow Enforcement Technology) bits in asm code - imlib2_view: Use poll(), not select() - imlib2_view: Minor cleanup - imlib2_view: Enable an alternate background color set (red/green) - imlib2_view: Optionally disable final anti-aliased rendering - imlib2_view: Rename scaling variables - imlib2_view: Optionally scale on input - imlib2_view: Enable specifying border - Y4M loader: Fix frame size calculation for 10-bit 4:2:0 format - imlib2_view: Enable specifying background checkerboard colors Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
39 lines
1.3 KiB
BlitzBasic
39 lines
1.3 KiB
BlitzBasic
SUMMARY = "A graphic library for file loading, saving, rendering, and manipulation"
|
|
|
|
HOMEPAGE = "https://sourceforge.net/projects/enlightenment/"
|
|
SECTION = "libs"
|
|
LICENSE = "Imlib2"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=344895f253c32f38e182dcaf30fe8a35"
|
|
|
|
DEPENDS = "freetype "
|
|
PROVIDES = "virtual/imlib2"
|
|
PV = "1.12.3"
|
|
SRCREV = "143c60194c0948aac484d37bb23c59edea2ccf19"
|
|
|
|
inherit autotools pkgconfig lib_package
|
|
|
|
AUTO_LIBNAME_PKGS = ""
|
|
|
|
SRC_URI = "git://git.enlightenment.org/old/legacy-${BPN}.git;protocol=https;branch=master"
|
|
S = "${WORKDIR}/git"
|
|
|
|
PACKAGECONFIG ??= "jpeg png zlib ${@bb.utils.filter('DISTRO_FEATURES', 'x11', d)}"
|
|
|
|
X11_DEPS = "virtual/libx11 libxext libice"
|
|
PACKAGECONFIG[x11] = "--with-x,--without-x,${X11_DEPS}"
|
|
|
|
PACKAGECONFIG[gif] = "--with-gif,--without-gif,giflib"
|
|
PACKAGECONFIG[jpeg] = "--with-jpeg,--without-jpeg,jpeg"
|
|
PACKAGECONFIG[png] = "--with-png,--without-png,libpng"
|
|
PACKAGECONFIG[tiff] = "--with-tiff,--without-tiff,tiff"
|
|
PACKAGECONFIG[webp] = "--with-webp,--without-webp,libwebp"
|
|
|
|
PACKAGECONFIG[zlib] = "--with-zlib,--without-zlib,zlib"
|
|
|
|
PACKAGECONFIG[id3] = "--with-id3,--without-id3,libid3tag"
|
|
|
|
PACKAGES =+ "${BPN}-loaders ${BPN}-filters ${BPN}-data"
|
|
FILES:${PN}-data = "${datadir}"
|
|
FILES:imlib2-loaders = "${libdir}/imlib2/loaders/*.so"
|
|
FILES:imlib2-filters = "${libdir}/imlib2/filters/*.so"
|