diff options
| author | Denys Dmytriyenko <denis@denix.org> | 2009-03-17 14:32:59 -0400 |
|---|---|---|
| committer | Denys Dmytriyenko <denis@denix.org> | 2009-03-17 14:32:59 -0400 |
| commit | 709c4d66e0b107ca606941b988bad717c0b45d9b (patch) | |
| tree | 37ee08b1eb308f3b2b6426d5793545c38396b838 /packages/pocketcellar | |
| parent | fa6cd5a3b993f16c27de4ff82b42684516d433ba (diff) | |
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/pocketcellar')
| -rw-r--r-- | packages/pocketcellar/pocketcellar-1.1/cellardb.patch | 88 | ||||
| -rw-r--r-- | packages/pocketcellar/pocketcellar-1.1/gcc3.patch | 16 | ||||
| -rw-r--r-- | packages/pocketcellar/pocketcellar-1.1/pocketcellar.patch | 14 | ||||
| -rw-r--r-- | packages/pocketcellar/pocketcellar-1.1/winedb.patch | 92 | ||||
| -rw-r--r-- | packages/pocketcellar/pocketcellar_1.1.bb | 32 |
5 files changed, 0 insertions, 242 deletions
diff --git a/packages/pocketcellar/pocketcellar-1.1/cellardb.patch b/packages/pocketcellar/pocketcellar-1.1/cellardb.patch deleted file mode 100644 index ff550441d4..0000000000 --- a/packages/pocketcellar/pocketcellar-1.1/cellardb.patch +++ /dev/null @@ -1,88 +0,0 @@ -# -#Try to remove hardcoded /home path -# ---- pocketcellar-1.1/cellardb.cpp.old 2005-02-28 13:43:19.000000000 +0000 -+++ pocketcellar-1.1/cellardb.cpp 2005-02-28 13:42:55.000000000 +0000 -@@ -19,6 +19,7 @@ - - #include "cellardb.h" - #include <qfile.h> -+#include <qdir.h> - #include <qdatastream.h> - #include "winedb.h" - -@@ -55,16 +56,16 @@ - - - bool CellarDB::load(QListView *parent, QListView *wines, int loc) { -- QString path("/home"); -- -+ QString path(QDir::homeDirPath()); -+ - if (loc == 1) -- path = "/usr/mnt.rom/cf"; -+ path = "/media/cf"; - else if (loc == 2) -- path = "/usr/mnt.rom/card"; -+ path = "/media/card"; - -- mkdir(QString(path + "/QtPalmtop/data/PocketCellar").ascii(), 755); -+ mkdir(QString(path + "/Documents/application/PocketCellar").ascii(), 755); - -- QFile f(path+"/QtPalmtop/data/PocketCellar/PCellarDB"); -+ QFile f(path+"/Documents/application/PocketCellar/PCellarDB"); - - if (!f.open(IO_ReadOnly)) - return false; -@@ -102,28 +103,28 @@ - - f.close(); - -- if (loc != 0) -+/* if (loc != 0) - unlink("/home/QtPalmtop/data/PocketCellar/PCellarDB"); - if (loc != 1) - unlink("/usr/mnt.rom/cf/QtPalmtop/data/PocketCellar/PCellarDB"); - if (loc != 2) -- unlink("/usr/mnt.rom/card/QtPalmtop/data/PocketCellar/PCellarDB"); -+ unlink("/usr/mnt.rom/card/QtPalmtop/data/PocketCellar/PCellarDB");*/ - - return true; - } - - - bool CellarDB::save(QListView *parent, int loc) { -- QString path("/home"); -- -+ QString path(QDir::homeDirPath()); -+ - if (loc == 1) -- path = "/usr/mnt.rom/cf"; -+ path = "/media/cf"; - else if (loc == 2) -- path = "/usr/mnt.rom/card"; -+ path = "/media/card"; - -- mkdir(QString(path + "/QtPalmtop/data/PocketCellar").ascii(), 755); -+ mkdir(QString(path + "/Documents/application/PocketCellar").ascii(), 755); - -- QFile f(path+"/QtPalmtop/data/PocketCellar/PCellarDB"); -+ QFile f(path+"/Documents/application/PocketCellar/PCellarDB"); - - //qDebug("Filename %s\n", (path+"/QtPalmtop/data/PocketCellar/PCellarDB").latin1()); - if (!f.open(IO_WriteOnly)) -@@ -143,12 +144,12 @@ - - f.close(); - -- if (loc != 0) -+/* if (loc != 0) - unlink("/home/QtPalmtop/data/PocketCellar/PCellarDB"); - if (loc != 1) - unlink("/usr/mnt.rom/cf/QtPalmtop/data/PocketCellar/PCellarDB"); - if (loc != 2) -- unlink("/usr/mnt.rom/card/QtPalmtop/data/PocketCellar/PCellarDB"); -+ unlink("/usr/mnt.rom/card/QtPalmtop/data/PocketCellar/PCellarDB");*/ - - return true; - } diff --git a/packages/pocketcellar/pocketcellar-1.1/gcc3.patch b/packages/pocketcellar/pocketcellar-1.1/gcc3.patch deleted file mode 100644 index 634944aef4..0000000000 --- a/packages/pocketcellar/pocketcellar-1.1/gcc3.patch +++ /dev/null @@ -1,16 +0,0 @@ - -# -# Patch managed by http://www.mn-logistik.de/unsupported/pxa250/patcher -# - ---- pocketcellar-1.1/wineentry.cpp~gcc3 2002-11-15 02:06:44.000000000 +0100 -+++ pocketcellar-1.1/wineentry.cpp 2004-02-11 14:27:26.000000000 +0100 -@@ -35,7 +35,7 @@ - #include "winedb.h" - - --WineEditor::WineEditor(QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0) -+WineEditor::WineEditor(QWidget* parent, const char* name, bool modal, WFlags fl) - : WineEditorBase(parent, name, modal, fl), _databaseList(0) - { - } diff --git a/packages/pocketcellar/pocketcellar-1.1/pocketcellar.patch b/packages/pocketcellar/pocketcellar-1.1/pocketcellar.patch deleted file mode 100644 index a34f9d1535..0000000000 --- a/packages/pocketcellar/pocketcellar-1.1/pocketcellar.patch +++ /dev/null @@ -1,14 +0,0 @@ ---- pocketcellar-1.1/pocketcellar.cpp.old -+++ pocketcellar-1.1/pocketcellar.cpp -@@ -395,9 +395,9 @@ - _wines->setText(QString::number(stats._wines)); - _bottles->setText(QString::number(stats._bottles)); - QString tmp; -- tmp.sprintf(tr("$%.2f"), stats._totalPrice); -+ tmp.sprintf(tr("%.2f"), stats._totalPrice); - _value->setText(tmp); -- tmp.sprintf(tr("$%.2f ... $%.2f, avg $%.2f"), -+ tmp.sprintf(tr("%.2f ... %.2f, avg %.2f"), - stats._minPrice <= stats._maxPrice ? - stats._minPrice : 0.0, - stats._maxPrice, stats._bottles > 0 ? diff --git a/packages/pocketcellar/pocketcellar-1.1/winedb.patch b/packages/pocketcellar/pocketcellar-1.1/winedb.patch deleted file mode 100644 index 885a23a5ce..0000000000 --- a/packages/pocketcellar/pocketcellar-1.1/winedb.patch +++ /dev/null @@ -1,92 +0,0 @@ -# -# Try to remove hardcoded /home path -# ---- pocketcellar-1.1/winedb.cpp.old 2005-02-28 13:43:30.000000000 +0000 -+++ pocketcellar-1.1/winedb.cpp 2005-02-28 13:40:55.000000000 +0000 -@@ -141,6 +141,7 @@ - #include <qdatastream.h> - #include <qtextstream.h> - #include <qfile.h> -+#include <qdir.h> - - - QDataStream& operator>>(QDataStream& s, Wine& w) { -@@ -209,15 +210,15 @@ - - - bool WineDB::load(QListView *parent, int loc) { -- QString path("/home"); -+ QString path(QDir::homeDirPath()); - - if (loc == 1) -- path = "/usr/mnt.rom/cf"; -+ path = "/media/cf"; - else if (loc == 2) -- path = "/usr/mnt.rom/card"; -+ path = "/media/card"; - -- mkdir(QString(path + "/QtPalmtop/data/PocketCellar").ascii(), 755); -- QFile f(path + "/QtPalmtop/data/PocketCellar/PCWineDB"); -+ mkdir(QString(path + "/Documents/application/PocketCellar").ascii(), 755); -+ QFile f(path + "/Documents/application/PocketCellar/PCWineDB"); - - if (!f.open(IO_ReadOnly)) - return false; -@@ -240,26 +241,26 @@ - - f.close(); - -- if (loc != 0) -+/* if (loc != 0) - unlink("/home/QtPalmtop/data/PocketCellar/PCWineDB"); - if (loc != 1) - unlink("/usr/mnt.rom/cf/QtPalmtop/data/PocketCellar/PCWineDB"); - if (loc != 2) -- unlink("/usr/mnt.rom/card/QtPalmtop/data/PocketCellar/PCWineDB"); -+ unlink("/usr/mnt.rom/card/QtPalmtop/data/PocketCellar/PCWineDB");*/ - return true; - } - - - bool WineDB::save(QListView *parent, int loc) { -- QString path("/home"); -+ QString path(QDir::homeDirPath()); - - if (loc == 1) -- path = "/usr/mnt.rom/cf"; -+ path = "/media/cf"; - else if (loc == 2) -- path = "/usr/mnt.rom/card"; -+ path = "/media/card"; - -- mkdir(QString(path + "/QtPalmtop/data/PocketCellar").ascii(), 755); -- QFile f(path + "/QtPalmtop/data/PocketCellar/PCWineDB"); -+ mkdir(QString(path + "/Documents/application/PocketCellar").ascii(), 755); -+ QFile f(path + "/Documents/application/PocketCellar/PCWineDB"); - - if (!f.open(IO_WriteOnly)) - return false; -@@ -277,12 +278,12 @@ - - f.close(); - -- if (loc != 0) -+/* if (loc != 0) - unlink("/home/QtPalmtop/data/PocketCellar/PCWineDB"); - if (loc != 1) - unlink("/usr/mnt.rom/cf/QtPalmtop/data/PocketCellar/PCWineDB"); - if (loc != 2) -- unlink("/usr/mnt.rom/card/QtPalmtop/data/PocketCellar/PCWineDB"); -+ unlink("/usr/mnt.rom/card/QtPalmtop/data/PocketCellar/PCWineDB");*/ - return true; - } - -@@ -290,7 +291,7 @@ - QStringList WineDB::grapeList; - - bool WineDB::loadGrapeList() { -- QFile f("/home/QtPalmtop/data/PocketCellar/grapelist.txt"); -+ QFile f("/opt/QtPalmtop/data/PocketCellar/grapelist.txt"); - - if (!f.open(IO_ReadOnly)) - return false; diff --git a/packages/pocketcellar/pocketcellar_1.1.bb b/packages/pocketcellar/pocketcellar_1.1.bb deleted file mode 100644 index 84fc53fa87..0000000000 --- a/packages/pocketcellar/pocketcellar_1.1.bb +++ /dev/null @@ -1,32 +0,0 @@ -DESCRIPTION = "Wine cellar manager. Allows you to record details of wines and \ -those you have in your cellar. The Food Assistant will make suggestions of wines \ -suitable for your meal, and indicate those in your cellar that match." -SECTION = "opie/applications" -PRIORITY = "optional" -LICENSE = "GPL" -PR = "r3" - -SRC_URI = "http://www.staikos.net/~staikos/pocketcellar/pocketcellar-${PV}.tar.gz \ - file://winedb.patch;patch=1 \ - file://cellardb.patch;patch=1 \ - file://pocketcellar.patch;patch=1 \ - file://gcc3.patch;patch=1" - -inherit palmtop - -EXTRA_QMAKEVARS_POST += " DESTDIR=pkg-cellar/home/QtPalmtop/bin/" - -do_install() { - install -d ${D}${palmtopdir}/bin \ - ${D}${palmtopdir}/apps/Applications \ - ${D}${palmtopdir}/pics \ - ${D}${palmtopdir}/data/PocketCellar - - install -m 644 pkg-pcellar/home/QtPalmtop/data/PocketCellar/* ${D}${palmtopdir}/data/PocketCellar/ - install -m 755 pkg-cellar/home/QtPalmtop/bin/pocketcellar ${D}${palmtopdir}/bin/ - install -m 644 pocketcellar.desktop ${D}${palmtopdir}/apps/Applications/ - install -m 644 pocketcellar.png ${D}${palmtopdir}/pics/ - install -m 644 pkg-pcellar/home/root/Settings/foodassist.conf ${D}${palmtopdir}/data/PocketCellar/ -} - -FILES_${PN} = "/" |
