diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2012-12-05 21:38:56 +0100 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2012-12-11 01:53:00 +0100 |
commit | 5f131ed5d87b1b59746b6fdeb5f3168757fc0e12 (patch) | |
tree | 261279ffc31c2d176eed9200698c91188343c370 /meta-oe | |
parent | ab1ab6a9ac6cf1a2707ba2718087ea8abebf6b64 (diff) | |
download | meta-openembedded-5f131ed5d87b1b59746b6fdeb5f3168757fc0e12.tar.gz |
gateone: fix unpackaged files
* fixes:
gateone-1.1: gateone: Files/directories were installed but not shipped
/usr
/usr/lib
/usr/lib/python2.7
/usr/lib/python2.7/site-packages
/usr/lib/python2.7/site-packages/gateone-1.1-py2.7.egg-info
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe')
-rw-r--r-- | meta-oe/recipes-connectivity/gateone/gateone_git.bb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta-oe/recipes-connectivity/gateone/gateone_git.bb b/meta-oe/recipes-connectivity/gateone/gateone_git.bb index f6aa3776d..f0f727a57 100644 --- a/meta-oe/recipes-connectivity/gateone/gateone_git.bb +++ b/meta-oe/recipes-connectivity/gateone/gateone_git.bb | |||
@@ -2,7 +2,7 @@ DESCRIPTION = "HTML5 (plugin-free) web-based terminal emulator and SSH client" | |||
2 | LICENSE = "AGPLv3" | 2 | LICENSE = "AGPLv3" |
3 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=ee5b168fc7de89a0cadc49e27830aa2c" | 3 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=ee5b168fc7de89a0cadc49e27830aa2c" |
4 | 4 | ||
5 | PR = "r8" | 5 | PR = "r9" |
6 | 6 | ||
7 | PV = "1.1" | 7 | PV = "1.1" |
8 | SRCREV = "bb74e1095adb66b04b51ed6ff10ae0aa96afdd46" | 8 | SRCREV = "bb74e1095adb66b04b51ed6ff10ae0aa96afdd46" |
@@ -13,7 +13,7 @@ SRC_URI = "git://github.com/liftoff/GateOne.git \ | |||
13 | 13 | ||
14 | S = "${WORKDIR}/git" | 14 | S = "${WORKDIR}/git" |
15 | 15 | ||
16 | inherit distutils allarch | 16 | inherit distutils allarch python-dir |
17 | 17 | ||
18 | export prefix = "${localstatedir}/lib" | 18 | export prefix = "${localstatedir}/lib" |
19 | 19 | ||
@@ -26,7 +26,7 @@ do_install_append() { | |||
26 | install -m 0644 ${WORKDIR}/server.conf ${D}/var/lib/gateone/server.conf | 26 | install -m 0644 ${WORKDIR}/server.conf ${D}/var/lib/gateone/server.conf |
27 | } | 27 | } |
28 | 28 | ||
29 | FILES_${PN} = "${localstatedir}/lib ${localstatedir}/log ${base_libdir} ${sysconfdir}" | 29 | FILES_${PN} = "${localstatedir}/lib ${localstatedir}/log ${base_libdir} ${sysconfdir} ${PYTHON_SITEPACKAGES_DIR}" |
30 | RDEPENDS_${PN} = "file \ | 30 | RDEPENDS_${PN} = "file \ |
31 | mime-support \ | 31 | mime-support \ |
32 | openssh-ssh \ | 32 | openssh-ssh \ |