88 lines
2.7 KiB
Ruby
88 lines
2.7 KiB
Ruby
class Qwt < Formula
|
|
desc "Qt Widgets for Technical Applications (v5.1)"
|
|
homepage "http://qwt.sourceforge.net/"
|
|
url "https://downloads.sourceforge.net/project/qwt/qwt/6.1.2/qwt-6.1.2.tar.bz2"
|
|
sha256 "2b08f18d1d3970e7c3c6096d850f17aea6b54459389731d3ce715d193e243d0c"
|
|
|
|
bottle do
|
|
cellar :any
|
|
revision 2
|
|
sha256 "0203eb8c150c368c97e00e607c2bbda1bf7bd50740a987ba59f6198a408a4fc6" => :el_capitan
|
|
sha256 "e855bb9cec6c3c2a1c977a1ec3719eaf5f032b8c8654919ed8c1cbbc22ab63c3" => :yosemite
|
|
sha256 "e5e240d5a1b148679d79b95216615bfb997a41be27d178d8b056e0be3ffab6cd" => :mavericks
|
|
end
|
|
|
|
option "with-qwtmathml", "Build the qwtmathml library"
|
|
option "without-plugin", "Skip building the Qt Designer plugin"
|
|
|
|
depends_on "qt"
|
|
|
|
# Update designer plugin linking back to qwt framework/lib after install
|
|
# See: https://sourceforge.net/p/qwt/patches/45/
|
|
patch :DATA
|
|
|
|
def install
|
|
inreplace "qwtconfig.pri" do |s|
|
|
s.gsub! /^\s*QWT_INSTALL_PREFIX\s*=(.*)$/, "QWT_INSTALL_PREFIX=#{prefix}"
|
|
s.sub! /\+(=\s*QwtDesigner)/, "-\\1" if build.without? "plugin"
|
|
|
|
# Install Qt plugin in `lib/qt4/plugins/designer`, not `plugins/designer`.
|
|
s.sub! %r{(= \$\$\{QWT_INSTALL_PREFIX\})/(plugins/designer)$},
|
|
"\\1/lib/qt4/\\2"
|
|
end
|
|
|
|
args = ["-config", "release", "-spec"]
|
|
# On Mavericks we want to target libc++, this requires a unsupported/macx-clang-libc++ flag
|
|
if ENV.compiler == :clang && MacOS.version >= :mavericks
|
|
args << "unsupported/macx-clang-libc++"
|
|
else
|
|
args << "macx-g++"
|
|
end
|
|
|
|
if build.with? "qwtmathml"
|
|
args << "QWT_CONFIG+=QwtMathML"
|
|
prefix.install "textengines/mathml/qtmmlwidget-license"
|
|
end
|
|
|
|
system "qmake", *args
|
|
system "make"
|
|
system "make", "install"
|
|
end
|
|
|
|
def caveats
|
|
s = ""
|
|
|
|
if build.with? "qwtmathml"
|
|
s += <<-EOS.undent
|
|
The qwtmathml library contains code of the MML Widget from the Qt solutions package.
|
|
Beside the Qwt license you also have to take care of its license:
|
|
#{opt_prefix}/qtmmlwidget-license
|
|
EOS
|
|
end
|
|
|
|
s
|
|
end
|
|
end
|
|
|
|
__END__
|
|
diff --git a/designer/designer.pro b/designer/designer.pro
|
|
index c269e9d..c2e07ae 100644
|
|
--- a/designer/designer.pro
|
|
+++ b/designer/designer.pro
|
|
@@ -126,6 +126,16 @@ contains(QWT_CONFIG, QwtDesigner) {
|
|
|
|
target.path = $${QWT_INSTALL_PLUGINS}
|
|
INSTALLS += target
|
|
+
|
|
+ macx {
|
|
+ contains(QWT_CONFIG, QwtFramework) {
|
|
+ QWT_LIB = qwt.framework/Versions/$${QWT_VER_MAJ}/qwt
|
|
+ }
|
|
+ else {
|
|
+ QWT_LIB = libqwt.$${QWT_VER_MAJ}.dylib
|
|
+ }
|
|
+ QMAKE_POST_LINK = install_name_tool -change $${QWT_LIB} $${QWT_INSTALL_LIBS}/$${QWT_LIB} $(DESTDIR)$(TARGET)
|
|
+ }
|
|
}
|
|
else {
|
|
TEMPLATE = subdirs # do nothing
|