Rename py-pyqt4 to py-pyqt.

This commit is contained in:
Todd Gamblin 2015-02-15 12:40:02 -08:00
parent 2f67cdaf10
commit b11061f99d
2 changed files with 7 additions and 4 deletions

View File

@ -10,9 +10,12 @@ class PyPyqt(Package):
version('4.11.3', '997c3e443165a89a559e0d96b061bf70')
extends('python')
depends_on('qt@4') # TODO: allow qt5 when conditional deps are supported.
depends_on('py-sip')
# TODO: allow qt5 when conditional deps are supported.
# TODO: Fix version matching so that @4 works like @:4
depends_on('qt@:4')
def install(self, spec, prefix):
python('configure.py',
'--confirm-license',

View File

@ -43,9 +43,9 @@ def install(self, spec, prefix):
'-fast',
'-optimized-qmake',
'-no-pch',
# phonon required for py-pyqt4
# '-no-phonon',
# '-no-phonon-backend',
# phonon required for py-pyqt
# '-no-phonon',
# '-no-phonon-backend',
'-no-openvg')
make()
make("install")