aboutsummaryrefslogtreecommitdiffstats
path: root/zroadmap
diff options
context:
space:
mode:
authorMichael Lauer <mickey@vanille-media.de>2004-12-02 18:45:12 +0000
committerMichael Lauer <mickey@vanille-media.de>2004-12-02 18:45:12 +0000
commit5fb4b839e4b3a52798ece443160682fd1150ff9e (patch)
tree43215ec59a19539f6aaf2472ba1c00a90d9db08b /zroadmap
parent8503fbded7f04b1abf0b01886a278ad999f4ab5b (diff)
downloadopenembedded-5fb4b839e4b3a52798ece443160682fd1150ff9e.tar.gz
Merge bk://oe-devel@oe-devel.bkbits.net/packages
into r2d2.tm.informatik.uni-frankfurt.de:/local/pkg/oe/packages 2004/12/02 19:45:00+01:00 uni-frankfurt.de!mickeyl ship config files + map directory in zroadmap BKrev: 41af62b8v9Kdgsnrz6QZMKlN9PZq6A
Diffstat (limited to 'zroadmap')
-rw-r--r--zroadmap/zroadmap_1.0.8.oe42
1 files changed, 42 insertions, 0 deletions
diff --git a/zroadmap/zroadmap_1.0.8.oe b/zroadmap/zroadmap_1.0.8.oe
index e69de29bb2..d70f281512 100644
--- a/zroadmap/zroadmap_1.0.8.oe
+++ b/zroadmap/zroadmap_1.0.8.oe
@@ -0,0 +1,42 @@
+DESCRIPTION = "RoadMap is a program that provides a car navigation for Linux and UNIX. \
+It displays a map of the streets, tracks the position provided by a NMEA-compliant \
+GPS receiver, identifies the street matching this GPS position and announces the name \
+of the crossing street at the next intersection. A rudimentary trip feature allows \
+RoadMap to display some basic navigation information (distance to the destination, \
+direction, speed, etc..). Voice messages are generated that duplicate some of the screen information."
+SECTION = "opie/applications"
+PRIORITY = "optional"
+AUTHOR = "Pascal Martin <pascal.martin@iname.com>"
+HOMEPAGE = "http://roadmap.digitalomaha.net/maps.html"
+MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de>"
+LICENSE = "GPL"
+PR = "r1"
+
+SRC_URI = "http://roadmap.digitalomaha.net/roadmap/roadmap_1_0_8_src.tar.gz \
+ http://roadmap.digitalomaha.net/maps/usdir.rdm.tgz \
+ file://zroadgps.png"
+
+S = "${WORKDIR}/roadmap-${PV}/src/qt"
+
+inherit palmtop
+
+EXTRA_OEMAKE = 'DESKTOP=QPE MOC=${OE_QMAKE_MOC} UIC=${OE_QMAKE_UIC} \
+ GUILDFLAGS="-lz -lpng -ljpeg -lts -lqte -lqpe -L${STAGING_LIBDIR} -L${QTDIR}/lib"'
+
+do_configure() {
+ rm -rf moc*
+}
+
+do_install() {
+ install -d ${D}/${palmtopdir}/bin
+ install -d ${D}/${palmtopdir}/apps/Applications
+ install -d ${D}/${palmtopdir}/pics
+ install -m 0755 qtroadmap ${D}/${palmtopdir}/bin/roadmap
+ install -m 0755 qtroadgps ${D}/${palmtopdir}/bin/roadgps
+ install -m 0644 ../roadmap.png ${D}/${palmtopdir}/pics/zroadmap.png
+ install -m 0644 ${WORKDIR}/zroadgps.png ${D}/${palmtopdir}/pics/zroadgps.png
+ install -m 0644 ipkg/*.desktop ${D}/${palmtopdir}/apps/
+ install -d ${D}/${palmtopdir}/share/roadmap/
+ install -m 0644 ../sprites ../schema ../preferences ${D}/${palmtopdir}/share/roadmap/
+ install -m 0644 ${WORKDIR}/usdir.rdm ${D}/${palmtopdir}/share/roadmap/
+}