summaryrefslogtreecommitdiff
path: root/packages
diff options
context:
space:
mode:
authorJunqian Gordon Xu <xjqian@gmail.com>2008-10-12 02:27:49 +0000
committerJunqian Gordon Xu <xjqian@gmail.com>2008-10-12 02:27:49 +0000
commit93f6cc9eb7202ceea346754f157571abb8ea92ee (patch)
treeb61171e47b373ec997583a200a31036aa7bf65db /packages
parent3bc3e2b4ff8e6e17351b2938fb18ae11eb069eed (diff)
add mumpot: courtesy of Andreas Kemnade. close bug# 4714
Diffstat (limited to 'packages')
-rw-r--r--packages/mumpot/.mtn2git_empty0
-rw-r--r--packages/mumpot/files/.mtn2git_empty0
-rw-r--r--packages/mumpot/files/mumpot-mapnik.desktop8
-rw-r--r--packages/mumpot/files/mumpot-tah.desktop8
-rw-r--r--packages/mumpot/mumpot_0.3.1.bb18
5 files changed, 34 insertions, 0 deletions
diff --git a/packages/mumpot/.mtn2git_empty b/packages/mumpot/.mtn2git_empty
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/packages/mumpot/.mtn2git_empty
diff --git a/packages/mumpot/files/.mtn2git_empty b/packages/mumpot/files/.mtn2git_empty
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/packages/mumpot/files/.mtn2git_empty
diff --git a/packages/mumpot/files/mumpot-mapnik.desktop b/packages/mumpot/files/mumpot-mapnik.desktop
new file mode 100644
index 0000000000..b02b077de1
--- /dev/null
+++ b/packages/mumpot/files/mumpot-mapnik.desktop
@@ -0,0 +1,8 @@
+[Desktop Entry]
+Name=Mumpot Mapnik
+Comment=Mumpot Mapnuk
+Exec=mumpot-mapnik
+Terminal=0
+Type=Application
+Categories=Application;PIM;GTK
+StartupNotify=True
diff --git a/packages/mumpot/files/mumpot-tah.desktop b/packages/mumpot/files/mumpot-tah.desktop
new file mode 100644
index 0000000000..bcdba40b0a
--- /dev/null
+++ b/packages/mumpot/files/mumpot-tah.desktop
@@ -0,0 +1,8 @@
+[Desktop Entry]
+Name=Mumpot t@h
+Comment=Mumpot t@h
+Exec=mumpot-tah
+Terminal=0
+Type=Application
+Categories=Application;PIM;GTK
+StartupNotify=True
diff --git a/packages/mumpot/mumpot_0.3.1.bb b/packages/mumpot/mumpot_0.3.1.bb
new file mode 100644
index 0000000000..c5b9091bdb
--- /dev/null
+++ b/packages/mumpot/mumpot_0.3.1.bb
@@ -0,0 +1,18 @@
+DESCRIPTION = "A map-viewer, simple editor and routing application for OSM maps"
+HOMEPAGE = "http://wiki.openstreetmap.org/index.php/Mumpot"
+AUTHOR = "Andreas Kemnade"
+SECTION = "x11/applications"
+LICENSE = "GPLv2"
+DEPENDS = "gtk+ bluez-libs bzip2 libxml2 libpng jpeg"
+
+SRC_URI = "http://osm.andi.de1.cc/mumpot-${PV}.tar.gz \
+ file://mumpot-tah.desktop \
+ file://mumpot-mapnik.desktop"
+
+inherit autotools pkgconfig
+
+do_install_append() {
+ install -d ${D}${datadir}/applications
+ install -m 0644 ${WORKDIR}/mumpot-tah.desktop ${D}${datadir}/applications/mumpot-tah.desktop
+ install -m 0644 ${WORKDIR}/mumpot-mapnik.desktop ${D}${datadir}/applications/mumpot-mapnik.desktop
+}