blob: 82302b97060ca58efc2ebef96900ef0629e56484 (
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
53
54
55
56
57
|
DESCRIPTION = "EFL based widget set for mobile devices"
LICENSE = "LGPL"
DEPENDS = "eet-native efreet evas ecore edje eet edbus"
PV = "0.7.0+svnr${SRCPV}"
PR = "r10"
SRCREV = "${EFL_SRCREV}"
inherit efl
EXTRA_OECONF = "\
--with-edje-cc=${STAGING_BINDIR_NATIVE}/edje_cc \
--with-eet-eet=${STAGING_BINDIR_NATIVE}/eet \
"
SRC_URI = "svn://svn.enlightenment.org/svn/e/trunk/TMP/st;module=elementary;proto=http"
S = "${WORKDIR}/elementary"
do_compile_append() {
sed -i -e s:${STAGING_DIR_TARGET}::g \
-e s:/${TARGET_SYS}::g \
elementary.pc
}
PACKAGES =+ "${PN}-configs"
RDEPENDS_${PN} = "\
elementary-themes \
elementary-configs \
"
RSUGGESTS_${PN} = "elementary-tests"
FILES_${PN}-themes = "\
${datadir}/elementary/themes \
"
FILES_${PN}-configs = "\
${datadir}/elementary/config \
"
FILES_${PN}-dbg += "\
${libdir}/elementary/modules/test_entry/*/.debug \
"
FILES_${PN}-tests = "\
${bindir}/elementary* \
${datadir}/elementary/images \
${datadir}/elementary/objects \
${datadir}/applications/* \
${datadir}/icons/* \
${libdir}/elementary/modules/test_entry/* \
"
# Some upgrade path tweaking, as in evas
AUTO_LIBNAME_PKGS = ""
RREPLACES_${PN}-themes = "libelementary-ver-pre-svn-05-themes libelementary-ver-svn-06-themes libelementary-ver-pre-svn-06-themes"
RREPLACES_${PN}-configs = "libelementary-ver-pre-svn-05-configs libelementary-ver-svn-06-configs libelementary-ver-pre-svn-06-configs"
|