diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2012-11-20 17:25:00 +0100 |
---|---|---|
committer | Koen Kooi <koen@dominion.thruhere.net> | 2012-11-29 11:04:53 +0100 |
commit | 57cbe778f0885b0a9819d14938fe68ce3539399e (patch) | |
tree | 2c716e3ff1c846305b06a41f5e916fc91ed30b22 /meta-efl/recipes-efl/e17/e-wm-theme-b-and-w_svn.bb | |
parent | 9b3ae30b8ccac10bf84091d2d5754e85236c7272 (diff) | |
download | meta-openembedded-57cbe778f0885b0a9819d14938fe68ce3539399e.tar.gz |
e-wm-theme-b-and-w: add recipe for old default theme b_and_w
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-efl/recipes-efl/e17/e-wm-theme-b-and-w_svn.bb')
-rw-r--r-- | meta-efl/recipes-efl/e17/e-wm-theme-b-and-w_svn.bb | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/meta-efl/recipes-efl/e17/e-wm-theme-b-and-w_svn.bb b/meta-efl/recipes-efl/e17/e-wm-theme-b-and-w_svn.bb new file mode 100644 index 000000000..f826e1069 --- /dev/null +++ b/meta-efl/recipes-efl/e17/e-wm-theme-b-and-w_svn.bb | |||
@@ -0,0 +1,31 @@ | |||
1 | DESCRIPTION = "b-and-w theme was default E17 theme before alpha3 and some people still prefers it." | ||
2 | SECTION = "e/utils" | ||
3 | DEPENDS = "edje-native" | ||
4 | RDEPENDS_${PN} = "e-wm" | ||
5 | LICENSE = "MIT BSD" | ||
6 | # upstream was asked to include license infor in THEME dir | ||
7 | LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302" | ||
8 | |||
9 | inherit allarch | ||
10 | |||
11 | SRCREV = "${EFL_SRCREV}" | ||
12 | PV = "0.0+svnr${SRCPV}" | ||
13 | |||
14 | inherit e-base | ||
15 | |||
16 | SRCNAME = "b_and_w" | ||
17 | SRC_URI = "${E_SVN}/trunk/THEMES;module=${SRCNAME};protocol=http" | ||
18 | S = "${WORKDIR}/${SRCNAME}/e" | ||
19 | |||
20 | do_compile() { | ||
21 | # unfortunately hardcoded edje_cc in Makefile | ||
22 | sed -i "s#\tedje_cc#\t${STAGING_BINDIR_NATIVE}/edje_cc#g" Makefile | ||
23 | make | ||
24 | } | ||
25 | |||
26 | do_install() { | ||
27 | install -d ${D}${datadir}/enlightenment/data/themes/ | ||
28 | install -m 0644 ${S}/b_and_w.edj ${D}${datadir}/enlightenment/data/themes/ | ||
29 | } | ||
30 | |||
31 | FILES_${PN} = "${datadir}/enlightenment/data/themes/" | ||