mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-14 05:49:57 +00:00
ddaf5e0f39
Changelog: ========== - Y4M loader: add support for 10-bit 4:4:4 - Y4M loader: add support for 10-bit 4:2:2 - Y4M loader: add example for 8-bit mono - Y4M loader: add support for 10-bit mono - Y4M loader: fix support for full-range mono - Y4M loader: fix support for odd dimensions - Y4M loader: add support for 12/14/16-bit mono - test/images: Remove intermediate generated file - imlib2_view: Set title - imlib2_view: Scale image when resizing window - imlib2_view: A couple of fixes to previous commit - test_load_2: Add new y4m test images - test_load_2: Add more new y4m test images - test_load_2: Add more new y4m test images - autofoo: Use AM_LIBTOOLFLAGS, not LIBTOOLFLAGS - gradients: Fix rendering of gradients in larger images - imlib2_conv: Fix constness warning - gradients: Better gradients with angles - Compile cleanly with -Wdouble-promotion - XPM loader: Add missing progress callback on incomplete image data Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
37 lines
1.3 KiB
BlitzBasic
37 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"
|
|
SRCREV = "8c6a7640c91d7815a6318d3641554869c62cc926"
|
|
|
|
inherit autotools pkgconfig lib_package
|
|
|
|
AUTO_LIBNAME_PKGS = ""
|
|
|
|
SRC_URI = "git://git.enlightenment.org/old/legacy-${BPN}.git;protocol=https;branch=master;tag=v${PV}"
|
|
|
|
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"
|