summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcin Juszkiewicz <hrw@openembedded.org>2006-12-12 14:48:28 +0000
committerMarcin Juszkiewicz <hrw@openembedded.org>2006-12-12 14:48:28 +0000
commit2441cc7fbaf8bd88b6d760be1441e07117ce5d01 (patch)
tree8a8c5b40802659eeabc10b6c39f28eca4a702908
parent484d83ea57039f83968f425646084e3298bf3c50 (diff)
qpe-vexed: dropped from repository - unfetchable, no upstream
-rw-r--r--packages/qpe-vexed/.mtn2git_empty0
-rw-r--r--packages/qpe-vexed/files/.mtn2git_empty0
-rw-r--r--packages/qpe-vexed/files/vit.patch82
-rw-r--r--packages/qpe-vexed/qpe-vexed-levels_2.1Beta1.bb24
-rw-r--r--packages/qpe-vexed/qpe-vexed_1.3.bb29
5 files changed, 0 insertions, 135 deletions
diff --git a/packages/qpe-vexed/.mtn2git_empty b/packages/qpe-vexed/.mtn2git_empty
deleted file mode 100644
index e69de29bb2..0000000000
--- a/packages/qpe-vexed/.mtn2git_empty
+++ /dev/null
diff --git a/packages/qpe-vexed/files/.mtn2git_empty b/packages/qpe-vexed/files/.mtn2git_empty
deleted file mode 100644
index e69de29bb2..0000000000
--- a/packages/qpe-vexed/files/.mtn2git_empty
+++ /dev/null
diff --git a/packages/qpe-vexed/files/vit.patch b/packages/qpe-vexed/files/vit.patch
deleted file mode 100644
index c07d46983a..0000000000
--- a/packages/qpe-vexed/files/vit.patch
+++ /dev/null
@@ -1,82 +0,0 @@
-
-#
-# Patch managed by http://www.holgerschurig.de/patcher.html
-#
-
---- qpe-vexed_arm/mainWidget.cpp~vit
-+++ qpe-vexed_arm/mainWidget.cpp
-@@ -24,7 +24,7 @@
- #include <qhbox.h>
- #include <qpe/qpeapplication.h>
-
--MainWidget::MainWidget(QWidget *parent, const char *name) : QWidget(parent, name) {
-+MainWidget::MainWidget(QWidget *parent, const char *name, WFlags f) : QMainWindow(parent, name, f) {
- this -> setBackgroundMode(PaletteButton);
- this -> setCaption("QPE-Vexed");
-
---- qpe-vexed_arm/mainWidget.h~vit
-+++ qpe-vexed_arm/mainWidget.h
-@@ -28,7 +28,7 @@
- #include "level.h"
- #include "statuslabel.h"
-
--#include <qwidget.h>
-+#include <qmainwindow.h>
- #include <qstring.h>
-
- /*
-@@ -36,10 +36,11 @@
- * Handles allmost all signals
- */
-
--class MainWidget : public QWidget {
-+class MainWidget : public QMainWindow {
- Q_OBJECT
- public:
-- MainWidget(QWidget *parent = NULL, const char *name = NULL);
-+ static QString appName() { return QString::fromLatin1("qpevexed"); }
-+ MainWidget(QWidget *parent = NULL, const char *name = NULL, WFlags f = 0);
- ~MainWidget();
- protected:
- void keyPressEvent(QKeyEvent*);
---- qpe-vexed_arm/qpeVexed.cpp~vit
-+++ qpe-vexed_arm/qpeVexed.cpp
-@@ -18,15 +18,8 @@
- *
- */
-
--#include <qpe/qpeapplication.h>
- #include "mainWidget.h"
-+#include <opie2/oapplicationfactory.h>
-
--int main(int argc, char **argv) {
-- QPEApplication a(argc, argv);
--
-- MainWidget mw;
--
-- a.setMainWidget(&mw);
-- mw.show();
-- a.exec();
--}
-+using namespace Opie::Core;
-+OPIE_EXPORT_APP( OApplicationFactory<MainWidget> )
---- qpe-vexed_arm/statuslabel.cpp~vit
-+++ qpe-vexed_arm/statuslabel.cpp
-@@ -32,6 +32,6 @@
- StatusLabel::~StatusLabel() {}
-
- void StatusLabel::setLabel(const QString& pack, const QString& name, int num) {
-- QString s = QString::number(num);
-+ QString s = QString::number(num+1);
- setText(pack+" ("+s+"):\n\t"+name);
- }
---- qpe-vexed_arm/qpe-vexed.pro~vit
-+++ qpe-vexed_arm/qpe-vexed.pro
-@@ -5,6 +5,6 @@
- SOURCES = button.cpp fileiface.cpp level.cpp mainWidget.cpp menuBar.cpp playingBoard.cpp qpeVexed.cpp stone.cpp about.cpp statuslabel.cpp instruction.cpp
- INCLUDEPATH += $(QPEDIR)/include
- DEPENDPATH += $(QPEDIR)/include
--LIBS += -lqpe -lqte
-+LIBS += -lqpe -lqte -lopiecore2
- #INTERFACES = board_designed.ui
- TARGET = qpe-vexed
diff --git a/packages/qpe-vexed/qpe-vexed-levels_2.1Beta1.bb b/packages/qpe-vexed/qpe-vexed-levels_2.1Beta1.bb
deleted file mode 100644
index 0748e58915..0000000000
--- a/packages/qpe-vexed/qpe-vexed-levels_2.1Beta1.bb
+++ /dev/null
@@ -1,24 +0,0 @@
-DESCRIPTION = "Vexed levels for qpe-vexed"
-SECTION = "opie/games"
-PRIORITY = "optional"
-LICENSE = "GPL"
-AUTHOR = "The Vexed Development Team"
-HOMEPAGE = "http://vexed.sourceforge.net/"
-PACKAGE_ARCH = "all"
-PR = "r2"
-
-SRC_URI = "http://ewi546.ewi.utwente.nl/mirror/hrw-oe-sources/vexed-levelpacks-20060109.tar.gz"
-
-S = "${WORKDIR}"
-
-do_install () {
- install -d ${D}${palmtopdir}/etc/qpe-vexed
-
- for level in ${WORKDIR}/levelpacks/*.ini;
- do
- install -m 0664 "$level" "${D}${palmtopdir}/etc/qpe-vexed/`basename "$level" .ini`.lvl";
- done
-}
-
-FILES_${PN} = "${palmtopdir}/etc/qpe-vexed/*.lvl"
-
diff --git a/packages/qpe-vexed/qpe-vexed_1.3.bb b/packages/qpe-vexed/qpe-vexed_1.3.bb
deleted file mode 100644
index b38cf5b954..0000000000
--- a/packages/qpe-vexed/qpe-vexed_1.3.bb
+++ /dev/null
@@ -1,29 +0,0 @@
-DESCRIPTION = "Vexed clone"
-SECTION = "opie/games"
-PRIORITY = "optional"
-LICENSE = "GPL"
-AUTHOR = "Alexander Hausner <Alexander.Hausner@web.de>"
-HOMEPAGE = "http://wwwcip.informatik.uni-erlangen.de/~sialhaus/qpe-vexed.html"
-DEPENDS = "qpe-vexed-levels"
-RDEPENDS = "qpe-vexed-levels"
-APPNAME = "qpe-vexed"
-APPTYPE = "binary"
-APPDESKTOP = "${S}"
-PR = "r3"
-
-SRC_URI = "http://wwwcip.informatik.uni-erlangen.de/~sialhaus/qpe-vexed_1.3_src.tar.gz \
- file://vit.patch;patch=1"
-
-S = "${WORKDIR}/qpe-vexed_arm/"
-
-inherit opie
-
-do_install () {
- install -d ${D}${palmtopdir}/pics/${APPNAME}/ \
- ${D}${palmtopdir}/apps/Games/ \
- ${D}${palmtopdir}/bin/
-
- install -m 0644 ${S}/pkg/opt/QtPalmtop/pics/qpe-vexed.png ${D}${palmtopdir}/pics/
- install -m 0644 ${S}/pkg/opt/QtPalmtop/pics/qpe-vexed/*.png ${D}${palmtopdir}/pics/${APPNAME}/
- install -m 0644 ${S}/pkg/opt/QtPalmtop/pics/qpe-vexed/*.bmp ${D}${palmtopdir}/pics/${APPNAME}/
-}