diff options
author | Michele Balistreri <brain@gentoo.org> | 2003-04-12 14:26:03 +0000 |
---|---|---|
committer | Michele Balistreri <brain@gentoo.org> | 2003-04-12 14:26:03 +0000 |
commit | d46726551daa60d62991751699b0eb8398d7ce54 (patch) | |
tree | 2f9c624fcd96415efa5326e7b22df82272d3e190 /dev-python/PyQt | |
parent | Fix bug #19008 (diff) | |
download | gentoo-2-d46726551daa60d62991751699b0eb8398d7ce54.tar.gz gentoo-2-d46726551daa60d62991751699b0eb8398d7ce54.tar.bz2 gentoo-2-d46726551daa60d62991751699b0eb8398d7ce54.zip |
readded license-3.5.diff
Diffstat (limited to 'dev-python/PyQt')
-rw-r--r-- | dev-python/PyQt/files/license-3.5.diff | 34 |
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": |