blob: d51dd119e4273021e8ec262421cb80948eff4537 (
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
|
DESCRIPTION = "Edje is a complex graphical design & layout library."
# can also install vim data files
DEPENDS = "virtual/evas virtual/ecore eet embryo edje-native"
LICENSE = "MIT"
PR = "r7"
## package.bbclass kills packages when there are duplicates, this means
## that efl.bbclass can't have PACKAGES += and so the FILES for previous
## packages take precedence over -utils
#PACKAGES = "edje-utils"
#RPROVIDES_edje-utils += "libedje-utils"
#FILES_edje-utils = "${bindir}/edje ${bindir}/edje_* ${datadir}/edje/data/template ${datadir}/edje/include"
#RDEPENDS_edje-utils += "libembryo-utils cpp cpp-symlinks gcc gcc-symlinks"
inherit efl
SRC_URI += "${E_CVS};module=e17/libs/edje/m4;date=20060101"
do_configure_prepend() {
install -d "${S}/m4"
install "${WORKDIR}/m4/"*.m4 "${S}/m4"
aclocal -I m4
}
LEAD_SONAME = "libedje.so"
FILES_${PN}-examples = "${datadir}/edje/data/images \
${datadir}/edje/data/src \
${datadir}/edje/data/test \
${datadir}/edje/data/*.sh"
FILES_${SRCNAME}-themes = ""
|