aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMike Arthur2010-06-21 13:11:08 +0100
committerMike Arthur2010-06-21 13:11:08 +0100
commit4a429d754ab294edf272a7736821fcd9f567619d (patch)
treec395d1ff52bcf495ffe3aa45e39c2bb1970edac2 /Library/Formula
parent3c55be94e64152714da91c2c57f9ebe47357eaab (diff)
downloadhomebrew-4a429d754ab294edf272a7736821fcd9f567619d.tar.bz2
Update Qt to 4.6.3
Thankfully the webkit buildsystem bug is now fixed.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/qt.rb12
1 files changed, 3 insertions, 9 deletions
diff --git a/Library/Formula/qt.rb b/Library/Formula/qt.rb
index 1ea08f49c..0ae862959 100644
--- a/Library/Formula/qt.rb
+++ b/Library/Formula/qt.rb
@@ -2,8 +2,8 @@ require 'formula'
require 'hardware'
class Qt <Formula
- url 'http://get.qt.nokia.com/qt/source/qt-everywhere-opensource-src-4.6.2.tar.gz'
- md5 'eb651ee4b157c01696aa56777fc6e0e5'
+ url 'http://get.qt.nokia.com/qt/source/qt-everywhere-opensource-src-4.6.3.tar.gz'
+ md5 '5c69f16d452b0bb3d44bc3c10556c072'
homepage 'http://www.qtsoftware.com'
def options
@@ -22,12 +22,6 @@ class Qt <Formula
depends_on 'sqlite' if MACOS_VERSION <= 10.5
def install
- if version == '4.6.2' # being specific so needs reconfirmed each version
- # Bug reported here: http://bugreports.qt.nokia.com/browse/QTBUG-7630
- makefiles=%w[plugins/sqldrivers/sqlite/sqlite.pro 3rdparty/webkit/WebCore/WebCore.pro]
- makefiles.each { |makefile| `echo 'LIBS += -lsqlite3' >> src/#{makefile}` }
- end
-
conf_args = ["-prefix", prefix,
"-system-libpng", "-system-zlib",
"-nomake", "demos", "-nomake", "examples",
@@ -84,7 +78,7 @@ class Qt <Formula
# remove porting file for non-humans
(prefix+'q3porting.xml').unlink
- # Some config scripts will only find QT in a "Frameworks" folder
+ # Some config scripts will only find Qt in a "Frameworks" folder
# VirtualBox is an example of where this is needed
# See: http://github.com/mxcl/homebrew/issues/issue/745
cd prefix do