summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-qt/fingerterm
diff options
context:
space:
mode:
authorMartin Jansa <Martin.Jansa@gmail.com>2016-01-07 15:57:45 +0100
committerMartin Jansa <Martin.Jansa@gmail.com>2016-01-14 11:30:15 +0100
commit2bd11da4b50f401c9c49975aeedaaafa6a59d08b (patch)
treedb1b531c534d13cd51d0b9fa4c418b89e899879e /meta-oe/recipes-qt/fingerterm
parent8700ba38804af3c27f3662737f679afa1bdc86da (diff)
downloadmeta-openembedded-2bd11da4b50f401c9c49975aeedaaafa6a59d08b.tar.gz
recipes: remove recipes using or depending on qt4 bbclasses or recipes
* anki is removed because it runtime depends on python-pyqt, other recipes are inheriting one of bbclasses removed from oe-core in: commit cb89d2b25b4edb1241bc5426a69a6bc44df9be2c Author: Alexander Kanavin <alexander.kanavin@linux.intel.com> Date: Fri Nov 27 15:48:20 2015 +0200 qt4: remove recipes and classes * if you're still using one of these recipes add it to meta-qt4 layer Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-qt/fingerterm')
-rw-r--r--meta-oe/recipes-qt/fingerterm/fingerterm_1.0.2.bb43
1 files changed, 0 insertions, 43 deletions
diff --git a/meta-oe/recipes-qt/fingerterm/fingerterm_1.0.2.bb b/meta-oe/recipes-qt/fingerterm/fingerterm_1.0.2.bb
deleted file mode 100644
index 167d141e0..000000000
--- a/meta-oe/recipes-qt/fingerterm/fingerterm_1.0.2.bb
+++ /dev/null
@@ -1,43 +0,0 @@
1DESCRIPTION = "A terminal emulator for Harmattan (Nokia N9/N950) with a custom \
2virtual keyboard and usability-enhancing features such as URL grabber, pan \
3gestures and customizable shortcut menu. Designed especially to be used with \
4screen and irssi."
5HOMEPAGE = "http://hqh.unlink.org/harmattan"
6LICENSE = "GPLv3"
7LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
8SECTION = "qt/app"
9
10
11inherit qt4x11 pkgconfig
12
13SRC_URI = " \
14 http://hqh.unlink.org/harmattan/fingerterm-${PV}.tar.gz \
15"
16
17SRC_URI[md5sum] = "d53b0f463c025583cd52accf95715448"
18SRC_URI[sha256sum] = "c21a07cc411d09739bd7fa248eba2bf96427b3f032382a044b6674dd82d95150"
19
20S = "${WORKDIR}/${BPN}"
21
22FILES_${PN} = " \
23 ${bindir}/${BPN} \
24 ${datadir}/applications/${BPN}.desktop \
25 ${datadir}/pixmaps/${BPN}.png \
26"
27
28do_install() {
29 install -d ${D}${bindir}
30 install -m 0755 ${S}/${BPN} ${D}${bindir}
31
32 sed -i -e '/Exec.*/d' fingerterm.desktop
33 sed -i -e '/Icon.*/d' fingerterm.desktop
34
35 echo 'Exec=${bindir}/${BPN}' >> fingerterm.desktop
36 echo 'Icon=${BPN}' >> fingerterm.desktop
37
38 install -d ${D}${datadir}/applications
39 install -m 0644 ${S}/${BPN}.desktop ${D}${datadir}/applications
40
41 install -d ${D}${datadir}/pixmaps
42 install -m 0644 ${S}/${BPN}.png ${D}${datadir}/pixmaps
43}