blob: 264a57b134ed53104b1c3f3de90454e31c314e00 (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
DESCRIPTION = "HTML5 (plugin-free) web-based terminal emulator and SSH client"
LICENSE = "AGPLv3"
LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=07d5a2790569bd3e3b422b69ccd43bec"
PR = "r12"
PV = "0.9"
SRCREV = "3983772b2294ea976d6f1422dc294b8950ad0e75"
SRC_URI = "git://github.com/liftoff/GateOne.git \
file://gateone-avahi.service \
file://gateone.service \
"
S = "${WORKDIR}/git"
inherit distutils allarch systemd
do_configure_prepend() {
sed -i -e s:/opt:${D}${localstatedir}/lib: setup.py
}
do_install_append() {
install -d ${D}${localstatedir}/log/${BPN}
install -m 0755 -d ${D}${base_libdir}/systemd/system
install -m 0644 ${WORKDIR}/gateone.service ${D}${base_libdir}/systemd/system/
install -m 0755 -d ${D}${sysconfdir}/avahi/services/
install -m 0644 ${WORKDIR}/gateone-avahi.service ${D}${sysconfdir}/avahi/services/
}
SYSTEMD_PACKAGES = "${PN}"
SYSTEMD_SERVICE = "gateone.service"
FILES_${PN} = "${localstatedir} ${base_libdir} ${sysconfdir}"
RDEPENDS_${PN} = "python-tornado \
python-datetime \
python-shell \
python-subprocess \
python-terminal \
python-io \
python-compression \
python-syslog \
python-misc \
python-crypt \
python-netclient \
python-email \
python-html \
python-textutils \
python-pyopenssl \
findutils \
python-simplejson \
python-multiprocessing \
python-pkgutil \
python-imaging \
file \
openssh-ssh \
mime-support \
"
|