author | mickeyl <mickeyl> | 2004-01-21 23:41:53 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2004-01-21 23:41:53 (UTC) |
commit | a428ff7937dae04b1b51d3e91f46c74f4f869543 (patch) (unidiff) | |
tree | 35e266a250a893ad3eb7b934296538ea82722954 /libopie2 | |
parent | cc5d48b188c21ff873300179264ab354d4c8aa09 (diff) | |
download | opie-a428ff7937dae04b1b51d3e91f46c74f4f869543.zip opie-a428ff7937dae04b1b51d3e91f46c74f4f869543.tar.gz opie-a428ff7937dae04b1b51d3e91f46c74f4f869543.tar.bz2 |
catch up with moves on cvs server
-rw-r--r-- | libopie2/opiecore/device/.cvsignore | 6 | ||||
-rw-r--r-- | libopie2/opiecore/device/device.pro | 19 | ||||
-rw-r--r-- | libopie2/opiecore/libopiecore2.control | 2 | ||||
-rw-r--r-- | libopie2/opiecore/opiecore.pro | 23 | ||||
-rw-r--r-- | libopie2/opieui/fileselector/.cvsignore | 6 | ||||
-rw-r--r-- | libopie2/opieui/fileselector/fileselector.pro | 8 | ||||
-rw-r--r-- | libopie2/opieui/libopieui2.control | 4 | ||||
-rw-r--r-- | libopie2/opieui/opieui.pro | 9 |
8 files changed, 47 insertions, 30 deletions
diff --git a/libopie2/opiecore/device/.cvsignore b/libopie2/opiecore/device/.cvsignore new file mode 100644 index 0000000..8f7300c --- a/dev/null +++ b/libopie2/opiecore/device/.cvsignore | |||
@@ -0,0 +1,6 @@ | |||
1 | Makefile* | ||
2 | moc* | ||
3 | *moc | ||
4 | *.o | ||
5 | ~* | ||
6 | |||
diff --git a/libopie2/opiecore/device/device.pro b/libopie2/opiecore/device/device.pro new file mode 100644 index 0000000..946bff1 --- a/dev/null +++ b/libopie2/opiecore/device/device.pro | |||
@@ -0,0 +1,19 @@ | |||
1 | HEADERS += device/odevice.h \ | ||
2 | device/odevicebutton.h \ | ||
3 | device/odevice_ipaq.h \ | ||
4 | device/odevice_jornada.h \ | ||
5 | device/odevice_ramses.h \ | ||
6 | device/odevice_simpad.h \ | ||
7 | device/odevice_zaurus.h \ | ||
8 | device/odevice_yopy.h \ | ||
9 | |||
10 | SOURCES += device/odevice.cpp \ | ||
11 | device/odevicebutton.cpp \ | ||
12 | device/odevice_ipaq.cpp \ | ||
13 | device/odevice_jornada.cpp\ | ||
14 | device/odevice_ramses.cpp \ | ||
15 | device/odevice_simpad.cpp \ | ||
16 | device/odevice_zaurus.cpp \ | ||
17 | device/odevice_yopy.cpp \ | ||
18 | |||
19 | |||
diff --git a/libopie2/opiecore/libopiecore2.control b/libopie2/opiecore/libopiecore2.control index f0a3afc..4679f28 100644 --- a/libopie2/opiecore/libopiecore2.control +++ b/libopie2/opiecore/libopiecore2.control | |||
@@ -1,11 +1,11 @@ | |||
1 | Package: libopiecore2 | 1 | Package: libopiecore2 |
2 | Files: $OPIEDIR/lib/libopiecore2.so.* | 2 | Files: $OPIEDIR/lib/libopiecore2.so.* |
3 | Priority: optional | 3 | Priority: optional |
4 | Section: opie/system | 4 | Section: opie/system |
5 | Maintainer: Opie Team <opie@handhelds.org> | 5 | Maintainer: Opie Team <opie@handhelds.org> |
6 | Architecture: arm | 6 | Architecture: arm |
7 | Version: 1.8.3-$SUB_VERSION.2 | 7 | Version: 1.8.5-$SUB_VERSION.1 |
8 | Depends: libqpe1 | 8 | Depends: libqpe1 |
9 | Provides: libopiecore2 | 9 | Provides: libopiecore2 |
10 | Description: Opie library 2.0 CORE | 10 | Description: Opie library 2.0 CORE |
11 | 11 | ||
diff --git a/libopie2/opiecore/opiecore.pro b/libopie2/opiecore/opiecore.pro index 98d315f..7a75a02 100644 --- a/libopie2/opiecore/opiecore.pro +++ b/libopie2/opiecore/opiecore.pro | |||
@@ -1,55 +1,38 @@ | |||
1 | TEMPLATE = lib | 1 | TEMPLATE = lib |
2 | CONFIG += qt warn_on debug | 2 | CONFIG += qt warn_on debug |
3 | DESTDIR = $(OPIEDIR)/lib | 3 | DESTDIR = $(OPIEDIR)/lib |
4 | HEADERS = oapplication.h \ | 4 | HEADERS = oapplication.h \ |
5 | oconfig.h \ | 5 | oconfig.h \ |
6 | odebug.h \ | 6 | odebug.h \ |
7 | odevice.h \ | ||
8 | odevicebutton.h \ | ||
9 | odevice_ipaq.h \ | ||
10 | odevice_jornada.h \ | ||
11 | odevice_ramses.h \ | ||
12 | odevice_simpad.h \ | ||
13 | odevice_zaurus.h \ | ||
14 | odevice_yopy.h \ | ||
15 | oglobal.h \ | 7 | oglobal.h \ |
16 | oglobalsettings.h \ | 8 | oglobalsettings.h \ |
17 | oprocess.h \ | 9 | oprocess.h \ |
18 | oprocctrl.h \ | 10 | oprocctrl.h \ |
19 | ostorageinfo.h | 11 | ostorageinfo.h |
20 | 12 | ||
21 | SOURCES = oapplication.cpp \ | 13 | SOURCES = oapplication.cpp \ |
22 | oconfig.cpp \ | 14 | oconfig.cpp \ |
23 | odebug.cpp \ | 15 | odebug.cpp \ |
24 | odevice.cpp \ | ||
25 | odevicebutton.cpp \ | ||
26 | odevice_ipaq.cpp \ | ||
27 | odevice_jornada.cpp \ | ||
28 | odevice_ramses.cpp \ | ||
29 | odevice_simpad.cpp \ | ||
30 | odevice_zaurus.cpp \ | ||
31 | odevice_yopy.cpp \ | ||
32 | oglobal.cpp \ | 16 | oglobal.cpp \ |
33 | oglobalsettings.cpp \ | 17 | oglobalsettings.cpp \ |
34 | oprocess.cpp \ | 18 | oprocess.cpp \ |
35 | oprocctrl.cpp \ | 19 | oprocctrl.cpp \ |
36 | ostorageinfo.cpp | 20 | ostorageinfo.cpp |
37 | 21 | ||
22 | include ( device/device.pro ) | ||
23 | |||
38 | INTERFACES = | 24 | INTERFACES = |
39 | TARGET = opiecore2 | 25 | TARGET = opiecore2 |
40 | VERSION = 1.8.3 | 26 | VERSION = 1.8.5 |
41 | INCLUDEPATH += $(OPIEDIR)/include | 27 | INCLUDEPATH += $(OPIEDIR)/include |
42 | DEPENDPATH += $(OPIEDIR)/include | 28 | DEPENDPATH += $(OPIEDIR)/include |
43 | MOC_DIR = moc | ||
44 | OBJECTS_DIR = obj | ||
45 | |||
46 | 29 | ||
47 | !contains( platform, x11 ) { | 30 | !contains( platform, x11 ) { |
48 | LIBS = -lqpe | 31 | LIBS = -lqpe |
49 | include ( $(OPIEDIR)/include.pro ) | 32 | include ( $(OPIEDIR)/include.pro ) |
50 | } | 33 | } |
51 | 34 | ||
52 | contains( platform, x11 ) { | 35 | contains( platform, x11 ) { |
53 | LIBS = -L$(OPIEDIR)/lib -Wl,-rpath,$(OPIEDIR)/lib | 36 | LIBS = -L$(OPIEDIR)/lib -Wl,-rpath,$(OPIEDIR)/lib |
54 | } | 37 | } |
55 | 38 | ||
diff --git a/libopie2/opieui/fileselector/.cvsignore b/libopie2/opieui/fileselector/.cvsignore new file mode 100644 index 0000000..8f7300c --- a/dev/null +++ b/libopie2/opieui/fileselector/.cvsignore | |||
@@ -0,0 +1,6 @@ | |||
1 | Makefile* | ||
2 | moc* | ||
3 | *moc | ||
4 | *.o | ||
5 | ~* | ||
6 | |||
diff --git a/libopie2/opieui/fileselector/fileselector.pro b/libopie2/opieui/fileselector/fileselector.pro new file mode 100644 index 0000000..cbbd588 --- a/dev/null +++ b/libopie2/opieui/fileselector/fileselector.pro | |||
@@ -0,0 +1,8 @@ | |||
1 | HEADERS += fileselector/ofileselector.h \ | ||
2 | fileselector/ofileselector_p.h \ | ||
3 | fileselector/ofiledialog.h \ | ||
4 | fileselector/ofileview.h \ | ||
5 | |||
6 | SOURCES += fileselector/ofileselector.cpp \ | ||
7 | fileselector/ofiledialog.cpp \ | ||
8 | |||
diff --git a/libopie2/opieui/libopieui2.control b/libopie2/opieui/libopieui2.control index 71e6358..6f61f53 100644 --- a/libopie2/opieui/libopieui2.control +++ b/libopie2/opieui/libopieui2.control | |||
@@ -1,11 +1,11 @@ | |||
1 | Package: libopieui2 | 1 | Package: libopieui2 |
2 | Files: $OPIEDIR/lib/libopieui2.so.* | 2 | Files: $OPIEDIR/lib/libopieui2.so.* |
3 | Priority: optional | 3 | Priority: optional |
4 | Section: opie/system | 4 | Section: opie/system |
5 | Maintainer: Opie Team <opie@handhelds.org> | 5 | Maintainer: Opie Team <opie@handhelds.org> |
6 | Architecture: arm | 6 | Architecture: arm |
7 | Version: 1.8.2-$SUB_VERSION.2 | 7 | Version: 1.8.5-$SUB_VERSION.1 |
8 | Depends: libqpe1, libopiecore2 (1.8.2) | 8 | Depends: libqpe1, libopiecore2 (1.8.5) |
9 | Provides: libopieui2 | 9 | Provides: libopieui2 |
10 | Description: Opie library 2.0 UI | 10 | Description: Opie library 2.0 UI |
11 | 11 | ||
diff --git a/libopie2/opieui/opieui.pro b/libopie2/opieui/opieui.pro index b07976b..8b8ed21 100644 --- a/libopie2/opieui/opieui.pro +++ b/libopie2/opieui/opieui.pro | |||
@@ -1,67 +1,62 @@ | |||
1 | TEMPLATE = lib | 1 | TEMPLATE = lib |
2 | CONFIG += qt warn_on debug | 2 | CONFIG += qt warn_on debug |
3 | DESTDIR = $(OPIEDIR)/lib | 3 | DESTDIR = $(OPIEDIR)/lib |
4 | HEADERS = ocheckitem.h \ | 4 | HEADERS = ocheckitem.h \ |
5 | oclickablelabel.h \ | 5 | oclickablelabel.h \ |
6 | odialog.h \ | 6 | odialog.h \ |
7 | ofileselector.h \ | ||
8 | ofileselector_p.h \ | ||
9 | ofiledialog.h \ | ||
10 | ofileview.h \ | ||
11 | ofontselector.h \ | 7 | ofontselector.h \ |
12 | oimageeffect.h \ | 8 | oimageeffect.h \ |
13 | olistview.h \ | 9 | olistview.h \ |
14 | opixmapeffect.h \ | 10 | opixmapeffect.h \ |
15 | opopupmenu.h \ | 11 | opopupmenu.h \ |
16 | opixmapprovider.h \ | 12 | opixmapprovider.h \ |
17 | oselector.h \ | 13 | oselector.h \ |
18 | otabinfo.h \ | 14 | otabinfo.h \ |
19 | otabbar.h \ | 15 | otabbar.h \ |
20 | otabwidget.h \ | 16 | otabwidget.h \ |
21 | otimepicker.h \ | 17 | otimepicker.h \ |
22 | oversatileview.h \ | 18 | oversatileview.h \ |
23 | oversatileviewitem.h \ | 19 | oversatileviewitem.h \ |
24 | omessagebox.h \ | 20 | omessagebox.h \ |
25 | oresource.h \ | 21 | oresource.h \ |
26 | otaskbarapplet.h \ | 22 | otaskbarapplet.h \ |
27 | oseparator.h | 23 | oseparator.h |
28 | 24 | ||
29 | SOURCES = ocheckitem.cpp \ | 25 | SOURCES = ocheckitem.cpp \ |
30 | oclickablelabel.cpp \ | 26 | oclickablelabel.cpp \ |
31 | ofileselector.cpp \ | ||
32 | ofiledialog.cpp \ | ||
33 | ofontselector.cpp \ | 27 | ofontselector.cpp \ |
34 | oimageeffect.cpp \ | 28 | oimageeffect.cpp \ |
35 | olistview.cpp \ | 29 | olistview.cpp \ |
36 | opixmapeffect.cpp \ | 30 | opixmapeffect.cpp \ |
37 | opopupmenu.cpp \ | 31 | opopupmenu.cpp \ |
38 | opixmapprovider.cpp \ | 32 | opixmapprovider.cpp \ |
39 | oselector.cpp \ | 33 | oselector.cpp \ |
40 | otabbar.cpp \ | 34 | otabbar.cpp \ |
41 | otabwidget.cpp \ | 35 | otabwidget.cpp \ |
42 | otimepicker.cpp \ | 36 | otimepicker.cpp \ |
43 | oversatileview.cpp \ | 37 | oversatileview.cpp \ |
44 | oversatileviewitem.cpp \ | 38 | oversatileviewitem.cpp \ |
45 | odialog.cpp \ | 39 | odialog.cpp \ |
46 | oresource.cpp \ | 40 | oresource.cpp \ |
47 | otaskbarapplet.cpp \ | 41 | otaskbarapplet.cpp \ |
48 | oseparator.cpp | 42 | oseparator.cpp |
49 | 43 | ||
50 | include ( big-screen/big-screen.pro ) | 44 | include ( big-screen/big-screen.pro ) |
45 | include ( fileselector/fileselector.pro ) | ||
51 | 46 | ||
52 | INTERFACES = otimepickerbase.ui | 47 | INTERFACES = otimepickerbase.ui |
53 | 48 | ||
54 | TARGET = opieui2 | 49 | TARGET = opieui2 |
55 | VERSION = 1.8.4 | 50 | VERSION = 1.8.5 |
56 | 51 | ||
57 | INCLUDEPATH += $(OPIEDIR)/include | 52 | INCLUDEPATH += $(OPIEDIR)/include |
58 | DEPENDPATH += $(OPIEDIR)/include | 53 | DEPENDPATH += $(OPIEDIR)/include |
59 | 54 | ||
60 | LIBS += -lopiecore2 | 55 | LIBS += -lopiecore2 |
61 | 56 | ||
62 | !contains( platform, x11 ) { | 57 | !contains( platform, x11 ) { |
63 | include ( $(OPIEDIR)/include.pro ) | 58 | include ( $(OPIEDIR)/include.pro ) |
64 | } | 59 | } |
65 | 60 | ||
66 | contains( platform, x11 ) { | 61 | contains( platform, x11 ) { |
67 | LIBS += -L$(OPIEDIR)/lib -Wl,-rpath,$(OPIEDIR)/lib | 62 | LIBS += -L$(OPIEDIR)/lib -Wl,-rpath,$(OPIEDIR)/lib |