diff options
author | linimon <linimon@FreeBSD.org> | 2004-02-11 03:21:22 +0800 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2004-02-11 03:21:22 +0800 |
commit | bb328dd6a2917d637bd892a66f34ed331a0f5a73 (patch) | |
tree | 114aa0d7aa0dce67e986783642549b36074511e1 /sysutils/luma/files | |
parent | 58df582dba5354d956535758019e9afc49d53716 (diff) | |
download | freebsd-ports-gnome-bb328dd6a2917d637bd892a66f34ed331a0f5a73.tar.gz freebsd-ports-gnome-bb328dd6a2917d637bd892a66f34ed331a0f5a73.tar.zst freebsd-ports-gnome-bb328dd6a2917d637bd892a66f34ed331a0f5a73.zip |
Update to 1.1 and unbreak install.
PR: ports/62354
Submitted by: Alexander Novitsky <alecn2002@yandex.ru> (maintainer)
Diffstat (limited to 'sysutils/luma/files')
-rw-r--r-- | sysutils/luma/files/patch-aa | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/sysutils/luma/files/patch-aa b/sysutils/luma/files/patch-aa new file mode 100644 index 000000000000..39f75b87e1ec --- /dev/null +++ b/sysutils/luma/files/patch-aa @@ -0,0 +1,50 @@ +--- install.py.orig Wed Feb 4 17:19:51 2004 ++++ install.py Wed Feb 4 17:21:13 2004 +@@ -20,47 +20,6 @@ + + def doImportCheck(): + myError = 0 +- try: +- import ldap +- vString = "2.0.0pre13" +- if ldap.__version__ >= vString: +- print "\tGood: python-ldap (>= " + vString + ") installed." +- else: +- print "\tBad: Installed version of python-ldap is out of date." +- print "\t At least version " + vString + " is needed" +- print "\t Currently version " + ldap.__version__ + " is available.\n" +- myError = 1 +- except ImportError: +- print """\tERROR: python-ldap not installed!!! +-\tYou can get the module here: http://python-ldap.sourceforge.net +-""" +- myError = 1 +- +- try: +- import qt +- vString = "3.7" +- if qt.PYQT_VERSION_STR >= vString: +- print "\tGood: PyQt (>= " + vString + ") installed." +- else: +- print "\tBad: Installed version of PyQt is out of date." +- print "\t At least version " + vString + " is needed" +- print "\t Currently version " + qt.PYQT_VERSION_STR + " is available.\n" +- myError = 1 +- except ImportError: +- print """\n\tERROR: PyQt not installed!!! +-\tYou can get the module here: http://www.riverbankcomputing.co.uk/pyqt +-""" +- myError = 1 +- +- try: +- import mx.DateTime +- print "\tGood: Egenix mx package installed." +- except ImportError: +- print """\n\tWARNING: Egenix mx package not installed!!! +-\tYou can get the module here: http://www.egenix.com/ +-\tNOTE: This package is only needed for the "Massive User Creation"- and the +-\t"Admin Utilities"-Plugin. +-""" + + if myError: + sys.exit(1) |