View | Details | Raw Unified | Return to bug 67255 | Differences between
and this patch

Collapse All | Expand All

(-)/usr/ports/x11-toolkits/py-kde/Makefile (-27 / +12 lines)
Lines 6-18 Link Here
6
#
6
#
7
7
8
PORTNAME=	kde
8
PORTNAME=	kde
9
PORTVERSION=	3.3.2
9
PORTVERSION=	3.11.r1
10
PORTREVISION=	2
11
CATEGORIES=	x11-toolkits kde python
10
CATEGORIES=	x11-toolkits kde python
12
MASTER_SITES=	http://www.river-bank.demon.co.uk/download/PyKDE2/ \
11
MASTER_SITES=	http://www.river-bank.demon.co.uk/download/PyKDE2/ \
13
		http://www.river-bank.demon.co.uk/download/PyQt/:qt
12
		http://www.river-bank.demon.co.uk/download/PyQt/:qt
14
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
13
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
15
DISTNAME=	PyKDE-${PORTVERSION}-3
14
DISTNAME=	PyKDE-3.11rc1
16
DISTFILES=	${DISTNAME}${EXTRACT_SUFX} PyQt-x11-gpl-${PYQTVERSION}${EXTRACT_SUFX}:qt
15
DISTFILES=	${DISTNAME}${EXTRACT_SUFX} PyQt-x11-gpl-${PYQTVERSION}${EXTRACT_SUFX}:qt
17
16
18
MAINTAINER=	ports@FreeBSD.org
17
MAINTAINER=	ports@FreeBSD.org
Lines 20-38 Link Here
20
19
21
BUILD_DEPENDS=	pyuic:${PORTSDIR}/x11-toolkits/py-qt
20
BUILD_DEPENDS=	pyuic:${PORTSDIR}/x11-toolkits/py-qt
22
21
23
BROKEN=		"Checksum mismatch; will be removed after Feb 2"
22
WRKSRC=		${WRKDIR}/${DISTNAME}
24
25
WRKSRC=		${WRKDIR}/PyKDE-${PORTVERSION}
26
23
27
USE_PYTHON=	yes
24
USE_PYTHON=	yes
28
USE_KDELIBS_VER=3
25
USE_KDELIBS_VER=3
29
USE_REINPLACE=	yes
26
USE_REINPLACE=	yes
30
27
31
PYQTVERSION=	3.4
28
PYQTVERSION=	3.11
32
33
ALL_TARGET=	all install
34
35
MODULES=	dcop kdecore kdesu kdefx kdeui kio kfile kparts khtml kjs kspell kdeprint
36
29
37
PLIST_SUB+=	PKGBASE=${PKGBASE}
30
PLIST_SUB+=	PKGBASE=${PKGBASE}
38
31
Lines 42-68 Link Here
42
	@${REINPLACE_CMD} -e 's#/usr/bin/python#${PYTHON_CMD}#' ${WRKSRC}/postproc
35
	@${REINPLACE_CMD} -e 's#/usr/bin/python#${PYTHON_CMD}#' ${WRKSRC}/postproc
43
36
44
do-configure:
37
do-configure:
45
	@${MKDIR} ${WRKDIR}/modules
38
	@( cd ${WRKSRC} && ${PYTHON_CMD} configure.py -c \
46
	@( cd ${WRKSRC} && env KDEDIR=${PREFIX} ${PYTHON_CMD} build.py -c \
39
		-k ${LOCALBASE} \
47
		-e ${PREFIX}/include/sip -q ${X11BASE} \
40
		-v ${PREFIX}/share/sip \
48
		-v ${WRKDIR}/PyQt-x11-gpl-3.4/sip -d ${WRKDIR}/modules )
41
		-d ${PYTHONPREFIX_SITELIBDIR} )
