blob: 1e3fa6ee9941a7b35e70c854ea2011d0fc4182c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
DEPENDS = "virtual/libc libpng jpeg freetype"
DESCRIPTION = "Evas is a hardware-accelerated canvas API \
that can draw anti-aliased text, smooth super and sub-sampled \
images, alpha-blend, as well as drop down to using normal X11 \
primitives such as pixmaps, lines and rectangles for speed \
if your CPU or graphics hardware are too slow."
SRC_URI = "${SOURCEFORGE_MIRROR}/enlightenment/evas-1.0.0_pre5.tar.gz \
file://${FILESDIR}/configure.patch;patch=1"
S = "${WORKDIR}/evas-1.0.0_pre5"
inherit autotools
EXTRA_OECONF = "--enable-fb \
--enable-image-loader-png \
--enable-image-loader-jpeg \
--enable-small-dither-mask \
--enable-cpu-c \
--enable-scale-smooth \
--enable-scale-sample \
--enable-convert-16-rgb-ipq \
--enable-convert-16-rgb-rot-0 \
--enable-convert-16-rgb-rot-270"
do_configure_prepend () {
cp ${FILESDIR}/pkg.m4 acinclude.m4
}
|