author | zecke <zecke> | 2005-03-02 21:14:20 (UTC) |
---|---|---|
committer | zecke <zecke> | 2005-03-02 21:14:20 (UTC) |
commit | 7e3e1699927a16421eedf8f02d7c38ffe0de7bad (patch) (unidiff) | |
tree | cbf06da240f1e53fa4d57e9ea636fd2008629f26 | |
parent | c53f94fe28e8ec62a48d82d952c3d5e6a2ab85f2 (diff) | |
download | opie-7e3e1699927a16421eedf8f02d7c38ffe0de7bad.zip opie-7e3e1699927a16421eedf8f02d7c38ffe0de7bad.tar.gz opie-7e3e1699927a16421eedf8f02d7c38ffe0de7bad.tar.bz2 |
-Build qss by updating the qss.pro
-Add a .cvsignore file
-Make it selectable/buildable in our buildsystem by adding it to packages
and creating a config.in
-rw-r--r-- | core/apps/qss/.cvsignore | 6 | ||||
-rw-r--r-- | core/apps/qss/config.in | 4 | ||||
-rw-r--r-- | core/apps/qss/main.cpp | 12 | ||||
-rw-r--r-- | core/apps/qss/qss.pro | 10 | ||||
-rw-r--r-- | packages | 1 |
5 files changed, 16 insertions, 17 deletions
diff --git a/core/apps/qss/.cvsignore b/core/apps/qss/.cvsignore new file mode 100644 index 0000000..84e01fa --- a/dev/null +++ b/core/apps/qss/.cvsignore | |||
@@ -0,0 +1,6 @@ | |||
1 | .moc | ||
2 | .ui | ||
3 | *.moc | ||
4 | moc_* | ||
5 | Makefile | ||
6 | qss | ||
diff --git a/core/apps/qss/config.in b/core/apps/qss/config.in new file mode 100644 index 0000000..86417b6 --- a/dev/null +++ b/core/apps/qss/config.in | |||
@@ -0,0 +1,4 @@ | |||
1 | config QSS | ||
2 | boolean "A Sound Server for Qt 2.3.x where x >= 10 (qss)" | ||
3 | default "y" | ||
4 | depends ( LIBQPE || LIBQPE-X11 ) | ||
diff --git a/core/apps/qss/main.cpp b/core/apps/qss/main.cpp index b92c51e..37766f2 100644 --- a/core/apps/qss/main.cpp +++ b/core/apps/qss/main.cpp | |||
@@ -1,55 +1,43 @@ | |||
1 | /********************************************************************** | 1 | /********************************************************************** |
2 | ** Copyright (C) 2000-2005 Trolltech AS. All rights reserved. | 2 | ** Copyright (C) 2000-2005 Trolltech AS. All rights reserved. |
3 | ** | 3 | ** |
4 | ** This file is part of the Qtopia Environment. | 4 | ** This file is part of the Qtopia Environment. |
5 | ** | 5 | ** |
6 | ** This program is free software; you can redistribute it and/or modify it | 6 | ** This program is free software; you can redistribute it and/or modify it |
7 | ** under the terms of the GNU General Public License as published by the | 7 | ** under the terms of the GNU General Public License as published by the |
8 | ** Free Software Foundation; either version 2 of the License, or (at your | 8 | ** Free Software Foundation; either version 2 of the License, or (at your |
9 | ** option) any later version. | 9 | ** option) any later version. |
10 | ** | 10 | ** |
11 | ** A copy of the GNU GPL license version 2 is included in this package as | 11 | ** A copy of the GNU GPL license version 2 is included in this package as |
12 | ** LICENSE.GPL. | 12 | ** LICENSE.GPL. |
13 | ** | 13 | ** |
14 | ** This program is distributed in the hope that it will be useful, but | 14 | ** This program is distributed in the hope that it will be useful, but |
15 | ** WITHOUT ANY WARRANTY; without even the implied warranty of | 15 | ** WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | 16 | ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | ** See the GNU General Public License for more details. | 17 | ** See the GNU General Public License for more details. |
18 | ** | 18 | ** |
19 | ** In addition, as a special exception Trolltech gives permission to link | ||
20 | ** the code of this program with Qtopia applications copyrighted, developed | ||
21 | ** and distributed by Trolltech under the terms of the Qtopia Personal Use | ||
22 | ** License Agreement. You must comply with the GNU General Public License | ||
23 | ** in all respects for all of the code used other than the applications | ||
24 | ** licensed under the Qtopia Personal Use License Agreement. If you modify | ||
25 | ** this file, you may extend this exception to your version of the file, | ||
26 | ** but you are not obligated to do so. If you do not wish to do so, delete | ||
27 | ** this exception statement from your version. | ||
28 | ** | ||
29 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. | 19 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. |
30 | ** | 20 | ** |
31 | ** Contact info@trolltech.com if any conditions of this licensing are | 21 | ** Contact info@trolltech.com if any conditions of this licensing are |
32 | ** not clear to you. | 22 | ** not clear to you. |
33 | ** | 23 | ** |
34 | **********************************************************************/ | 24 | **********************************************************************/ |
35 | 25 | ||
36 | #include <qsoundqss_qws.h> | 26 | #include <qsoundqss_qws.h> |
37 | #include <qtopia/qpeapplication.h> | 27 | #include <qtopia/qpeapplication.h> |
38 | #include <sys/time.h> | 28 | #include <sys/time.h> |
39 | #include <sys/resource.h> | 29 | #include <sys/resource.h> |
40 | #include <unistd.h> | 30 | #include <unistd.h> |
41 | 31 | ||
42 | #ifndef SINGLE_EXEC | ||
43 | int main(int argc, char **argv) | 32 | int main(int argc, char **argv) |
44 | { | 33 | { |
45 | QApplication a(argc, argv); | 34 | QApplication a(argc, argv); |
46 | (void)new QWSSoundServer(0); | 35 | (void)new QWSSoundServer(0); |
47 | 36 | ||
48 | //if (1) { | 37 | //if (1) { |
49 | // later, check if root first | 38 | // later, check if root first |
50 | setpriority(PRIO_PROCESS, 0, -15); | 39 | setpriority(PRIO_PROCESS, 0, -15); |
51 | //} | 40 | //} |
52 | // hook up some quit mech. | 41 | // hook up some quit mech. |
53 | return a.exec(); | 42 | return a.exec(); |
54 | } | 43 | } |
55 | #endif | ||
diff --git a/core/apps/qss/qss.pro b/core/apps/qss/qss.pro index f4f46dd..277f239 100644 --- a/core/apps/qss/qss.pro +++ b/core/apps/qss/qss.pro | |||
@@ -1,10 +1,10 @@ | |||
1 | CONFIG += qtopiaapp | 1 | CONFIG += release |
2 | CONFIG -= buildQuicklaunch | ||
3 | SOURCES = main.cpp | 2 | SOURCES = main.cpp |
4 | 3 | ||
5 | TARGET = qss | 4 | TARGET = qss |
6 | TRANSLATABLES = $$SOURCES | 5 | DESTDIR = $(OPIEDIR)/bin |
7 | 6 | ||
8 | PACKAGE_DESCRIPTION=QWS Sound Server | 7 | INCLUDEPATH += $(OPIEDIR)/include |
8 | DEPENDSPATH += $(OPIEDIR)/include | ||
9 | 9 | ||
10 | TRANSLATIONS= | 10 | include( $(OPIEDIR)/include.pro ) |
@@ -161,48 +161,49 @@ CONFIG_OPIEPLAYER core/multimedia/opieplayer opieplayer.pro | |||
161 | CONFIG_OPIE-RDESKTOP noncore/net/opierdesktopopierdesktop.pro | 161 | CONFIG_OPIE-RDESKTOP noncore/net/opierdesktopopierdesktop.pro |
162 | CONFIG_OPIE-READER noncore/apps/opie-readeropie-reader.pro | 162 | CONFIG_OPIE-READER noncore/apps/opie-readeropie-reader.pro |
163 | CONFIG_OPIEREC noncore/multimedia/opierecopierec.pro | 163 | CONFIG_OPIEREC noncore/multimedia/opierecopierec.pro |
164 | CONFIG_OPIE-SHEET noncore/apps/opie-sheetopie-sheet.pro | 164 | CONFIG_OPIE-SHEET noncore/apps/opie-sheetopie-sheet.pro |
165 | CONFIG_OPIE-SH noncore/tools/opie-shopie-sh.pro | 165 | CONFIG_OPIE-SH noncore/tools/opie-shopie-sh.pro |
166 | CONFIG_OPIETOOTH-APPLET noncore/net/opietooth/appletapplet.pro | 166 | CONFIG_OPIETOOTH-APPLET noncore/net/opietooth/appletapplet.pro |
167 | CONFIG_OPIETOOTH-MANAGER noncore/net/opietooth/managermanager.pro | 167 | CONFIG_OPIETOOTH-MANAGER noncore/net/opietooth/managermanager.pro |
168 | CONFIG_OPIE-WRITE noncore/apps/opie-writeopie-write.pro | 168 | CONFIG_OPIE-WRITE noncore/apps/opie-writeopie-write.pro |
169 | CONFIG_OSEARCH core/pim/osearchosearch.pro | 169 | CONFIG_OSEARCH core/pim/osearchosearch.pro |
170 | CONFIG_OXYGEN noncore/apps/oxygenoxygen.pro | 170 | CONFIG_OXYGEN noncore/apps/oxygenoxygen.pro |
171 | CONFIG_PACKAGEMANAGER noncore/settings/packagemanagerpackagemanager.pro | 171 | CONFIG_PACKAGEMANAGER noncore/settings/packagemanagerpackagemanager.pro |
172 | CONFIG_PARASHOOT noncore/games/parashootparashoot.pro | 172 | CONFIG_PARASHOOT noncore/games/parashootparashoot.pro |
173 | CONFIG_PHASE noncore/styles/phasephase.pro | 173 | CONFIG_PHASE noncore/styles/phasephase.pro |
174 | CONFIG_PICKBOARD inputmethods/pickboardpickboard.pro | 174 | CONFIG_PICKBOARD inputmethods/pickboardpickboard.pro |
175 | CONFIG_PIMCONVERTER noncore/tools/pimconverter converter.pro | 175 | CONFIG_PIMCONVERTER noncore/tools/pimconverter converter.pro |
176 | CONFIG_POWERCHORD noncore/multimedia/powerchordpowerchord.pro | 176 | CONFIG_POWERCHORD noncore/multimedia/powerchordpowerchord.pro |
177 | CONFIG_PPP noncore/settings/networksettings/ppp ppp.pro | 177 | CONFIG_PPP noncore/settings/networksettings/ppp ppp.pro |
178 | CONFIG_PYQUICKLAUNCH-APPLET noncore/applets/pyquicklaunchpyquicklaunch.pro | 178 | CONFIG_PYQUICKLAUNCH-APPLET noncore/applets/pyquicklaunchpyquicklaunch.pro |
179 | CONFIG_PYQUICKLAUNCHER noncore/tools/pyquicklauncherpyquicklauncher.pro | 179 | CONFIG_PYQUICKLAUNCHER noncore/tools/pyquicklauncherpyquicklauncher.pro |
180 | CONFIG_PYTHON-EXAMPLESexamples/python bla.pro | 180 | CONFIG_PYTHON-EXAMPLESexamples/python bla.pro |
181 | CONFIG_QASHMONEY noncore/unsupported/qashmoneyqashmoney.pro | 181 | CONFIG_QASHMONEY noncore/unsupported/qashmoneyqashmoney.pro |
182 | CONFIG_QASTEROIDS noncore/games/qasteroidsqasteroids.pro | 182 | CONFIG_QASTEROIDS noncore/games/qasteroidsqasteroids.pro |
183 | CONFIG_QCOP core/apps/qcopqcop.pro | 183 | CONFIG_QCOP core/apps/qcopqcop.pro |
184 | CONFIG_QPDF noncore/unsupported/qpdfqpdf.pro | 184 | CONFIG_QPDF noncore/unsupported/qpdfqpdf.pro |
185 | CONFIG_QSS core/apps/qssqss.pro | ||
185 | CONFIG_QUICKLAUNCHER core/tools/quicklauncher quicklauncher.pro | 186 | CONFIG_QUICKLAUNCHER core/tools/quicklauncher quicklauncher.pro |
186 | CONFIG_QWS core/qwsqws.pro | 187 | CONFIG_QWS core/qwsqws.pro |
187 | CONFIG_REMOTE noncore/tools/remoteremote.pro | 188 | CONFIG_REMOTE noncore/tools/remoteremote.pro |
188 | CONFIG_RESTARTAPPLET2 core/applets/restartapplet2restartapplet2.pro | 189 | CONFIG_RESTARTAPPLET2 core/applets/restartapplet2restartapplet2.pro |
189 | CONFIG_RESTARTAPPLET core/applets/restartappletrestartapplet.pro | 190 | CONFIG_RESTARTAPPLET core/applets/restartappletrestartapplet.pro |
190 | CONFIG_ROTATEAPPLET core/applets/rotateappletrotateapplet.pro | 191 | CONFIG_ROTATEAPPLET core/applets/rotateappletrotateapplet.pro |
191 | CONFIG_ROTATION noncore/settings/rotationrotation.pro | 192 | CONFIG_ROTATION noncore/settings/rotationrotation.pro |
192 | CONFIG_RUNAPPLET core/applets/runappletrunapplet.pro | 193 | CONFIG_RUNAPPLET core/applets/runappletrunapplet.pro |
193 | CONFIG_SCREENSHOTAPPLET core/applets/screenshotappletscreenshotapplet.pro | 194 | CONFIG_SCREENSHOTAPPLET core/applets/screenshotappletscreenshotapplet.pro |
194 | CONFIG_SECURITY core/settings/securitysecurity.pro | 195 | CONFIG_SECURITY core/settings/securitysecurity.pro |
195 | CONFIG_MULTIAUTH_DEMO core/settings/security/demomultiauth.pro | 196 | CONFIG_MULTIAUTH_DEMO core/settings/security/demomultiauth.pro |
196 | CONFIG_SFCAVE noncore/games/sfcavesfcave.pro | 197 | CONFIG_SFCAVE noncore/games/sfcavesfcave.pro |
197 | CONFIG_SFCAVE-SDL noncore/games/sfcave-sdlsfcave-sdl.pro | 198 | CONFIG_SFCAVE-SDL noncore/games/sfcave-sdlsfcave-sdl.pro |
198 | CONFIG_SHOWIMG noncore/multimedia/showimgshowimg.pro | 199 | CONFIG_SHOWIMG noncore/multimedia/showimgshowimg.pro |
199 | CONFIG_SIMPLE_EXAMPLE examples/simple simple.pro | 200 | CONFIG_SIMPLE_EXAMPLE examples/simple simple.pro |
200 | CONFIG_SIMPLE_ICON examples/simple-icon simple-icon.pro | 201 | CONFIG_SIMPLE_ICON examples/simple-icon simple-icon.pro |
201 | CONFIG_SIMPLE_MAIN examples/simple-main simple-main.pro | 202 | CONFIG_SIMPLE_MAIN examples/simple-main simple-main.pro |
202 | CONFIG_SIMPLE noncore/tools/calc2/simplesimple.pro | 203 | CONFIG_SIMPLE noncore/tools/calc2/simplesimple.pro |
203 | CONFIG_SIMPLE_PIM examples/simple-pim simple-pim.pro | 204 | CONFIG_SIMPLE_PIM examples/simple-pim simple-pim.pro |
204 | CONFIG_SINGLE singlesingle.pro | 205 | CONFIG_SINGLE singlesingle.pro |
205 | CONFIG_SNAKE noncore/games/snakesnake.pro | 206 | CONFIG_SNAKE noncore/games/snakesnake.pro |
206 | CONFIG_SOLITAIRE noncore/games/solitairesolitaire.pro | 207 | CONFIG_SOLITAIRE noncore/games/solitairesolitaire.pro |
207 | CONFIG_SOUND noncore/settings/soundsound.pro | 208 | CONFIG_SOUND noncore/settings/soundsound.pro |
208 | CONFIG_SSHKEYS noncore/settings/sshkeyssshkeys.pro | 209 | CONFIG_SSHKEYS noncore/settings/sshkeyssshkeys.pro |