summaryrefslogtreecommitdiff
path: root/x11/py-qt3-modules/patches/patch-aa
blob: aac1f8ce873fcff722d82a7b67dbcfebbfbe55eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
$NetBSD: patch-aa,v 1.7 2009/06/17 07:11:04 hasso Exp $

--- configure.py.orig	2009-06-16 11:47:29 +0300
+++ configure.py	2009-06-17 05:37:17 +0300
@@ -195,7 +195,7 @@ class ConfigurePyQt3(ConfigureBase):
     """This class defines the methods to configure PyQt v3.
     """
     def check_modules(self):
-        pyqt_modules.append("qt")
+        #pyqt_modules.append("qt")
 
         check_module("qtcanvas", "qcanvas.h", "QCanvas()")
         check_module("qtnetwork", "qsocket.h", "QSocket()")
@@ -212,8 +212,6 @@ class ConfigurePyQt3(ConfigureBase):
                 if sys.platform == "win32" and sipcfg.sip_version >= 0x040200:
                     check_module("qtaxcontainer", "qaxobject.h", "QAxObject()", lib="qaxcontainer")
 
-        if qsci_version:
-            check_module("qtext", "qextscintillabase.h", "QextScintillaBase()", define=qsci_define, include_dir=opt_qsciincdir, lib_dir=opt_qscilibdir, lib="qscintilla")
 
         if opt_qtpetag:
             pyqt_modules.append("qtpe")
@@ -286,65 +284,6 @@ class ConfigurePyQt3(ConfigureBase):
         if qt_version >= 0x030000:
             # The Professional Edition needs special handling.
             prof = (qt_edition == "professional")
-
-            sipconfig.inform("Creating pyuic Makefile...")
-
-            if prof or "qtxml" not in pyqt_modules:
-                buildfile= "pyuic-prof.sbf"
-
-                for xml in ("qdom.cpp", "qxml.cpp"):
-                    shutil.copyfile(qt_dir + "/src/xml/" + xml, "pyuic3/" + xml)
-            else:
-                buildfile= "pyuic.sbf"
-
-            makefile = sipconfig.ProgramMakefile(
-                configuration=sipcfg,
-                build_file=buildfile,
-                dir="pyuic3",
-                install_dir=opt_pyqtbindir,
-                console=1,
-                qt=1,
-                warnings=1
-            )
-
-            makefile.extra_defines.append("UIC")
-            makefile.extra_defines.append("QT_INTERNAL_XML")
-
-            if prof or "qtxml" not in pyqt_modules:
-                makefile.extra_defines.append("QT_MODULE_XML")
-
-            if qt_version < 0x030100:
-                makefile.extra_include_dirs.append(qt_dir + "/src/3rdparty/zlib")
-
-            makefile.generate()
-            tool_dirs.append("pyuic3")
-
-            sipconfig.inform("Creating pylupdate Makefile...")
-
-            if prof or "qtxml" not in pyqt_modules:
-                buildfile= "pylupdate-prof.sbf"
-
-                shutil.copyfile(qt_dir + "/src/xml/qxml.cpp", "pylupdate3/qxml.cpp")
-            else:
-                buildfile= "pylupdate.sbf"
-
-            makefile = sipconfig.ProgramMakefile(
-                configuration=sipcfg,
-                build_file=buildfile,
-                dir="pylupdate3",
-                install_dir=opt_pyqtbindir,
-                console=1,
-                qt=1,
-                warnings=1
-            )
-
-            makefile.extra_defines.append("QT_INTERNAL_XML")
-
-            if prof or "qtxml" not in pyqt_modules:
-                makefile.extra_defines.append("QT_MODULE_XML")
-
-            makefile.generate()
-            tool_dirs.append("pylupdate3")
         elif qt_version >= 0x020000:
             sipconfig.inform("Creating pyuic Makefile...")
 
@@ -1010,7 +949,7 @@ Type 'no' to decline the terms of the li
 
 """)
 
-    while 1:
+    while 0:
         try:
             resp = raw_input("Do you accept the terms of the license? ")
         except:
@@ -1392,7 +1331,7 @@ def main(argv):
     check_license()
 
     # Check for QScintilla.
-    check_qscintilla()
+    #check_qscintilla()
 
     # Check which modules to build.
     qtmod_lib = pyqt.check_modules()