author | drw <drw> | 2004-03-02 22:58:25 (UTC) |
---|---|---|
committer | drw <drw> | 2004-03-02 22:58:25 (UTC) |
commit | 9ffe8155d3cf0d72126b7420a8fee66d6f62e2c7 (patch) (side-by-side diff) | |
tree | e6b7a1d5ba786e5058c1956d12cca1bd1ebd3049 | |
parent | 3f5ca7734d2534ca90c13228504b6218f18f5afe (diff) | |
download | opie-9ffe8155d3cf0d72126b7420a8fee66d6f62e2c7.zip opie-9ffe8155d3cf0d72126b7420a8fee66d6f62e2c7.tar.gz opie-9ffe8155d3cf0d72126b7420a8fee66d6f62e2c7.tar.bz2 |
Word game: libopie -> libopie2, added libwordgames.so* to control file
-rw-r--r-- | noncore/games/wordgame/config.in | 2 | ||||
-rw-r--r-- | noncore/games/wordgame/main.cpp | 2 | ||||
-rw-r--r-- | noncore/games/wordgame/opie-wordgame.control | 6 | ||||
-rw-r--r-- | noncore/games/wordgame/wordgame.pro | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/noncore/games/wordgame/config.in b/noncore/games/wordgame/config.in index aa8df1c..9f03370 100644 --- a/noncore/games/wordgame/config.in +++ b/noncore/games/wordgame/config.in @@ -1,4 +1,4 @@ config WORDGAME boolean "opie-wordgame (crossword game)" default "y" - depends ( LIBQPE || LIBQPE-X11 ) && LIBOPIE + depends ( LIBQPE || LIBQPE-X11 ) && LIBOPIE2CORE diff --git a/noncore/games/wordgame/main.cpp b/noncore/games/wordgame/main.cpp index eb3e2f2..7fd5f50 100644 --- a/noncore/games/wordgame/main.cpp +++ b/noncore/games/wordgame/main.cpp @@ -1,27 +1,27 @@ /********************************************************************** ** Copyright (C) 2000 Trolltech AS. All rights reserved. ** ** This file is part of Qtopia Environment. ** ** This file may be distributed and/or modified under the terms of the ** GNU General Public License version 2 as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL included in the ** packaging of this file. ** ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. ** ** See http://www.trolltech.com/gpl/ for GPL licensing information. ** ** Contact info@trolltech.com if any conditions of this licensing are ** not clear to you. ** **********************************************************************/ #include "wordgame.h" -#include <opie/oapplicationfactory.h> +#include <opie2/oapplicationfactory.h> OPIE_EXPORT_APP( OApplicationFactory<WordGame> ) diff --git a/noncore/games/wordgame/opie-wordgame.control b/noncore/games/wordgame/opie-wordgame.control index c7dc126..423d450 100644 --- a/noncore/games/wordgame/opie-wordgame.control +++ b/noncore/games/wordgame/opie-wordgame.control @@ -1,11 +1,11 @@ Package: opie-wordgame -Files: bin/wordgame apps/Games/wordgame.desktop pics/wordgame +Files: plugins/application/libwordgame.so* bin/wordgame apps/Games/wordgame.desktop pics/wordgame Priority: optional Section: opie/games -Maintainer: Martin Imobersteg <imm@gmx.ch> +Maintainer: Martin Imobersteg <imm@gmx.ch> Architecture: arm -Depends: task-opie-minimal +Depends: task-opie-minimal, libopiecore2 Description: Crossword game A crossword game for the Opie environment. Play against the computer or human opponents. Version: $QPE_VERSION$EXTRAVERSION diff --git a/noncore/games/wordgame/wordgame.pro b/noncore/games/wordgame/wordgame.pro index 7ef2bfd..1147479 100644 --- a/noncore/games/wordgame/wordgame.pro +++ b/noncore/games/wordgame/wordgame.pro @@ -1,12 +1,12 @@ CONFIG = qt warn_on release quick-app HEADERS = wordgame.h SOURCES = main.cpp \ wordgame.cpp INTERFACES = newgamebase.ui rulesbase.ui TARGET = wordgame INCLUDEPATH += $(OPIEDIR)/include DEPENDPATH += $(OPIEDIR)/include -LIBS += -lqpe +LIBS += -lqpe -lopiecore2 include ( $(OPIEDIR)/include.pro ) |