Commit Graph

29 Commits

Author SHA1 Message Date
Mark Brand ebc859ef6c update qt5 modules 2014-05-21 11:59:00 +02:00
Tony Theodore 515c1c3050 package qtbase: disable mysql detection
fixes #325
2014-02-19 13:56:07 +11:00
Tony Theodore 74ec5c0770 package qtbase: enable shared build 2014-02-16 13:10:47 +11:00
Mark Brand ef2799c07b update qt5 modules 2014-02-06 16:34:20 +01:00
Tony Theodore c8326412d3 package qtbase: don't copy pkg-config files to standard search path
subsequent qt5 packages would also require this so add
qt5 to PKG_CONFIG_PATH instead:

14b5bef5e2
2014-01-31 14:58:24 +11:00
Moritz Bunkus 821a0dcfad Qt4, Qt5: create symlinks $(TARGET)-qmake-qtX in $(PREFIX)/bin
That way a configure script looking for "qmake-qt4" or "qmake-qt5"
with AC_PATH_PROG will find e.g. x86_64-w64-mingw32-qmake-qt5
properly. See
http://thread.gmane.org/gmane.comp.gnu.mingw.cross-env/3424/focus=3426
2014-01-30 17:00:54 +01:00
Mark Brand e8765d97d5 update qt5 packages (5.2.0 final) 2013-12-12 16:48:46 +01:00
Mark Brand adb9178258 upgrade qt5 packages 2013-11-30 11:08:22 +01:00
Mark Brand af4b34bf16 package qtbase: rebased patches on upstream fixes 2013-10-24 23:45:34 +02:00
Mark Brand 8dd229eac0 package qtbase: update patches
-cherry-picked NTLM bugfix
-move _WIN32_WINNT define from patch to qmake -D option to ensure
consistency
2013-10-19 18:08:07 +02:00
Mark Brand 4842b97401 package qtbase: remove wrong dependency
libodbc++ has nothing to do with Qt's ODBC driver.
2013-09-18 14:41:09 +02:00
Mark Brand e074d9fff7 update qt5 packages 2013-08-28 14:42:56 +02:00
Tony Theodore b30e9d419a packages qt qtbase: install pkgconfig files in standard location 2013-07-31 18:39:47 +10:00
Volker Grabsch e412eb642d Move package versions from index.html back into the src/*.mk files
Most of the automatic conversion was done using the following Python script:

import os
import re
pkgs = sorted(mkfile[:-len('.mk')] for mkfile in os.listdir('src') if mkfile.endswith('.mk'))
with open('index.html', 'rb') as f:
    index = f.read()
pkgs_index = re.findall('<td class="package">([^<]*)</td>', index)
assert pkgs_index == pkgs
versions = dict(re.findall('<td id="([^"]*)-version">([^<]*)</td>', index))
assert sorted(versions.keys()) == pkgs
for pkg in pkgs:
    version = versions[pkg]
    with open('src/' + pkg + '.mk', 'rb') as f:
        mk = f.read()
    checksumpos = mk.index('\n$(PKG)_CHECKSUM ')
    versionline = '\n$(PKG)_VERSION  := %(version)s' % {'version': version}
    newmk = mk[:checksumpos] + versionline + mk[checksumpos:]
    with open('src/' + pkg + '.mk', 'wb') as f:
        f.write(newmk)
2013-07-22 01:41:31 +02:00
Niels Kristian Bech Jensen 06808ea943 update package qt5 2013-07-06 14:59:27 +10:00
Mark Brand 3b712d7b8b update qt5 module packagess 2013-07-01 10:47:54 +02:00
Mark Brand 5190441c5d update qt5 module packages 2013-06-18 14:16:24 +02:00
Mark Brand 957ab92cc0 update qt5 module packages 2013-06-14 09:42:10 +02:00
Tony Theodore b93e132431 package qtbase: enable c++11 on darwin 2013-06-01 15:23:53 +10:00
Mark Brand 77dc37759b update qt5 module packages 2013-06-01 00:39:54 +02:00
Mark Brand 9898a6ec18 package qtbase: use icu 2013-05-19 00:32:07 +02:00
Mark Brand 97d597efba package qtbase: correct checksum and url 2013-04-10 23:20:19 +02:00
Mark Brand 8426d8f162 update qt5 module packages to 5.0.2 2013-04-10 17:51:28 +02:00
Mark Brand a1efb524e8 update qt5 module packages to 5.0.2-rc1 2013-03-27 21:49:16 +01:00
Mark Brand 0094ce0f93 update qt5 packages 2013-01-31 14:55:46 +01:00
Mark Brand a105fea0ab qt5 module packages: add update macros 2013-01-29 00:55:11 +01:00
Mark Brand 9aebd1423e package qtbase: remove obsolete options 2012-12-21 15:07:06 +01:00
Tony Theodore 89b7fc1ca0 package qtbase: restore dbus dependency 2012-12-21 17:51:59 +11:00
Mark Brand c0ab4fe418 package qt5: replace monolothic package with module packages
Qt 5 is designed to be modular. The big monolothic tarball is
actually deprecated.
2012-12-20 08:52:43 +01:00
Renamed from src/qt5.mk (Browse further)