summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichele Balistreri <brain@gentoo.org>2003-04-12 14:26:03 +0000
committerMichele Balistreri <brain@gentoo.org>2003-04-12 14:26:03 +0000
commitec2a9ea1032e694b050f7d790985e3b08b1f0d49 (patch)
treebedcd630945b2cbbca3e96b8a648d341f8d6126a /dev-python/PyQt
parentFix bug #19008 (diff)
downloadhistorical-ec2a9ea1032e694b050f7d790985e3b08b1f0d49.tar.gz
historical-ec2a9ea1032e694b050f7d790985e3b08b1f0d49.tar.bz2
historical-ec2a9ea1032e694b050f7d790985e3b08b1f0d49.zip
readded license-3.5.diff
Diffstat (limited to 'dev-python/PyQt')
-rw-r--r--dev-python/PyQt/files/license-3.5.diff34
1 files changed, 34 insertions, 0 deletions
diff --git a/dev-python/PyQt/files/license-3.5.diff b/dev-python/PyQt/files/license-3.5.diff
new file mode 100644
index 000000000000..82d3106b7212
--- /dev/null
+++ b/dev-python/PyQt/files/license-3.5.diff
@@ -0,0 +1,34 @@
+--- build.py.orig 2002-12-13 23:43:10.000000000 +0100
++++ build.py 2002-12-13 23:43:23.000000000 +0100
+@@ -646,31 +646,6 @@
+ licType = "GPL"
+ licname = "GNU General Public License"
+
+- inform("This is the %s version of PyQt and is licensed under the %s." % (licType,licname),0)
+-
+- print
+- print "Type 'L' to view the license."
+- print "Type 'yes' to accept the terms of the license."
+- print "Type 'no' to decline the terms of the license."
+- print
+-
+- while 1:
+- try:
+- resp = raw_input("Do you accept the terms of the license? ")
+- except:
+- resp = ""
+-
+- resp = resp.strip().lower()
+-
+- if resp == "yes":
+- break
+-
+- if resp == "no":
+- sys.exit(0)
+-
+- if resp == "l":
+- os.system("more LICENSE")
+-
+ inform("Building the %s version of PyQt 3.5 for Python %s on %s." % (licType,pyFullVers,sys.platform))
+
+ if licType != "GPL":