diff options
author | Michael Lauer <mickey@vanille-media.de> | 2006-06-20 22:30:58 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-06-20 22:30:58 +0000 |
commit | 6a329bdfcc1989bc3c4e78683a67fd3198cb4bea (patch) | |
tree | 2a5bfa63a431216c881dec3bbdd04bcd2078d722 /packages/zroadmap/zroadmap_1.0.12.bb | |
parent | 8554c283a5827810cbd74335bc836618373ce58a (diff) |
zroadmap: upgrade 1.0.8 -> 1.0.12, take optional qte multithreading into account
Diffstat (limited to 'packages/zroadmap/zroadmap_1.0.12.bb')
-rw-r--r-- | packages/zroadmap/zroadmap_1.0.12.bb | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/packages/zroadmap/zroadmap_1.0.12.bb b/packages/zroadmap/zroadmap_1.0.12.bb new file mode 100644 index 0000000000..727a41664b --- /dev/null +++ b/packages/zroadmap/zroadmap_1.0.12.bb @@ -0,0 +1,54 @@ +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>" +MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de>" +HOMEPAGE = "http://roadmap.digitalomaha.net/maps.html" +LICENSE = "GPL" +PR = "r0" + +SRC_URI = "http://www.roadmap.digitalomaha.net/roadmap/roadmap_1_0_12p2_src.tar.gz \ + file://qt2-fixes.patch;pnum=2;patch=1 \ + http://roadmap.digitalomaha.net/maps/usdir.rdm.tgz \ + file://zroadgps.png" +S = "${WORKDIR}/roadmap-${PV}/src" + +inherit palmtop + +QT_LIBRARY = '${@base_conditional("PALMTOP_USE_MULTITHREADED_QT", "yes", "qte-mt", "qte",d)}' +QT_LIBRARY_append_c7x0 = " -laticore" + +EXTRA_OEMAKE = 'DESKTOP=QPE MOC=${OE_QMAKE_MOC} UIC=${OE_QMAKE_UIC} \ + GUICFLAGS="-I${OE_QMAKE_INCDIR_QT} -I${S} -DQWS" \ + GUILDFLAGS="-lz -lpng -ljpeg -lts -l${QT_LIBRARY} -lqpe -Wl,-rpath-link,${STAGING_LIBDIR} -L${STAGING_LIBDIR} -L${QTDIR}/lib"' +PARALLEL_MAKE = "" + +do_configure() { + echo removing pregenerated stuff + find . -name "moc*"|xargs rm -f +} + +do_compile() { + oe_runmake libguiroadmap.a libguiroadgps.a libroadmap.a unix/libosroadmap.a + cd qt && oe_runmake +} + +do_install() { + cd qt + 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/ +} |