DESCRIPTION = "Evas is a hardware-accelerated canvas API that can draw \ anti-aliased text, smooth super and sub-images, alpha-blend, as well as drop \ down to using normal X11 primitives such as pixmaps, lines and rectangles if \ your CPU or graphics hardware are too slow." LICENSE = "MIT" # can also depend on valgrind (?) DEPENDS = "freetype libpng jpeg eet edb" PROVIDES += "virtual/evas" inherit efl export FREETYPE_CONFIG = "${STAGING_BINDIR}/freetype-config${@binconfig_suffix(d)}" SRC_URI = "http://enlightenment.freedesktop.org/files/evas-${PV}.tar.gz \ file://fix-configure-${PV}.patch;patch=1 \ cvs://anonymous@thinktux.net/root;module=e17/libs/evas/m4;date=20050926" S = "${WORKDIR}/evas-${PV}" FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/evas" EXTRA_OECONF = "" do_configure_prepend() { if [ -e "${WORKDIR}/m4" ]; then install -d "${S}/m4" install "${WORKDIR}/m4/"*.m4 "${S}/m4" aclocal -I m4 fi } do_configure () { autotools_do_configure #find ${S} -type f | xargs sed -i 's:@FREETYPE_CFLAGS@:-I${STAGING_INCDIR}/freetype2:' #find ${S} -name Makefile | xargs sed -i 's:--tag=CC:-lfreetype --tag=CC:' } headers = "" libraries = "libevas"