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 | |||
@@ -6,3 +6,3 @@ 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 |
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 | |||
@@ -6,10 +6,2 @@ HEADERS = oapplication.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 \ |
@@ -23,10 +15,2 @@ SOURCES = oapplication.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 \ |
@@ -37,10 +21,9 @@ SOURCES = oapplication.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 | ||
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 | |||
@@ -6,4 +6,4 @@ 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 |
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 | |||
@@ -6,6 +6,2 @@ HEADERS = ocheckitem.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 \ |
@@ -30,4 +26,2 @@ SOURCES = ocheckitem.cpp \ | |||
30 | oclickablelabel.cpp \ | 26 | oclickablelabel.cpp \ |
31 | ofileselector.cpp \ | ||
32 | ofiledialog.cpp \ | ||
33 | ofontselector.cpp \ | 27 | ofontselector.cpp \ |
@@ -50,2 +44,3 @@ SOURCES = ocheckitem.cpp \ | |||
50 | include ( big-screen/big-screen.pro ) | 44 | include ( big-screen/big-screen.pro ) |
45 | include ( fileselector/fileselector.pro ) | ||
51 | 46 | ||
@@ -54,3 +49,3 @@ INTERFACES = otimepickerbase.ui | |||
54 | TARGET = opieui2 | 49 | TARGET = opieui2 |
55 | VERSION = 1.8.4 | 50 | VERSION = 1.8.5 |
56 | 51 | ||