cumulus: added PV, fixed packaging
authorMarcin Juszkiewicz <hrw@openembedded.org>
Mon, 31 Jan 2005 16:34:17 +0000 (16:34 +0000)
committerMarcin Juszkiewicz <hrw@openembedded.org>
Mon, 31 Jan 2005 16:34:17 +0000 (16:34 +0000)
BKrev: 41fe5e09SyMc40Sw5L8NOEuHTaxWkg

packages/cumulus/cumulus_cvs.bb

index e69de29..0677d07 100644 (file)
@@ -0,0 +1,43 @@
+DESCRIPTION = "A flightcomputer application for Qt/E based Palmtop Environments"
+SECTION = "opie/applications"
+PRIORITY = "optional"
+MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de>"
+LICENSE = "GPL"
+APPTYPE = "binary"
+APPNAME = "cumulus"
+APPDESKTOP = "${S}"
+PV = "1.2+cvs-${CVSDATE}"
+PR = "r1"
+
+SRC_URI = "http://cumulus.kflog.org/download/snapshot/cumulus-snapshot.tbz"
+S = "${WORKDIR}/cumulus/cumulus"
+
+inherit opie
+
+export OE_QMAKE_LINK="${CXX}"
+EXTRA_QMAKEVARS_POST = "INCLUDEPATH+=-I."
+
+#
+# nasty hack since cumulus doesn't obey the qmake standard which requires just one .pro file per directory
+#
+do_compile() {
+       echo "#define SHARP_PDA_WARNSOUND 4" >sharp_char.h
+       qmake -makefile -spec ${QMAKESPEC} -after ${EXTRA_QMAKEVARS_POST} cumulus.pro
+       oe_runmake
+       qmake -makefile -spec ${QMAKESPEC} -after ${EXTRA_QMAKEVARS_POST} gpsClient.pro 
+       oe_runmake
+}
+
+do_install() {
+        install -d ${D}/${palmtopdir}/pics/mapicons \
+                   ${D}/${palmtopdir}/pics/mapicons/small \
+                   ${D}/${palmtopdir}/pics/mapicons/windarrows
+        install -m 0644 ../cumulus.png ${D}/${palmtopdir}/pics/cumulus.png
+        install -m 0644 map-icons/*.png ${D}/${palmtopdir}/pics/mapicons
+        install -m 0644 map-icons/*.xpm ${D}/${palmtopdir}/pics/mapicons
+        install -m 0644 map-icons/small/*.png ${D}/${palmtopdir}/pics/mapicons/small
+        install -m 0644 map-icons/small/*.xpm ${D}/${palmtopdir}/pics/mapicons/small
+        install -m 0644 map-icons/windarrows/*.png ${D}/${palmtopdir}/pics/mapicons/windarrows
+
+       install -m 0755 gpsClient ${D}/${palmtopdir}/bin/
+}