~ubuntu-branches/ubuntu/natty/kdebindings/natty

« back to all changes in this revision

Viewing changes to .pc/optional_install_sip_files.diff/python/pykde4/CMakeLists.txt

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2011-01-27 11:15:04 UTC
  • mfrom: (1.1.44 upstream)
  • Revision ID: james.westby@ubuntu.com-20110127111504-5n2dmzy0w615vdp6
Tags: 4:4.6.0-0ubuntu1
* New upstream release
* Add dh_shlibdeps to debian/rules LP: #693345

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
INCLUDE(PythonMacros)
39
39
 
40
40
FIND_PACKAGE(SIP REQUIRED)
41
 
IF(SIP_VERSION STRLESS "040b00")    # These version numbers also appear in ../CMakeLists.txt
42
 
    MESSAGE(FATAL_ERROR "The version of SIP found is too old. 4.11.0 or later is needed.")
43
 
ENDIF(SIP_VERSION STRLESS "040b00")
 
41
IF(SIP_VERSION STRLESS "040c00")    # These version numbers also appear in ../CMakeLists.txt
 
42
    MESSAGE(FATAL_ERROR "The version of SIP found is too old. 4.12.0 or later is needed.")
 
43
ENDIF(SIP_VERSION STRLESS "040c00")
44
44
INCLUDE(SIPMacros)
45
45
 
46
46
FIND_PACKAGE(PyQt4 REQUIRED)
47
 
IF(PYQT4_VERSION STRLESS "040705")  # These version numbers also appear in ../CMakeLists.txt
48
 
    MESSAGE(FATAL_ERROR "The version of PyQt found is too old. 4.7.5 or later is required.")
49
 
ENDIF(PYQT4_VERSION STRLESS "040705")
 
47
IF(PYQT4_VERSION STRLESS "040802")  # These version numbers also appear in ../CMakeLists.txt
 
48
    MESSAGE(FATAL_ERROR "The version of PyQt found is too old. 4.8.2 or later is required.")
 
49
ENDIF(PYQT4_VERSION STRLESS "040802")
50
50
 
51
51
 
52
52
SET(SOPRANO_MIN_VERSION "2.0")