-rw-r--r-- | noncore/games/backgammon/backgammon.control | 2 | ||||
-rw-r--r-- | noncore/games/backgammon/backgammon.pro | 2 | ||||
-rw-r--r-- | noncore/games/backgammon/config.in | 2 | ||||
-rw-r--r-- | noncore/games/backgammon/main.cpp | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/noncore/games/backgammon/backgammon.control b/noncore/games/backgammon/backgammon.control index d78b547..bf66bff 100644 --- a/noncore/games/backgammon/backgammon.control +++ b/noncore/games/backgammon/backgammon.control | |||
@@ -1,10 +1,10 @@ | |||
1 | Package: backgammon | 1 | Package: backgammon |
2 | Files: plugins/application/libbackgammon.so* bin/backgammon apps/Games/backgammon.desktop pics/backgammon help/en/html/backgammon.html | 2 | Files: plugins/application/libbackgammon.so* bin/backgammon apps/Games/backgammon.desktop pics/backgammon help/en/html/backgammon.html |
3 | Priority: optional | 3 | Priority: optional |
4 | Section: opie/games | 4 | Section: opie/games |
5 | Maintainer: Ralf Waspe <rwaspe@web.de> | 5 | Maintainer: Ralf Waspe <rwaspe@web.de> |
6 | Architecture: arm | 6 | Architecture: arm |
7 | Depends: task-opie-minimal | 7 | Depends: task-opie-minimal, libopiecore2 |
8 | Description: Backgammon Game | 8 | Description: Backgammon Game |
9 | A Backgammon game for the Opie environment. | 9 | A Backgammon game for the Opie environment. |
10 | Version: $QPE_VERSION$EXTRAVERSION | 10 | Version: $QPE_VERSION$EXTRAVERSION |
diff --git a/noncore/games/backgammon/backgammon.pro b/noncore/games/backgammon/backgammon.pro index 063d617..409cbb8 100644 --- a/noncore/games/backgammon/backgammon.pro +++ b/noncore/games/backgammon/backgammon.pro | |||
@@ -1,32 +1,32 @@ | |||
1 | CONFIG = qt warn_on release quick-app | 1 | CONFIG = qt warn_on release quick-app |
2 | 2 | ||
3 | HEADERS = backgammon.h \ | 3 | HEADERS = backgammon.h \ |
4 | backgammonview.h \ | 4 | backgammonview.h \ |
5 | canvasimageitem.h \ | 5 | canvasimageitem.h \ |
6 | themedialog.h \ | 6 | themedialog.h \ |
7 | moveengine.h \ | 7 | moveengine.h \ |
8 | filedialog.h \ | 8 | filedialog.h \ |
9 | playerdialog.h \ | 9 | playerdialog.h \ |
10 | aidialog.h \ | 10 | aidialog.h \ |
11 | rulesdialog.h \ | 11 | rulesdialog.h \ |
12 | definition.h | 12 | definition.h |
13 | 13 | ||
14 | SOURCES = main.cpp \ | 14 | SOURCES = main.cpp \ |
15 | backgammon.cpp \ | 15 | backgammon.cpp \ |
16 | backgammonview.cpp \ | 16 | backgammonview.cpp \ |
17 | canvasimageitem.cpp \ | 17 | canvasimageitem.cpp \ |
18 | themedialog.cpp \ | 18 | themedialog.cpp \ |
19 | moveengine.cpp \ | 19 | moveengine.cpp \ |
20 | filedialog.cpp \ | 20 | filedialog.cpp \ |
21 | playerdialog.cpp \ | 21 | playerdialog.cpp \ |
22 | aidialog.cpp \ | 22 | aidialog.cpp \ |
23 | rulesdialog.cpp \ | 23 | rulesdialog.cpp \ |
24 | definition.cpp | 24 | definition.cpp |
25 | 25 | ||
26 | TARGET = backgammon | 26 | TARGET = backgammon |
27 | INCLUDEPATH+= $(OPIEDIR)/include | 27 | INCLUDEPATH+= $(OPIEDIR)/include |
28 | DEPENDPATH+= $(OPIEDIR)/include | 28 | DEPENDPATH+= $(OPIEDIR)/include |
29 | LIBS += -lqpe -lstdc++ | 29 | LIBS += -lqpe -lopiecore2 -lstdc++ |
30 | 30 | ||
31 | 31 | ||
32 | include ( $(OPIEDIR)/include.pro ) | 32 | include ( $(OPIEDIR)/include.pro ) |
diff --git a/noncore/games/backgammon/config.in b/noncore/games/backgammon/config.in index ee33655..a1cbd36 100644 --- a/noncore/games/backgammon/config.in +++ b/noncore/games/backgammon/config.in | |||
@@ -1,4 +1,4 @@ | |||
1 | config BACKGAMMON | 1 | config BACKGAMMON |
2 | boolean "backgammon (Backgammon game)" | 2 | boolean "backgammon (Backgammon game)" |
3 | default "y" | 3 | default "y" |
4 | depends ( LIBQPE || LIBQPE-X11 ) && LIBOPIE | 4 | depends ( LIBQPE || LIBQPE-X11 ) && LIBOPIE2CORE |
diff --git a/noncore/games/backgammon/main.cpp b/noncore/games/backgammon/main.cpp index 6316040..67e4a5b 100644 --- a/noncore/games/backgammon/main.cpp +++ b/noncore/games/backgammon/main.cpp | |||
@@ -1,7 +1,7 @@ | |||
1 | #include "backgammon.h" | 1 | #include "backgammon.h" |
2 | 2 | ||
3 | #include <opie/oapplicationfactory.h> | 3 | #include <opie2/oapplicationfactory.h> |
4 | 4 | ||
5 | OPIE_EXPORT_APP( OApplicationFactory<BackGammon> ) | 5 | OPIE_EXPORT_APP( OApplicationFactory<BackGammon> ) |
6 | 6 | ||
7 | 7 | ||