blob: fd943acb9d354f0ff1dcd92fcf0a532f20196076 (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
DESCRIPTION = "Ecore is the core event abstraction layer for the enlightenment \
foundation libraries. It makes makes doing selections, drag and drop, event loops, \
timeouts and idle handlers fast, optimized, and convenient."
HOMEPAGE = "http://www.enlightenment.org"
SECTION = "libs"
PRIORITY = "optional"
LEAD_SONAME = "libecore.so"
PV = "${CVSDATE}"
DEPENDS = "edb eet evas freetype edb-native"
PR = "r2"
SRC_URI = "cvs://anonymous@cvs.sourceforge.net/cvsroot/enlightenment;module=e17/libs/ecore"
S = "${WORKDIR}/ecore"
inherit autotools binconfig
export EDB_CONFIG = "${STAGING_BINDIR}/edb-config"
export EET_CONFIG = "${STAGING_BINDIR}/eet-config"
export EVAS_CONFIG = "${STAGING_BINDIR}/evas-config"
export FREETYPE_CONFIG = "${STAGING_BINDIR}/freetype-config"
EXTRA_OECONF = "--enable-ecore-fb \
--enable-ecore-job \
--enable-ecore-evas-fb \
--disable-ecore-evas-x \
--disable-ecore-evas-gl \
--enable-ecore-con \
--enable-ecore-ipc \
--enable-ecore-txt \
--disable-ecore-x \
--enable-ecore-config \
--disable-openssl"
parts = "Ecore Ecore_Job \
Ecore_Txt Ecore_Fb Ecore_Con \
Ecore_Ipc Ecore_Evas Ecore_Config"
do_stage () {
for p in ${parts}; do
dir=`echo $p|tr A-Z a-z`
install -m 0644 ${S}/src/lib/$dir/$p.h ${STAGING_INCDIR}/
oe_libinstall -C src/lib/$dir lib$dir ${STAGING_LIBDIR}/
done
install -m 0644 ${S}/src/lib/ecore/Ecore_Data.h ${STAGING_INCDIR}/
install -m 0644 ${S}/ecore.m4 ${STAGING_DATADIR}/aclocal/
}
PACKAGES += "ecore-examples"
FILES_${PN} = "${libdir}/libecore*.so* ${libdir}/ecore_config_ipc_ecore.so"
FILES_${PN}-dev += "${bindir}/ecore-config ${libdir}/pkgconfig"
FILES_${PN}-examples = "${bindir}/ecore_test ${bindir}/ecore_evas_test ${datadir}"
|