Commit Graph

111 Commits

Author SHA1 Message Date
Tony Theodore a228c0488f all packages: switch to sha256 checksums
closes #871
2015-09-23 17:27:16 +10:00
Tony Theodore 44438d6e6a boost hdf5 qt qtbase: write to $(CMAKE_TOOLCHAIN_DIR) instead of $(CMAKE_TOOLCHAIN_FILE)
Fixes #823
2015-09-12 13:43:05 +10:00
Timothy Gu 4a4b5dc1f5 qt: Fix update routine 2015-06-18 19:37:20 -07:00
Mark Brand 733472c2aa qt: update 2015-05-27 15:47:43 +02:00
Tony Theodore 3c67cefde7 boost hdf5 pkgconf qt: move cmake variables to respective packages 2014-12-08 20:22:39 +11:00
Timothy Gu 262aa647f0 Merge branch 'stable'
Conflicts:
	Makefile
	src/gd.mk
	src/gdal.mk
	src/imagemagick.mk
	src/pcl.mk
	src/qt.mk
2014-08-29 17:58:30 -07:00
Timothy Gu 810170eeb6 qt: Fix downloading
Signed-off-by: Timothy Gu <timothygu99@gmail.com>
2014-08-29 17:17:41 -07:00
Henning Heinold a323414bc6 qt: build lrelease for host usage
The original patch comes from gnu-octave:
http://savannah.gnu.org/bugs/download.php?file_id=28078
2014-07-15 10:25:43 +02:00
Mark Brand c428d4976a update package qt 2014-04-30 23:49:45 +02:00
Tony Theodore 57fa8e075e package qt4 and dependencies: enable shared builds 2014-02-09 23:29:51 +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 01d458332a package qt: remove wrong dependency
libodbc++ has nothing to do with Qt's ODBC driver.
2013-09-18 14:38:49 +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
Florian Staudacher 9015f8ce3d explicitly disable mysql driver 2013-07-11 14:07:38 +02:00
Mark Brand d504762274 update package qt (Qt 4) 2013-07-02 12:20:05 +02:00
Mark Brand e8a731d2d1 update package qt 2013-06-08 20:49:13 +02:00
Mark Brand c7d3a58aa1 update package qt 2013-06-01 00:38:53 +02:00
Mark Brand b5c4371c80 package qt: remove obsolete prefixed links to qmake and friends
index.html already explains how to invoke the qmake of choice
(Qt 4 or Qt 5).
2013-04-02 21:30:18 +02:00
Mark Brand 06c7c91ac7 update package qt 2012-11-29 21:10:21 +01:00
Mark Brand fe252299ec package qt: install under qt prefix
This makes room for Qt 5.0 when it is released and added to MXE.
Expect to install Qt 5.0 under qt5 prefix.
2012-09-18 12:00:08 +02:00
Mark Brand 002564211a package qt: improve pkg-config setting
It is not necessary to modify the shipped mkspec. Just set PKG_CONFIG
as a device option with configure.
2012-09-17 18:03:29 +02:00
Mark Brand 01c46e5198 package qt: use new unified mkspec for cross building
The regular win32-g++* mkspecs now support cross bulding. No need
to use unsupported/win32-g++-cross anymore.
2012-09-16 15:25:22 +02:00
Mark Brand 19f883dde9 update package qt 2012-09-16 15:23:55 +02:00
Mark Brand 7d498f947c update package qt 2012-05-22 13:59:29 +02:00
Tony Theodore 4ed13a9f30 all packages: use $(WGET) portability variable 2012-05-16 17:49:40 +10:00
Mark Brand 4cf652d40e package qt: build more tools
See https://github.com/mxe/mxe/issues/14
2012-04-23 11:53:51 +02:00
Mark Brand 7ce5364ae2 package qt: stop building static qtwebkit
Static qtwebkit seemed to build successfully, but applications
could not link to it successfully since Qt 4.8.0 (qtbwebkit 2.0).

See https://github.com/mxe/mxe/issues/23
2012-04-22 22:56:13 +02:00
Mark Brand 7a626e5f64 package qt: build uitools 2012-04-20 01:02:57 +02:00
Volker Grabsch 00f4690d3f Move full package names from src/*.mk into package list (index.html) 2012-03-29 21:41:44 +02:00
Mark Brand e404906d0a update package qt 2012-03-29 16:00:18 +02:00
Volker Grabsch 7badad85c9 Move doc/index.html -> index.html 2012-03-29 12:14:15 +02:00
Volker Grabsch 7e6723adb5 Move $(PKG)_VERSION and $(PKG)_WEBSITE from src/*.mk into doc/index.html 2012-03-29 11:07:07 +02:00
Volker Grabsch defdff28f0 Rebrand to new project name MXE 2012-03-28 15:46:58 +02:00
Mark Brand baa08f59e2 update packages: lcms libpng qt suitesparse 2011-12-16 13:15:16 +01:00
Mark Brand 379fe546f2 package qt: improve order of SYBASE_LIBS 2011-12-11 15:25:35 +01:00
Mark Brand da0ac81457 package qt: use new mkspec for gcc 4.6 2011-11-17 07:40:02 +01:00
Mark Brand 4d17c8df49 package qt: removed stale comments 2011-11-03 17:08:47 +01:00
Mark Brand c8c1013de5 package qt: improve style 2011-11-02 23:49:19 +01:00
Mark Brand f5c5166428 update package qt 2011-10-15 01:58:08 +02:00
Brad Pitcher 02c11bb052 fixed qt hash 2011-09-17 16:18:38 -07:00
Mark Brand 3b7ac5bfc3 update package qt 2011-09-01 14:36:58 +02:00
Mark Brand ad1aed8315 package qt: handle gnutls dependency introduced by freetds 2011-08-17 10:14:00 +02:00
Mark Brand 72e0ffab56 package qt: freetds driver still needs iconv 2011-06-28 21:20:27 +02:00
Nikos Chantziaras 788de552d0 package qt: build with -no-iconv
mingw-cross-env should build Qt with "-no-iconv".  That way, the
programmer will get linker errors when trying to build his application.
That way, he will know that he *must* include the text codec plugins.
2011-06-28 21:16:19 +02:00
Mark Brand b78b6fa530 Backed out changeset 6aba5d36fb84
should have used newer version of patch
2011-06-28 21:12:44 +02:00
Nikos Chantziaras 5ca5beebb2 package qt: build with -no-iconv
mingw-cross-env should build Qt with "-no-iconv".  That way, the
programmer will get linker errors when trying to build his application.
That way, he will know that he *must* include the text codec plugins.
2011-06-28 20:59:03 +02:00
Mark Brand a01c683a4b update package qt 2011-05-10 11:15:28 +02:00
Mark Brand 748a4a4bc9 package qt: dependency cleanup 2011-03-16 18:37:17 +01:00
Mark Brand c62c5b35d1 update package qt 2011-03-01 15:50:10 +01:00