diff options
author | Justin Patrin <papercrane@gmail.com> | 2007-06-01 06:53:48 +0000 |
---|---|---|
committer | Justin Patrin <papercrane@gmail.com> | 2007-06-01 06:53:48 +0000 |
commit | ffc3fe8a8f1a5de133366a7df62afac2f59dd4a2 (patch) | |
tree | efca909710bcca66f40aec9c6e8d846b8aaa6852 /packages/e17/entrance_0.9.0.009.bb | |
parent | e7eac725feb98cf2c47783cd481af35ce21bf39b (diff) |
efl, e17: update to latest versions, entrance has been heavily patched and seems to have some issues so I left the old version as the default
Diffstat (limited to 'packages/e17/entrance_0.9.0.009.bb')
-rw-r--r-- | packages/e17/entrance_0.9.0.009.bb | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/packages/e17/entrance_0.9.0.009.bb b/packages/e17/entrance_0.9.0.009.bb new file mode 100644 index 0000000000..6e21926860 --- /dev/null +++ b/packages/e17/entrance_0.9.0.009.bb @@ -0,0 +1,40 @@ +DESCRIPTION = "Entrance is the Enlightenment login manager" +LICENSE = "MIT" +# can also use pam and crypt +DEPENDS = "evas-x11 ecore-x11 edje esmart-x11 bash keylaunch xserver-common login-manager" +RDEPENDS += "bash keylaunch xserver-common glibc-gconv-iso8859-1 login-manager entrance-themes" +HOMEPAGE = "http://www.enlightenment.org" +PR = "r1" + +DEFAULT_PREFERENCE = "-1" + +inherit e + +SRC_URI = "${E_URI}/entrance-${PV}.tar.gz \ + 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" +# file://disable-autodetect.patch;patch=1 \ +# file://set-display-env.patch;patch=1 \ + +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" +FILES_${PN} += "${bindir} ${sbindir} /etc ${datadir} ${libexecdir}" + +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 +} |