Add a QMakePackage base class (#4925)
* Add a QMakePackage base class * Fix sqlite linking bug in qt-creator * Add latest version of qt-creator * Add latest version of qwt * Use raw strings for regular expressions * Increase minimum required version of qt * Add comment about specific version of sqlite required * Fixes for latest version of qwt and qt-creator * Older versions of Qwt only work with older versions of Qt
This commit is contained in:

committed by
Gregory Lee

parent
f6c2adc0ad
commit
452f382293
@@ -25,7 +25,7 @@
|
||||
from spack import *
|
||||
|
||||
|
||||
class Qwt(Package):
|
||||
class Qwt(QMakePackage):
|
||||
"""The Qwt library contains GUI Components and utility classes which are
|
||||
primarily useful for programs with a technical background. Beside a
|
||||
framework for 2D plots it provides scales, sliders, dials, compasses,
|
||||
@@ -33,18 +33,17 @@ class Qwt(Package):
|
||||
ranges of type double.
|
||||
"""
|
||||
homepage = "http://qwt.sourceforge.net/"
|
||||
url = "https://downloads.sourceforge.net/project/qwt/qwt/5.2.2/qwt-5.2.2.tar.bz2"
|
||||
url = "https://sourceforge.net/projects/qwt/files/qwt/6.1.3/qwt-6.1.3.tar.bz2"
|
||||
|
||||
version('6.1.3', '19d1f5fa5e22054d22ee3accc37c54ba')
|
||||
version('5.2.2', '70d77e4008a6cc86763737f0f24726ca')
|
||||
|
||||
depends_on("qt")
|
||||
|
||||
def install(self, spec, prefix):
|
||||
depends_on('qt+opengl')
|
||||
# Qwt 6.1.1 and older use a constant that was removed in Qt 5.4
|
||||
# https://bugs.launchpad.net/ubuntu/+source/qwt-qt5/+bug/1485213
|
||||
depends_on('qt@:5.3', when='@:6.1.1')
|
||||
|
||||
def patch(self):
|
||||
# Subvert hardcoded prefix
|
||||
filter_file(r'/usr/local/qwt-\$\$VERSION', prefix, 'qwtconfig.pri')
|
||||
|
||||
qmake = which('qmake')
|
||||
qmake()
|
||||
make()
|
||||
make("install")
|
||||
filter_file(r'/usr/local/qwt-\$\$(QWT_)?VERSION.*',
|
||||
self.prefix, 'qwtconfig.pri')
|
||||
|
Reference in New Issue
Block a user