diff options
Diffstat (limited to 'meta-efl/recipes-efl/e17/exquisite_svn.bb')
-rw-r--r-- | meta-efl/recipes-efl/e17/exquisite_svn.bb | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/meta-efl/recipes-efl/e17/exquisite_svn.bb b/meta-efl/recipes-efl/e17/exquisite_svn.bb new file mode 100644 index 000000000..fcfb65cf8 --- /dev/null +++ b/meta-efl/recipes-efl/e17/exquisite_svn.bb | |||
@@ -0,0 +1,41 @@ | |||
1 | DESCRIPTION = "A psplash replacement for display" | ||
2 | LICENSE = "MIT BSD" | ||
3 | DEPENDS = "eet evas ecore embryo edje" | ||
4 | PV = "0.0.1+svnr${SRCPV}" | ||
5 | PR = "r11" | ||
6 | SRCREV = "${EFL_SRCREV}" | ||
7 | RRECOMMENDS_${PN} = "exquisite-themes" | ||
8 | RCONFLICTS_${PN} = "psplash virtual-psplash" | ||
9 | |||
10 | SRCNAME = "exquisite" | ||
11 | |||
12 | inherit e | ||
13 | SRC_URI = "${E_SVN}/trunk;module=${SRCNAME};proto=http;scmdata=keep" | ||
14 | S = "${WORKDIR}/${SRCNAME}" | ||
15 | |||
16 | EXTRA_OECONF = "--with-edje-cc=${STAGING_BINDIR_NATIVE}/edje_cc" | ||
17 | |||
18 | SRC_URI += "file://exquisite-init" | ||
19 | SRC_URI += "file://splashfuncs" | ||
20 | |||
21 | inherit update-rc.d | ||
22 | |||
23 | do_install_prepend() { | ||
24 | install -d ${D}/mnt/.splash/ | ||
25 | install -d ${D}${sysconfdir}/init.d | ||
26 | install -m 0755 ${WORKDIR}/exquisite-init ${D}${sysconfdir}/init.d/exquisite | ||
27 | install -d ${D}${sysconfdir}/default | ||
28 | install -m 0755 ${WORKDIR}/splashfuncs ${D}${sysconfdir}/default/splashfuncs | ||
29 | install -d ${D}${bindir} | ||
30 | ln -s exquisite-write ${D}${bindir}/splash-write | ||
31 | } | ||
32 | |||
33 | |||
34 | do_install_append() { | ||
35 | rm -rf ${D}${datadir}/exquisite/data/fonts/* | ||
36 | } | ||
37 | |||
38 | INITSCRIPT_NAME = "exquisite" | ||
39 | INITSCRIPT_PARAMS = "start 01 S . stop 20 0 1 6 ." | ||
40 | |||
41 | FILES_${PN} += "/mnt/.splash/" | ||