aboutsummaryrefslogtreecommitdiffstats
path: root/packages/cumulus
diff options
context:
space:
mode:
authorDenys Dmytriyenko <denis@denix.org>2009-03-17 14:32:59 -0400
committerDenys Dmytriyenko <denis@denix.org>2009-03-17 14:32:59 -0400
commit709c4d66e0b107ca606941b988bad717c0b45d9b (patch)
tree37ee08b1eb308f3b2b6426d5793545c38396b838 /packages/cumulus
parentfa6cd5a3b993f16c27de4ff82b42684516d433ba (diff)
downloadopenembedded-709c4d66e0b107ca606941b988bad717c0b45d9b.tar.gz
rename packages/ to recipes/ per earlier agreement
See links below for more details: http://thread.gmane.org/gmane.comp.handhelds.openembedded/21326 http://thread.gmane.org/gmane.comp.handhelds.openembedded/21816 Signed-off-by: Denys Dmytriyenko <denis@denix.org> Acked-by: Mike Westerhof <mwester@dls.net> Acked-by: Philip Balister <philip@balister.org> Acked-by: Khem Raj <raj.khem@gmail.com> Acked-by: Marcin Juszkiewicz <hrw@openembedded.org> Acked-by: Koen Kooi <koen@openembedded.org> Acked-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Diffstat (limited to 'packages/cumulus')
-rw-r--r--packages/cumulus/cumulus/open_max.patch11
-rw-r--r--packages/cumulus/cumulus/qtooltip.patch27
-rw-r--r--packages/cumulus/cumulus_1.2.1.bb43
-rw-r--r--packages/cumulus/cumulus_cvs.bb44
4 files changed, 0 insertions, 125 deletions
diff --git a/packages/cumulus/cumulus/open_max.patch b/packages/cumulus/cumulus/open_max.patch
deleted file mode 100644
index 0a7cfccdbf..0000000000
--- a/packages/cumulus/cumulus/open_max.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- cumulus/gpscon.cpp.old 2008-11-18 23:39:12.000000000 +0000
-+++ cumulus/gpscon.cpp 2008-11-18 23:43:32.000000000 +0000
-@@ -416,7 +416,7 @@
-
- if( maxOpenFds == -1 ) // call failed
- {
-- maxOpenFds = OPEN_MAX; // normal default from limits.h
-+ maxOpenFds = sysconf(_SC_OPEN_MAX);
- }
- else
- {
diff --git a/packages/cumulus/cumulus/qtooltip.patch b/packages/cumulus/cumulus/qtooltip.patch
deleted file mode 100644
index b36b9676a7..0000000000
--- a/packages/cumulus/cumulus/qtooltip.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-
-#
-# Patch managed by http://www.mn-logistik.de/unsupported/pxa250/patcher
-#
-
---- cumulus/whatsthat.cpp~qtooltip 2004-01-24 12:00:59.000000000 +0100
-+++ cumulus/whatsthat.cpp 2004-01-29 19:30:04.000000000 +0100
-@@ -16,7 +16,7 @@
- ***********************************************************************/
-
- #include "whatsthat.h"
--#include <qtooltip.h>
-+#include "./qtooltip.h"
- #include <qstylesheet.h>
- #include <qapplication.h>
- #include <qpainter.h>
---- cumulus/qtooltip.h~qtooltip 2004-01-24 12:01:00.000000000 +0100
-+++ cumulus/qtooltip.h 2004-01-29 19:31:16.000000000 +0100
-@@ -43,7 +43,7 @@
- public:
- QToolTip(){};
- ~QToolTip(){};
-- QPalette palette();
-+ static QPalette palette();
- };
-
- #endif
diff --git a/packages/cumulus/cumulus_1.2.1.bb b/packages/cumulus/cumulus_1.2.1.bb
deleted file mode 100644
index dec0b51e9e..0000000000
--- a/packages/cumulus/cumulus_1.2.1.bb
+++ /dev/null
@@ -1,43 +0,0 @@
-DESCRIPTION = "A flightcomputer application for Qt/E based Palmtop Environments"
-SECTION = "opie/applications"
-PRIORITY = "optional"
-LICENSE = "GPL"
-APPTYPE = "binary"
-APPNAME = "cumulus"
-APPDESKTOP = "${S}"
-PR = "r1"
-
-SRC_URI = "http://www.kflog.org/fileadmin/user_upload/cumulus_downloads/${PV}/cumulus-${PV}.src.tar.bz2 \
- file://open_max.patch;patch=1"
-S = "${WORKDIR}/cumulus_${PV}/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 \
- ${D}${palmtopdir}/bin
- 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/
-}
diff --git a/packages/cumulus/cumulus_cvs.bb b/packages/cumulus/cumulus_cvs.bb
deleted file mode 100644
index 133e0e704f..0000000000
--- a/packages/cumulus/cumulus_cvs.bb
+++ /dev/null
@@ -1,44 +0,0 @@
-DESCRIPTION = "A flightcomputer application for Qt/E based Palmtop Environments"
-SECTION = "opie/applications"
-PRIORITY = "optional"
-LICENSE = "GPL"
-APPTYPE = "binary"
-APPNAME = "cumulus"
-APPDESKTOP = "${S}"
-PV = "${OPIE_CVS_PV}"
-PR = "r0"
-
-SRC_URI = "http://www.kflog.org/fileadmin/user_upload/cumulus_snapshots/cumulus-snapshot.tbz"
-S = "${WORKDIR}/cumulus/cumulus"
-
-inherit opie
-
-DEFAULT_PREFERENCE = "-1"
-
-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/cumulus \
- ${D}${palmtopdir}/pics/cumulus/small \
- ${D}${palmtopdir}/pics/cumulus/windarrows
- install -m 0644 ../cumulus.png ${D}${palmtopdir}/pics/cumulus/cumulus.png
- install -m 0644 map-icons/*.png ${D}${palmtopdir}/pics/cumulus
- install -m 0644 map-icons/*.xpm ${D}${palmtopdir}/pics/cumulus
- install -m 0644 map-icons/small/*.png ${D}${palmtopdir}/pics/cumulus/small
- install -m 0644 map-icons/small/*.xpm ${D}${palmtopdir}/pics/cumulus/small
- install -m 0644 map-icons/windarrows/*.png ${D}${palmtopdir}/pics/cumulus/windarrows
-
- install -m 0755 gpsClient ${D}${palmtopdir}/bin/
-}