blob: 4c47f1d2ab5d59ec7daef83bb8c30a23db9a9ee8 (
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
33
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
}
|