diff options
Diffstat (limited to 'meta-oe/recipes-navigation')
-rw-r--r-- | meta-oe/recipes-navigation/monav/monav/monav.desktop | 10 | ||||
-rw-r--r-- | meta-oe/recipes-navigation/monav/monav/monav.png | bin | 21543 -> 0 bytes | |||
-rw-r--r-- | meta-oe/recipes-navigation/monav/monav_0.3.bb | 37 |
3 files changed, 0 insertions, 47 deletions
diff --git a/meta-oe/recipes-navigation/monav/monav/monav.desktop b/meta-oe/recipes-navigation/monav/monav/monav.desktop deleted file mode 100644 index 5e861136f0..0000000000 --- a/meta-oe/recipes-navigation/monav/monav/monav.desktop +++ /dev/null | |||
@@ -1,10 +0,0 @@ | |||
1 | [Desktop Entry] | ||
2 | Name=MoNav | ||
3 | Exec=monav | ||
4 | Icon=monav | ||
5 | Terminal=false | ||
6 | Type=Application | ||
7 | Categories=Utility;Geography; | ||
8 | X-MB-SingleInstance=true | ||
9 | StartupNotify=true | ||
10 | Comment=Fast navigation system featuring exact routing. | ||
diff --git a/meta-oe/recipes-navigation/monav/monav/monav.png b/meta-oe/recipes-navigation/monav/monav/monav.png deleted file mode 100644 index 75b5a79623..0000000000 --- a/meta-oe/recipes-navigation/monav/monav/monav.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/meta-oe/recipes-navigation/monav/monav_0.3.bb b/meta-oe/recipes-navigation/monav/monav_0.3.bb deleted file mode 100644 index 982d682721..0000000000 --- a/meta-oe/recipes-navigation/monav/monav_0.3.bb +++ /dev/null | |||
@@ -1,37 +0,0 @@ | |||
1 | DESCRIPTION = "MoNav is a fast navigation system featuring exact routing with OpenStreetMap data." | ||
2 | HOMEPAGE = "http://code.google.com/p/monav" | ||
3 | SECTION = "x11/applications" | ||
4 | LICENSE = "GPLv3+" | ||
5 | LIC_FILES_CHKSUM = "file://misc/license_template_christian;md5=d99c9b3bafdde80adee296762376348d" | ||
6 | |||
7 | DEPENDS = "qt-mobility-x11" | ||
8 | PR = "r1" | ||
9 | |||
10 | SRC_URI = "http://monav.googlecode.com/files/${BPN}-${PV}.tar.gz \ | ||
11 | file://monav.png \ | ||
12 | file://monav.desktop" | ||
13 | |||
14 | SRC_URI[md5sum] = "d048ccef8c6a21e8656aa4af3fcb8329" | ||
15 | SRC_URI[sha256sum] = "5a3bf9e9f7368b81ba8e2f755960082fc42a2e2c78f9de645f99ba293c77ee7f" | ||
16 | |||
17 | inherit qmake2 qt4x11 | ||
18 | |||
19 | EXTRA_QMAKEVARS_PRE="CONFIG+="release"" | ||
20 | QMAKE_PROFILES="monavclient.pro" | ||
21 | |||
22 | do_install_append() { | ||
23 | install -d ${D}${datadir}/monav | ||
24 | install -d ${D}${datadir}/monav/images | ||
25 | cp -a ${S}/images/* ${D}${datadir}/monav/images | ||
26 | |||
27 | install -d ${D}${datadir}/icons | ||
28 | install -m 0644 ${WORKDIR}/monav.png ${D}${datadir}/icons | ||
29 | |||
30 | install -d ${D}${bindir} | ||
31 | install -m 0755 ${S}/bin/monav ${D}${bindir}/monav | ||
32 | |||
33 | install -d ${D}/${datadir}/applications | ||
34 | install -m 0644 ${WORKDIR}/monav.desktop ${D}/${datadir}/applications | ||
35 | } | ||
36 | |||
37 | FILES_${PN} += "${bindir}/monav ${datadir}/icons/monav.png" | ||