49
	@${REINPLACE_CMD} -e 's#LIBS *= $$(SUBLIBS)#LIBS = $$(SUBLIBS) -L${WRKDIR}/modules -Wl,-rpath,${PYTHONPREFIX_SITELIBDIR}#' ${WRKSRC}/*/Makefile
50
	@${REINPLACE_CMD} -e 's#atoll (s)#strtoll (s, NULL, 10)#' ${WRKSRC}/kio/kiohuge.cpp
51
52
pre-build:
53
.for module in ${MODULES}
54
	( cd ${WRKSRC}/${module} && ${MAKE} ${ALL_TARGET} )
55
.endfor
56
42
57
pre-install:
43
pre-install:
58
	@(${ECHO} "#!${PYTHON_CMD}"; ${CAT} ${WRKSRC}/kdepyuic.py) > ${WRKSRC}/kdepyuic
44
	@${REINPLACE_CMD} -e "s,/usr/bin/env python,${PYTHON_CMD}," \
45
		${WRKSRC}/contrib/kdepyuic
59
46
60
do-install:
47
post-install:
61
	@( cd ${WRKDIR}/modules/ && ${TAR} -cf - . ) | \
62
		( cd ${PYTHONPREFIX_SITELIBDIR} && ${TAR} xf - )
63
	@${MKDIR} ${PREFIX}/share/examples/${PKGBASE}
48
	@${MKDIR} ${PREFIX}/share/examples/${PKGBASE}
64
	@( cd ${WRKSRC}/examples && ${TAR} -cf - . ) | \
49
	@( cd ${WRKSRC}/examples && ${TAR} -cf - . ) | \
65
		( cd ${PREFIX}/share/examples/${PKGBASE} && ${TAR} -xf - )
50
		( cd ${PREFIX}/share/examples/${PKGBASE} && ${TAR} -xf - )
66
	@${INSTALL_SCRIPT} ${WRKSRC}/kdepyuic ${PREFIX}/bin
51
	@${INSTALL_SCRIPT} ${WRKSRC}/contrib/kdepyuic ${PREFIX}/bin
67
52
68
.include <bsd.port.mk>
53
.include <bsd.port.mk>
(-)/usr/ports/x11-toolkits/py-kde/distinfo (-2 / +4 lines)
Lines 1-2 Link Here
1
MD5 (PyKDE-3.3.2-3.tar.gz) = 1df179c05b7d296e88e8f04d9a384522
1
MD5 (PyKDE-3.11rc1.tar.gz) = ad113efa838c79f262212d1795485f22
2
MD5 (PyQt-x11-gpl-3.4.tar.gz) = 1a61c55ad716f20f52883740c578c352
2
SIZE (PyKDE-3.11rc1.tar.gz) = 1019499
3
MD5 (PyQt-x11-gpl-3.11.tar.gz) = 78d0ef29f57d7efd1d87f9a24fc25f1e
4
SIZE (PyQt-x11-gpl-3.11.tar.gz) = 757652
(-)/usr/ports/x11-toolkits/py-kde/files/patch-build.py (-11 lines)
Lines 1-11 Link Here
1
--- build.py.orig	Tue Sep 17 15:40:30 2002
2
+++ build.py	Tue Sep 17 15:40:48 2002
3
@@ -805,7 +805,7 @@
4
     proPatches["DEFINES"] = [re.compile("@BL_DEFINES@",re.M), defines]
5
 
6
     checkQtLibrary()
7
-    checkThreading ()
8
+    #checkThreading ()
9
     checkKDELibrary()
10
     checkPyQt ()
11
 
(-)/usr/ports/x11-toolkits/py-kde/files/patch-configure.py (+11 lines)
Line 0 Link Here
1
--- configure.py.orig	Sat May  8 11:09:53 2004
2
+++ configure.py	Wed May 26 19:47:16 2004
3
@@ -700,7 +700,7 @@
4
             opt_concat = 1
5
 
6
         elif opt == "-d":
7
-            opt_pyqtmoddir = arg
8
+            opt_pykdemoddir = arg
9
         elif opt == "-g":
10
             opt_releasegil = 1
11
 
(-)/usr/ports/x11-toolkits/py-kde/pkg-descr (-1 / +1 lines)
Lines 1-3 Link Here
1
Python Bindings for KDE.
1
Python Bindings for KDE.
2
2
3
WWW: http://www.thekompany.com/projects/pykde/
3
WWW: http://www.riverbankcomputing.co.uk/pykde/index.php
(-)/usr/ports/x11-toolkits/py-kde/pkg-plist (-80 / +512 lines)
Lines 1-84 Link Here
1
bin/kdepyuic
1
bin/kdepyuic
2
lib/%%PYTHON_VERSION%%/site-packages/dcop.py
2
%%PYTHON_SITELIBDIR%%/dcop.so
3
lib/%%PYTHON_VERSION%%/site-packages/dcop.pyc
3
%%PYTHON_SITELIBDIR%%/kdecore.so
4
lib/%%PYTHON_VERSION%%/site-packages/kdecore.py
4
%%PYTHON_SITELIBDIR%%/kdefx.so
5
lib/%%PYTHON_VERSION%%/site-packages/kdecore.pyc
5
%%PYTHON_SITELIBDIR%%/kdeprint.so
6
lib/%%PYTHON_VERSION%%/site-packages/kdefx.py
6
%%PYTHON_SITELIBDIR%%/kdesu.so
7
lib/%%PYTHON_VERSION%%/site-packages/kdefx.pyc
7
%%PYTHON_SITELIBDIR%%/kdeui.so
8
lib/%%PYTHON_VERSION%%/site-packages/kdeprint.py
8
%%PYTHON_SITELIBDIR%%/kfile.so
9
lib/%%PYTHON_VERSION%%/site-packages/kdeprint.pyc
9
%%PYTHON_SITELIBDIR%%/khtml.so
10
lib/%%PYTHON_VERSION%%/site-packages/kdesu.py
10
%%PYTHON_SITELIBDIR%%/kio.so
11
lib/%%PYTHON_VERSION%%/site-packages/kdesu.pyc
11
%%PYTHON_SITELIBDIR%%/kmdi.so
12
lib/%%PYTHON_VERSION%%/site-packages/kdeui.py
12
%%PYTHON_SITELIBDIR%%/kparts.so
13
lib/%%PYTHON_VERSION%%/site-packages/kdeui.pyc
13
%%PYTHON_SITELIBDIR%%/kspell.so
14
lib/%%PYTHON_VERSION%%/site-packages/kfile.py
14
%%PYTHON_SITELIBDIR%%/pykdeconfig.py
15
lib/%%PYTHON_VERSION%%/site-packages/kfile.pyc
16
lib/%%PYTHON_VERSION%%/site-packages/khtml.py
17
lib/%%PYTHON_VERSION%%/site-packages/khtml.pyc
18
lib/%%PYTHON_VERSION%%/site-packages/kio.py
19
lib/%%PYTHON_VERSION%%/site-packages/kio.pyc
20
lib/%%PYTHON_VERSION%%/site-packages/kjs.py
21
lib/%%PYTHON_VERSION%%/site-packages/kjs.pyc
22
lib/%%PYTHON_VERSION%%/site-packages/kparts.py
23
lib/%%PYTHON_VERSION%%/site-packages/kparts.pyc
24
lib/%%PYTHON_VERSION%%/site-packages/kspell.py
25
lib/%%PYTHON_VERSION%%/site-packages/kspell.pyc
26
lib/%%PYTHON_VERSION%%/site-packages/libdcopcmodule.so.1.0.0
27
lib/%%PYTHON_VERSION%%/site-packages/libdcopcmodule.so.1.0
28
lib/%%PYTHON_VERSION%%/site-packages/libdcopcmodule.so.1
29
lib/%%PYTHON_VERSION%%/site-packages/libdcopcmodule.so
30
lib/%%PYTHON_VERSION%%/site-packages/libkdecorecmodule.so.1.0.0
31
lib/%%PYTHON_VERSION%%/site-packages/libkdecorecmodule.so.1.0
32
lib/%%PYTHON_VERSION%%/site-packages/libkdecorecmodule.so.1
33
lib/%%PYTHON_VERSION%%/site-packages/libkdecorecmodule.so
34
lib/%%PYTHON_VERSION%%/site-packages/libkdefxcmodule.so.1.0.0
35
lib/%%PYTHON_VERSION%%/site-packages/libkdefxcmodule.so.1.0
36
lib/%%PYTHON_VERSION%%/site-packages/libkdefxcmodule.so.1
37
lib/%%PYTHON_VERSION%%/site-packages/libkdefxcmodule.so
38
lib/%%PYTHON_VERSION%%/site-packages/libkdeprintcmodule.so.1.0.0
39
lib/%%PYTHON_VERSION%%/site-packages/libkdeprintcmodule.so.1.0
40
lib/%%PYTHON_VERSION%%/site-packages/libkdeprintcmodule.so.1
41
lib/%%PYTHON_VERSION%%/site-packages/libkdeprintcmodule.so
42
lib/%%PYTHON_VERSION%%/site-packages/libkdesucmodule.so.1.0.0
43
lib/%%PYTHON_VERSION%%/site-packages/libkdesucmodule.so.1.0
44
lib/%%PYTHON_VERSION%%/site-packages/libkdesucmodule.so.1
45
lib/%%PYTHON_VERSION%%/site-packages/libkdesucmodule.so
46
lib/%%PYTHON_VERSION%%/site-packages/libkdeuicmodule.so.1.0.0
47
lib/%%PYTHON_VERSION%%/site-packages/libkdeuicmodule.so.1.0
48
lib/%%PYTHON_VERSION%%/site-packages/libkdeuicmodule.so.1
49
lib/%%PYTHON_VERSION%%/site-packages/libkdeuicmodule.so
50
lib/%%PYTHON_VERSION%%/site-packages/libkfilecmodule.so.1.0.0
51
lib/%%PYTHON_VERSION%%/site-packages/libkfilecmodule.so.1.0
52
lib/%%PYTHON_VERSION%%/site-packages/libkfilecmodule.so.1
53
lib/%%PYTHON_VERSION%%/site-packages/libkfilecmodule.so
54
lib/%%PYTHON_VERSION%%/site-packages/libkhtmlcmodule.so.1.0.0
55
lib/%%PYTHON_VERSION%%/site-packages/libkhtmlcmodule.so.1.0
56
lib/%%PYTHON_VERSION%%/site-packages/libkhtmlcmodule.so.1
57
lib/%%PYTHON_VERSION%%/site-packages/libkhtmlcmodule.so
58
lib/%%PYTHON_VERSION%%/site-packages/libkiocmodule.so.1.0.0
59
lib/%%PYTHON_VERSION%%/site-packages/libkiocmodule.so.1.0
60
lib/%%PYTHON_VERSION%%/site-packages/libkiocmodule.so.1
61
lib/%%PYTHON_VERSION%%/site-packages/libkiocmodule.so
62
lib/%%PYTHON_VERSION%%/site-packages/libkjscmodule.so.1.0.0
63
lib/%%PYTHON_VERSION%%/site-packages/libkjscmodule.so.1.0
64
lib/%%PYTHON_VERSION%%/site-packages/libkjscmodule.so.1
65
lib/%%PYTHON_VERSION%%/site-packages/libkjscmodule.so
66
lib/%%PYTHON_VERSION%%/site-packages/libkpartscmodule.so.1.0.0
67
lib/%%PYTHON_VERSION%%/site-packages/libkpartscmodule.so.1.0
68
lib/%%PYTHON_VERSION%%/site-packages/libkpartscmodule.so.1
69
lib/%%PYTHON_VERSION%%/site-packages/libkpartscmodule.so
70
lib/%%PYTHON_VERSION%%/site-packages/libkspellcmodule.so.1.0.0
71
lib/%%PYTHON_VERSION%%/site-packages/libkspellcmodule.so.1.0
72
lib/%%PYTHON_VERSION%%/site-packages/libkspellcmodule.so.1
73
lib/%%PYTHON_VERSION%%/site-packages/libkspellcmodule.so
74
share/examples/%%PKGBASE%%/Makefile.am
75
share/examples/%%PKGBASE%%/README
15
share/examples/%%PKGBASE%%/README
76
share/examples/%%PKGBASE%%/aboutkde.png
16
share/examples/%%PKGBASE%%/aboutkde.png
77
share/examples/%%PKGBASE%%/first.py
17
share/examples/%%PKGBASE%%/astron.png
78
share/examples/%%PKGBASE%%/first.ui
18
share/examples/%%PKGBASE%%/kdeform1.ui
19
share/examples/%%PKGBASE%%/kdeform1.ui.h
20
share/examples/%%PKGBASE%%/kpartgui.dtd
21
share/examples/%%PKGBASE%%/kurldemo.py
22
share/examples/%%PKGBASE%%/menudemo.py
23
share/examples/%%PKGBASE%%/mimetype.py
79
share/examples/%%PKGBASE%%/pyKHTMLPart.py
24
share/examples/%%PKGBASE%%/pyKHTMLPart.py
80
share/examples/%%PKGBASE%%/pyParts.py
25
share/examples/%%PKGBASE%%/pytestimage.png
81
share/examples/%%PKGBASE%%/pyParts.rc
26
share/examples/%%PKGBASE%%/qxembed_example.png
82
share/examples/%%PKGBASE%%/pykdehome.jpg
27
share/examples/%%PKGBASE%%/qxembedexample.py
83
share/examples/%%PKGBASE%%/pykless.py
28
share/examples/%%PKGBASE%%/qxembedexample.ui
84
share/examples/%%PKGBASE%%/pyklistview.py
29
share/examples/%%PKGBASE%%/systray.py
30
share/examples/%%PKGBASE%%/uikmdi.py
31
share/examples/%%PKGBASE%%/uikmdi.rc
32
share/examples/%%PKGBASE%%/uimodules/uidialogs.py
33
share/examples/%%PKGBASE%%/uimodules/uimenus.py
34
share/examples/%%PKGBASE%%/uimodules/uimisc.py
35
share/examples/%%PKGBASE%%/uimodules/uiwidgets.py
36
share/examples/%%PKGBASE%%/uimodules/uixml.py
37
share/examples/%%PKGBASE%%/uiqxembed.py
38
share/examples/%%PKGBASE%%/uisampler.py
39
share/examples/%%PKGBASE%%/xmlmenudemo.py
40
share/examples/%%PKGBASE%%/xmlmenudemoui.rc
41
share/sip/dcop/dcopclient.sip
42
share/sip/dcop/dcopmod.sip
43
share/sip/dcop/dcopmod.sip.in
44
share/sip/dcop/dcopobject.sip
45
share/sip/dcop/dcopref.sip
46
share/sip/dcop/dcopstub.sip
47
share/sip/dcop/typedefs.sip
48
share/sip/kdecore/fixx11h.sip
49
share/sip/kdecore/kaboutdata.sip
50
share/sip/kdecore/kaccel.sip
51
share/sip/kdecore/kaccelaction.sip
52
share/sip/kdecore/kaccelbase.sip
53
share/sip/kdecore/kallocator.sip
54
share/sip/kdecore/kapplication.sip
55
share/sip/kdecore/kasyncio.sip
56
share/sip/kdecore/kaudioplayer.sip
57
share/sip/kdecore/kbufferedio.sip
58
share/sip/kdecore/kcalendarsystem.sip
59
share/sip/kdecore/kcalendarsystemfactory.sip
60
share/sip/kdecore/kcatalogue.sip
61
share/sip/kdecore/kcharsets.sip
62
share/sip/kdecore/kclipboard.sip
63
share/sip/kdecore/kcmdlineargs.sip
64
share/sip/kdecore/kcompletion.sip
65
share/sip/kdecore/kconfig.sip
66
share/sip/kdecore/kconfigbackend.sip
67
share/sip/kdecore/kconfigbase.sip
68
share/sip/kdecore/kconfigdata.sip
69
share/sip/kdecore/kconfigdialogmanager.sip
70
share/sip/kdecore/kconfigskeleton.sip
71
share/sip/kdecore/kcrash.sip
72
share/sip/kdecore/kdcoppropertyproxy.sip
73
share/sip/kdecore/kdebug.sip
74
share/sip/kdecore/kdecore-kde310.diff
75
share/sip/kdecore/kdecore-kde311.diff
76
share/sip/kdecore/kdecore-kde312.diff
77
share/sip/kdecore/kdecore-kde313.diff
78
share/sip/kdecore/kdecore-kde314.diff
79
share/sip/kdecore/kdecore-kde315.diff
80
share/sip/kdecore/kdecore-kde320.diff
81
share/sip/kdecore/kdecore-kde321.diff
82
share/sip/kdecore/kdecore-kde322.diff
83
share/sip/kdecore/kdecoremod.sip
84
share/sip/kdecore/kdecoremod.sip.in
85
share/sip/kdecore/kdesktopfile.sip
86
share/sip/kdecore/kdesktopwidget.sip
87
share/sip/kdecore/kdestyle.sip
88
share/sip/kdecore/kdeversion.sip
89
share/sip/kdecore/kglobal.sip
90
share/sip/kdecore/kglobalaccel.sip
91
share/sip/kdecore/kglobalsettings.sip
92
share/sip/kdecore/kiconeffect.sip
93
share/sip/kdecore/kiconloader.sip
94
share/sip/kdecore/kicontheme.sip
95
share/sip/kdecore/kidna.sip
96
share/sip/kdecore/kinstance.sip
97
share/sip/kdecore/kipc.sip
98
share/sip/kdecore/kkeynative.sip
99
share/sip/kdecore/kkeyserver_x11.sip
100
share/sip/kdecore/klibloader.sip
101
share/sip/kdecore/klocale.sip
102
share/sip/kdecore/kmacroexpander.sip
103
share/sip/kdecore/kmanagerselection.sip
104
share/sip/kdecore/kmdcodec.sip
105
share/sip/kdecore/kmimesourcefactory.sip
106
share/sip/kdecore/kmountpoint.sip
107
share/sip/kdecore/kmultipledrag.sip
108
share/sip/kdecore/knotifyclient.sip
109
share/sip/kdecore/kpalette.sip
110
share/sip/kdecore/kpixmapprovider.sip
111
share/sip/kdecore/kprocctrl.sip
112
share/sip/kdecore/kprocess.sip
113
share/sip/kdecore/kprocio.sip
114
share/sip/kdecore/kpty.sip
115
share/sip/kdecore/krandomsequence.sip
116
share/sip/kdecore/kregexp.sip
117
share/sip/kdecore/krfcdate.sip
118
share/sip/kdecore/krootprop.sip
119
share/sip/kdecore/ksavefile.sip
120
share/sip/kdecore/ksharedptr.sip
121
share/sip/kdecore/kshell.sip
122
share/sip/kdecore/kshortcut.sip
123
share/sip/kdecore/kshortcutlist.sip
124
share/sip/kdecore/ksimpleconfig.sip
125
share/sip/kdecore/ksock.sip
126
share/sip/kdecore/kstartupinfo.sip
127
share/sip/kdecore/kstaticdeleter.sip
128
share/sip/kdecore/kstdaccel.sip
129
share/sip/kdecore/kstddirs.sip
130
share/sip/kdecore/kstringhandler.sip
131
share/sip/kdecore/ktempdir.sip
132
share/sip/kdecore/ktempfile.sip
133
share/sip/kdecore/kuniqueapp.sip
134
share/sip/kdecore/kurl.sip
135
share/sip/kdecore/kurldrag.sip
136
share/sip/kdecore/kuser.sip
137
share/sip/kdecore/kvmallocator.sip
138
share/sip/kdecore/kwin.sip
139
share/sip/kdecore/kwinmodule.sip
140
share/sip/kdecore/kxmessages.sip
141
share/sip/kdecore/netwm.sip
142
share/sip/kdecore/netwm_def.sip
143
share/sip/kdefx/kcpuinfo.sip
144
share/sip/kdefx/kdefx-kde320.diff
145
share/sip/kdefx/kdefx-kde321.diff
146
share/sip/kdefx/kdefx-kde322.diff
147
share/sip/kdefx/kdefxmod.sip
148
share/sip/kdefx/kdefxmod.sip.in
149
share/sip/kdefx/kdrawutil.sip
150
share/sip/kdefx/kimageeffect.sip
151
share/sip/kdefx/kpixmap.sip
152
share/sip/kdefx/kpixmapeffect.sip
153
share/sip/kdefx/kpixmapsplitter.sip
154
share/sip/kdefx/kstyle.sip
155
share/sip/kdeprint/driver.sip
156
share/sip/kdeprint/kdeprint-kde310.diff
157
share/sip/kdeprint/kdeprint-kde311.diff
158
share/sip/kdeprint/kdeprint-kde312.diff
159
share/sip/kdeprint/kdeprint-kde313.diff
160
share/sip/kdeprint/kdeprint-kde314.diff
161
share/sip/kdeprint/kdeprint-kde315.diff
162
share/sip/kdeprint/kdeprint-kde320.diff
163
share/sip/kdeprint/kdeprint-kde321.diff
164
share/sip/kdeprint/kdeprint-kde322.diff
165
share/sip/kdeprint/kdeprintmod.sip
166
share/sip/kdeprint/kdeprintmod.sip.in
167
share/sip/kdeprint/kmjob.sip
168
share/sip/kdeprint/kmjobmanager.sip
169
share/sip/kdeprint/kmmanager.sip
170
share/sip/kdeprint/kmobject.sip
171
share/sip/kdeprint/kmprinter.sip
172
share/sip/kdeprint/kpreloadobject.sip
173
share/sip/kdeprint/kprintaction.sip
174
share/sip/kdeprint/kprintdialog.sip
175
share/sip/kdeprint/kprintdialogpage.sip
176
share/sip/kdeprint/kprinter.sip
177
share/sip/kdesu/client.sip
178
share/sip/kdesu/defaults.sip
179
share/sip/kdesu/kcookie.sip
180
share/sip/kdesu/kdesu_pty.sip
181
share/sip/kdesu/kdesumod.sip
182
share/sip/kdesu/kdesumod.sip.in
183
share/sip/kdesu/process.sip
184
share/sip/kdesu/ssh.sip
185
share/sip/kdesu/stub.sip
186
share/sip/kdesu/su.sip
187
share/sip/kdeui/kaboutapplication.sip
188
share/sip/kdeui/kaboutdialog.sip
189
share/sip/kdeui/kaboutkde.sip
190
share/sip/kdeui/kaccelmanager.sip
191
share/sip/kdeui/kaccelmenu.sip
192
share/sip/kdeui/kaction.sip
193
share/sip/kdeui/kactionclasses.sip
194
share/sip/kdeui/kactioncollection.sip
195
share/sip/kdeui/kactionshortcutlist.sip
196
share/sip/kdeui/kactivelabel.sip
197
share/sip/kdeui/kalphapainter.sip
198
share/sip/kdeui/kanimwidget.sip
199
share/sip/kdeui/karrowbutton.sip
200
share/sip/kdeui/kauthicon.sip
201
share/sip/kdeui/kbugreport.sip
202
share/sip/kdeui/kbuttonbox.sip
203
share/sip/kdeui/kcharselect.sip
204
share/sip/kdeui/kcmenumngr.sip
205
share/sip/kdeui/kcmodule.sip
206
share/sip/kdeui/kcolorbtn.sip
207
share/sip/kdeui/kcolorcombo.sip
208
share/sip/kdeui/kcolordialog.sip
209
share/sip/kdeui/kcolordrag.sip
210
share/sip/kdeui/kcombobox.sip
211
share/sip/kdeui/kcommand.sip
212
share/sip/kdeui/kcompletionbox.sip
213
share/sip/kdeui/kconfigdialog.sip
214
share/sip/kdeui/kcontainer.sip
215
share/sip/kdeui/kcursor.sip
216
share/sip/kdeui/kdatepicker.sip
217
share/sip/kdeui/kdatepik.sip
218
share/sip/kdeui/kdatetbl.sip
219
share/sip/kdeui/kdatetimewidget.sip
220
share/sip/kdeui/kdatewidget.sip
221
share/sip/kdeui/kdbtn.sip
222
share/sip/kdeui/kdcopactionproxy.sip
223
share/sip/kdeui/kdeui-kde310.diff
224
share/sip/kdeui/kdeui-kde311.diff
225
share/sip/kdeui/kdeui-kde312.diff
226
share/sip/kdeui/kdeui-kde313.diff
227
share/sip/kdeui/kdeui-kde314.diff
228
share/sip/kdeui/kdeui-kde315.diff
229
share/sip/kdeui/kdeui-kde320.diff
230
share/sip/kdeui/kdeui-kde321.diff
231
share/sip/kdeui/kdeui-kde322.diff
232
share/sip/kdeui/kdeuimod.sip
233
share/sip/kdeui/kdeuimod.sip.in
234
share/sip/kdeui/kdialog.sip
235
share/sip/kdeui/kdialogbase.sip
236
share/sip/kdeui/kdocktabctl.sip
237
share/sip/kdeui/kdockwidget.sip
238
share/sip/kdeui/kdockwindow.sip
239
share/sip/kdeui/kdualcolorbtn.sip
240
share/sip/kdeui/kdualcolorbutton.sip
241
share/sip/kdeui/keditcl.sip
242
share/sip/kdeui/keditlistbox.sip
243
share/sip/kdeui/kedittoolbar.sip
244
share/sip/kdeui/kfontcombo.sip
245
share/sip/kdeui/kfontdialog.sip
246
share/sip/kdeui/kfontrequester.sip
247
share/sip/kdeui/kguiitem.sip
248
share/sip/kdeui/khelpmenu.sip
249
share/sip/kdeui/kiconview.sip
250
share/sip/kdeui/kinputdialog.sip
251
share/sip/kdeui/kjanuswidget.sip
252
share/sip/kdeui/kkeybutton.sip
253
share/sip/kdeui/kkeydialog.sip
254
share/sip/kdeui/kled.sip
255
share/sip/kdeui/klineedit.sip
256
share/sip/kdeui/klineeditdlg.sip
257
share/sip/kdeui/klistbox.sip
258
share/sip/kdeui/klistview.sip
259
share/sip/kdeui/klistviewlineedit.sip
260
share/sip/kdeui/kmainwindow.sip
261
share/sip/kdeui/kmainwindowiface.sip
262
share/sip/kdeui/kmenubar.sip
263
share/sip/kdeui/kmessagebox.sip
264
share/sip/kdeui/knuminput.sip
265
share/sip/kdeui/knumvalidator.sip
266
share/sip/kdeui/kpanelapplet.sip
267
share/sip/kdeui/kpanelappmenu.sip
268
share/sip/kdeui/kpanelextension.sip
269
share/sip/kdeui/kpanelmenu.sip
270
share/sip/kdeui/kpassdlg.sip
271
share/sip/kdeui/kpassivepopup.sip
272
share/sip/kdeui/kpixmapio.sip
273
share/sip/kdeui/kpopupmenu.sip
274
share/sip/kdeui/kprogress.sip
275
share/sip/kdeui/kpushbutton.sip
276
share/sip/kdeui/krestrictedline.sip
277
share/sip/kdeui/krootpixmap.sip
278
share/sip/kdeui/kruler.sip
279
share/sip/kdeui/kselect.sip
280
share/sip/kdeui/kseparator.sip
281
share/sip/kdeui/ksharedpixmap.sip
282
share/sip/kdeui/ksplashscreen.sip
283
share/sip/kdeui/ksqueezedtextlabel.sip
284
share/sip/kdeui/kstatusbar.sip
285
share/sip/kdeui/kstdaction.sip
286
share/sip/kdeui/kstdguiitem.sip
287
share/sip/kdeui/kstringvalidator.sip
288
share/sip/kdeui/ksystemtray.sip
289
share/sip/kdeui/ktabbar.sip
290
share/sip/kdeui/ktabctl.sip
291
share/sip/kdeui/ktabwidget.sip
292
share/sip/kdeui/ktextbrowser.sip
293
share/sip/kdeui/ktextedit.sip
294
share/sip/kdeui/kthemebase.sip
295
share/sip/kdeui/kthemestyle.sip
296
share/sip/kdeui/ktimewidget.sip
297
share/sip/kdeui/ktip.sip
298
share/sip/kdeui/ktmainwindow.sip
299
share/sip/kdeui/ktoolbar.sip
300
share/sip/kdeui/ktoolbarbutton.sip
301
share/sip/kdeui/ktoolbarradiogroup.sip
302
share/sip/kdeui/kurllabel.sip
303
share/sip/kdeui/kwindowinfo.sip
304
share/sip/kdeui/kwindowlistmenu.sip
305
share/sip/kdeui/kwizard.sip
306
share/sip/kdeui/kwordwrap.sip
307
share/sip/kdeui/kxmlgui.sip
308
share/sip/kdeui/kxmlguibuilder.sip
309
share/sip/kdeui/kxmlguiclient.sip
310
share/sip/kdeui/kxmlguifactory.sip
311
share/sip/kdeui/qxembed.sip
312
share/sip/kfile/booktoken.sip
313
share/sip/kfile/kcombiview.sip
314
share/sip/kfile/kcustommenueditor.sip
315
share/sip/kfile/kdiroperator.sip
316
share/sip/kfile/kdirselectdialog.sip
317
share/sip/kfile/kdirsize.sip
318
share/sip/kfile/kdiskfreesp.sip
319
share/sip/kfile/kencodingfiledialog.sip
320
share/sip/kfile/kfile-kde310.diff
321
share/sip/kfile/kfile-kde311.diff
322
share/sip/kfile/kfile-kde312.diff
323
share/sip/kfile/kfile-kde313.diff
324
share/sip/kfile/kfile-kde314.diff
325
share/sip/kfile/kfile-kde315.diff
326
share/sip/kfile/kfile-kde320.diff
327
share/sip/kfile/kfile-kde321.diff
328
share/sip/kfile/kfile-kde322.diff
329
share/sip/kfile/kfile.sip
330
share/sip/kfile/kfilebookmark.sip
331
share/sip/kfile/kfiledetailview.sip
332
share/sip/kfile/kfiledialog.sip
333
share/sip/kfile/kfilefiltercombo.sip
334
share/sip/kfile/kfileiconview.sip
335
share/sip/kfile/kfilemod.sip
336
share/sip/kfile/kfilemod.sip.in
337
share/sip/kfile/kfilepreview.sip
338
share/sip/kfile/kfilereader.sip
339
share/sip/kfile/kfilesharedlg.sip
340
share/sip/kfile/kfiletreebranch.sip
341
share/sip/kfile/kfiletreeview.sip
342
share/sip/kfile/kfiletreeviewitem.sip
343
share/sip/kfile/kfileview.sip
344
share/sip/kfile/kfileviewitem.sip
345
share/sip/kfile/kicondialog.sip
346
share/sip/kfile/kimagefilepreview.sip
347
share/sip/kfile/knotifydialog.sip
348
share/sip/kfile/knotifywidgetbase.sip
349
share/sip/kfile/kopenwith.sip
350
share/sip/kfile/kpreviewwidgetbase.sip
351
share/sip/kfile/kpropertiesdialog.sip
352
share/sip/kfile/kpropsdlg.sip
353
share/sip/kfile/krecentdocument.sip
354
share/sip/kfile/kurlbar.sip
355
share/sip/kfile/kurlcombobox.sip
356
share/sip/kfile/kurlrequester.sip
357
share/sip/kfile/kurlrequesterdlg.sip
358
share/sip/khtml/css_rule.sip
359
share/sip/khtml/css_stylesheet.sip
360
share/sip/khtml/css_value.sip
361
share/sip/khtml/dom2_events.sip
362
share/sip/khtml/dom2_range.sip
363
share/sip/khtml/dom2_traversal.sip
364
share/sip/khtml/dom2_views.sip
365
share/sip/khtml/dom_doc.sip
366
share/sip/khtml/dom_element.sip
367
share/sip/khtml/dom_exception.sip
368
share/sip/khtml/dom_misc.sip
369
share/sip/khtml/dom_node.sip
370
share/sip/khtml/dom_string.sip
371
share/sip/khtml/dom_text.sip
372
share/sip/khtml/dom_xml.sip
373
share/sip/khtml/html_base.sip
374
share/sip/khtml/html_block.sip
375
share/sip/khtml/html_document.sip
376
share/sip/khtml/html_element.sip
377
share/sip/khtml/html_form.sip
378
share/sip/khtml/html_head.sip
379
share/sip/khtml/html_image.sip
380
share/sip/khtml/html_inline.sip
381
share/sip/khtml/html_list.sip
382
share/sip/khtml/html_misc.sip
383
share/sip/khtml/html_object.sip
384
share/sip/khtml/html_table.sip
385
share/sip/khtml/khtml_part.sip
386
share/sip/khtml/khtml_settings.sip
387
share/sip/khtml/khtmlmod.sip
388
share/sip/khtml/khtmlmod.sip.in
389
share/sip/khtml/khtmlview.sip
390
share/sip/kio/authinfo.sip
391
share/sip/kio/chmodjob.sip
392
share/sip/kio/connection.sip
393
share/sip/kio/davjob.sip
394
share/sip/kio/defaultprogress.sip
395
share/sip/kio/global.sip
396
share/sip/kio/job.sip
397
share/sip/kio/jobclasses.sip
398
share/sip/kio/kar.sip
399
share/sip/kio/karchive.sip
400
share/sip/kio/kautomount.sip
401
share/sip/kio/kdatatool.sip
402
share/sip/kio/kdcopservicestarter.sip
403
share/sip/kio/kdirlister.sip
404
share/sip/kio/kdirnotify.sip
405
share/sip/kio/kdirwatch.sip
406
share/sip/kio/kemailsettings.sip
407
share/sip/kio/kfilefilter.sip
408
share/sip/kio/kfileitem.sip
409
share/sip/kio/kfilemetainfo.sip
410
share/sip/kio/kfileshare.sip
411
share/sip/kio/kfilterbase.sip
412
share/sip/kio/kfilterdev.sip
413
share/sip/kio/kimageio.sip
414
share/sip/kio/kio-kde310.diff
415
share/sip/kio/kio-kde311.diff
416
share/sip/kio/kio-kde312.diff
417
share/sip/kio/kio-kde313.diff
418
share/sip/kio/kio-kde314.diff
419
share/sip/kio/kio-kde315.diff
420
share/sip/kio/kio-kde320.diff
421
share/sip/kio/kio-kde321.diff
422
share/sip/kio/kio-kde322.diff
423
share/sip/kio/kiomod.sip
424
share/sip/kio/kiomod.sip.in
425
share/sip/kio/kmimemagic.sip
426
share/sip/kio/kmimetype.sip
427
share/sip/kio/kpac.sip
428
share/sip/kio/kprotocolinfo.sip
429
share/sip/kio/kprotocolmanager.sip
430
share/sip/kio/krun.sip
431
share/sip/kio/kscan.sip
432
share/sip/kio/kservice.sip
433
share/sip/kio/kservicegroup.sip
434
share/sip/kio/kservicetype.sip
435
share/sip/kio/kshellcompletion.sip
436
share/sip/kio/kshred.sip
437
share/sip/kio/ksycoca.sip
438
share/sip/kio/ksycocaentry.sip
439
share/sip/kio/ksycocafactory.sip
440
share/sip/kio/ksycocatype.sip
441
share/sip/kio/ktar.sip
442
share/sip/kio/ktrader.sip
443
share/sip/kio/kurifilter.sip
444
share/sip/kio/kurlcompletion.sip
445
share/sip/kio/kurlpixmapprovider.sip
446
share/sip/kio/kuserprofile.sip
447
share/sip/kio/kzip.sip
448
share/sip/kio/metainfojob.sip
449
share/sip/kio/netaccess.sip
450
share/sip/kio/observer.sip
451
share/sip/kio/passdlg.sip
452
share/sip/kio/paste.sip
453
share/sip/kio/previewjob.sip
454
share/sip/kio/progressbase.sip
455
share/sip/kio/renamedlg.sip
456
share/sip/kio/renamedlgplugin.sip
457
share/sip/kio/scheduler.sip
458
share/sip/kio/sessiondata.sip
459
share/sip/kio/skipdlg.sip
460
share/sip/kio/slave.sip
461
share/sip/kio/slavebase.sip
462
share/sip/kio/slaveconfig.sip
463
share/sip/kio/slaveinterface.sip
464
share/sip/kio/statusbarprogress.sip
465
share/sip/kio/tcpslavebase.sip
466
share/sip/kio/thumbcreator.sip
467
share/sip/kmdi/kmdi-kde322.diff
468
share/sip/kmdi/kmdichildarea.sip
469
share/sip/kmdi/kmdichildfrm.sip
470
share/sip/kmdi/kmdichildfrmcaption.sip
471
share/sip/kmdi/kmdichildview.sip
472
share/sip/kmdi/kmdidefines.sip
473
share/sip/kmdi/kmdimainfrm.sip
474
share/sip/kmdi/kmdimod.sip
475
share/sip/kmdi/kmdimod.sip.in
476
share/sip/kmdi/kmditaskbar.sip
477
share/sip/kmdi/kmditoolviewaccessor.sip
478
share/sip/kparts/browserextension.sip
479
share/sip/kparts/browserinterface.sip
480
share/sip/kparts/browserrun.sip
481
share/sip/kparts/dockmainwindow.sip
482
share/sip/kparts/event.sip
483
share/sip/kparts/factory.sip
484
share/sip/kparts/genericfactory.sip
485
share/sip/kparts/historyprovider.sip
486
share/sip/kparts/kparts-kde320.diff
487
share/sip/kparts/kparts-kde321.diff
488
share/sip/kparts/kparts-kde322.diff
489
share/sip/kparts/kpartsmod.sip
490
share/sip/kparts/kpartsmod.sip.in
491
share/sip/kparts/mainwindow.sip
492
share/sip/kparts/part.sip
493
share/sip/kparts/partmanager.sip
494
share/sip/kparts/plugin.sip
495
share/sip/kparts/statusbarextension.sip
496
share/sip/kspell/ksconfig.sip
497
share/sip/kspell/kspell-kde320.diff
498
share/sip/kspell/kspell.sip
499
share/sip/kspell/kspelldlg.sip
500
share/sip/kspell/kspellmod.sip
501
share/sip/kspell/kspellmod.sip.in
502
share/sip/kspell/ksyntaxhighlighter.sip
503
@dirrm share/examples/%%PKGBASE%%/uimodules
504
@dirrm share/examples/%%PKGBASE%%
505
@dirrm share/sip/dcop
506
@dirrm share/sip/kdecore
507
@dirrm share/sip/kdefx
508
@dirrm share/sip/kdeprint
509
@dirrm share/sip/kdesu
510
@dirrm share/sip/kdeui
511
@dirrm share/sip/kfile
512
@dirrm share/sip/khtml
513
@dirrm share/sip/kio
514
@dirrm share/sip/kmdi
515
@dirrm share/sip/kparts
516
@dirrm share/sip/kspell

Return to bug 67255