diff options
author | Michael Lauer <mickey@vanille-media.de> | 2007-06-21 03:51:17 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2007-06-21 03:51:17 +0000 |
commit | a375ded2d26d83858eb03dcb716f76969f8efa4c (patch) | |
tree | 31df8b093e56d48282878cef75d8fd02f051407e /packages/e17/entrance_0.9.0.010.bb | |
parent | 2a018a41a0106416788e36c574375c7654f27e33 (diff) |
e17 applications: catch up with EFL overhaul
Diffstat (limited to 'packages/e17/entrance_0.9.0.010.bb')
-rw-r--r-- | packages/e17/entrance_0.9.0.010.bb | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/packages/e17/entrance_0.9.0.010.bb b/packages/e17/entrance_0.9.0.010.bb new file mode 100644 index 0000000000..4c47f1d2ab --- /dev/null +++ b/packages/e17/entrance_0.9.0.010.bb @@ -0,0 +1,34 @@ +DESCRIPTION = "Entrance is the Enlightenment login manager" +LICENSE = "MIT" +# can also use pam and crypt +DEPENDS = "evas ecore edje esmart bash keylaunch xserver-common login-manager" +RDEPENDS += "glibc-gconv-iso8859-1 entrance-themes" +PR = "r0" + +inherit e + +SRC_URI += "\ + file://config-db.patch;patch=1 \ + file://allow-missing-xsession.patch;patch=1 \ + file://run-Xinit.patch;patch=1 \ + file://fix-auth-mode.patch;patch=1 \ + file://use-bash.patch;patch=1 \ + file://Sessions" + +S = "${WORKDIR}/entrance-${PV}" + +EXTRA_OECONF = "--with-edje-cc=${STAGING_BINDIR_NATIVE}/edje_cc \ + --with-xsession=/etc/X11/Xsession \ + --with-auth-mode=0" + +FILES_${PN}-dbg += "${libexecdir}/entrance/.debug/*" + +do_install_append() { + install -d ${D}/etc/X11/Xsession.d + install -d ${D}/etc/X11/Sessions + + install -m 755 ${WORKDIR}/Sessions/* ${D}/etc/X11/Sessions + + install -d ${D}/etc/X11/login-managers/ + mv ${D}/etc/init.d/entrance ${D}/etc/X11/login-managers/entrance +} |