Commit Graph

53 Commits

Author SHA1 Message Date
Tony Theodore 8de0584a23 many packages: explicitly disable shared builds
closes #369
2014-04-06 23:18:24 +10:00
Tony Theodore c9e078fe3c update package wxwidgets 2013-11-12 16:56:37 +11:00
abma 9f0759c932 disable stl for wxWidgets as it seems to be very problematic:
http://www.wxwidgets.org/docs/faqgen.htm#stl
2013-08-15 12:38:15 +02:00
Tony Theodore 23adcb8568 package wxwidgets: enable mingw-w64 builds 2013-07-28 23:13:15 +10:00
Tony Theodore 6440f756e7 package wxwidgets: refactor build rules 2013-07-28 23:13:14 +10:00
Tony Theodore b62c2b4d1a package wxwidgets: update and remove legacy 2.4/2.6 compatibility 2013-07-28 23:13:14 +10:00
Tony Theodore 9bb2c24925 Revert "package wxwidgets: update and remove legacy 2.4/2.6 compatibility"
This reverts commit 70cbd092fd.
2013-07-28 23:02:52 +10:00
Tony Theodore 1d24262c3f Revert "package wxwidgets: refactor build rules"
This reverts commit 7608a3904e.
2013-07-28 23:02:37 +10:00
Tony Theodore e59d91d47f Revert "package wxwidgets: enable mingw-w64 builds"
This reverts commit a5663fa1c7.
2013-07-28 23:02:20 +10:00
Tony Theodore a5663fa1c7 package wxwidgets: enable mingw-w64 builds 2013-07-28 22:48:08 +10:00
Tony Theodore 7608a3904e package wxwidgets: refactor build rules 2013-07-28 22:24:38 +10:00
Tony Theodore 70cbd092fd package wxwidgets: update and remove legacy 2.4/2.6 compatibility 2013-07-28 22:11:22 +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
Tony Theodore 5390e5203e various packages: enable/disable mingw-w64 builds 2013-06-01 22:28:04 +10:00
Tony Theodore 4e854e4341 package wxwidgets: fix update macro to allow dev releases 2013-03-26 04:57:11 +11:00
Tony Theodore 717bc9d586 package wxwidgets: disable specific compiler error in test program 2013-03-24 07:27:45 +11:00
Alois Schloegl 74f59a5968 upgrade and patch wxwidgets in order to compile for target x86_64 (64 bit windows) 2013-01-04 15:06:53 +01:00
Tony Theodore 4ed13a9f30 all packages: use $(WGET) portability variable 2012-05-16 17:49:40 +10:00
Volker Grabsch 00f4690d3f Move full package names from src/*.mk into package list (index.html) 2012-03-29 21:41:44 +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 36ade7a730 packages gdk-pixbuf wxwidgets: tiff 4 compatibility 2011-12-23 19:22:13 +01:00
Volker Grabsch 148931b4ae replaced $(BUILD) with a more direct and less brittle construct
For discussion, see the following email and its follow-ups:
http://lists.nongnu.org/archive/html/mingw-cross-env-list/2011-11/msg00112.html
2011-11-28 09:51:56 +01:00
Mark Brand 3cce3e9b58 many packages: use --build instead of wine cross_compiling hack 2011-11-26 16:30:36 +01:00
Moritz Bunkus 8eb852c111 package wxwidgets: build locales 2011-10-24 22:28:11 +02:00
Mark Brand d0b9116645 update package wxwidgets 2011-03-28 12:47:39 +02:00
Mark Brand ff8e372e08 package wxwidgets: libpng 1.5 compatibility 2011-03-03 20:41:57 +01:00
Tony Theodore d9fa2b352c package wxwidgets: libpng15 breaks build - use builtin version 2011-03-04 03:25:46 +11:00
Volker Grabsch b6724839df add test program for package wxwidgets 2010-12-05 18:37:02 +01:00
Volker Grabsch 9c11e9e39b improved update script of packages: boost cppunit cunit expat freetype glew pcre pdcurses wxwidgets 2010-12-01 03:44:21 +01:00
Mark Brand 1a0e113dfd upgrade package wxwidgets 2010-09-09 22:25:41 +02:00
Mark Brand 10b237f4c0 fixed sourceforge URLs in UPDATE macros 2010-09-09 21:24:32 +02:00
Volker Grabsch b7ef3664ea improved version recognition of packages: boost freetype gcc glew libgee mingwrt openssl pcre pdcurses w32api wxwidgets 2010-06-04 23:05:41 +02:00
Volker Grabsch f0bb2e5b16 wine fix for package wxwidgets (by Tony Theodore) 2010-05-26 02:51:36 +02:00
Volker Grabsch e1ab4466ff changed coding style: make "-i" always the first argument of $(SED) (by Mark Brand) 2010-02-16 04:12:53 +01:00
Volker Grabsch 71f83a7e0d point consequently to "doc/index.html" instead of "doc/index.html or doc/README" 2010-02-08 00:58:06 +01:00
Volker Grabsch 8a3233b044 simplified file markers 2010-01-16 23:02:02 +01:00
Volker Grabsch c4d75e7e77 update version of package libpng 2010-01-12 13:57:46 +01:00
Volker Grabsch fb3514fb47 use wxwidget's internal regex library instead of tre 2009-10-04 00:17:02 +02:00
Volker Grabsch f162381b1a improved version recognition, enable the notation of ignored (bad) package versions 2009-09-20 14:36:46 +02:00
Volker Grabsch ad09fd28ae improved download URLs for all SourceForge packages to ensure that the selected SOURCEFORGE_MIRROR is really used 2009-09-02 00:55:53 +02:00
Volker Grabsch 163b118424 replace the contact email address with hints to the project mailing list 2009-09-01 16:35:59 +02:00
Volker Grabsch 3c5ab4e280 add a copyright notice and license to each source file 2009-08-21 06:58:11 +02:00
Volker Grabsch 2cce10cbcb improved version recognition for sourceforge packages 2009-08-10 13:24:12 +02:00
Volker Grabsch 6a2cab9dbb validate downloads using SHA-1 checksums 2009-04-05 14:00:17 +02:00
Volker Grabsch 15724154be update version of packages freetype, glib, gtk, pango, pdflib_lite and wxwidgets 2009-03-23 01:30:44 +01:00
Volker Grabsch fe9811173c portability fix for Open Solaris: when "ginstall" exists, use that instead of "install" 2009-03-07 08:52:50 +01:00
Volker Grabsch 49a3b91ee4 build also the wxWidgets variant without unicode support 2009-03-05 15:20:47 +01:00
Volker Grabsch 0f005eb724 improved build rules for package wxwidgets 2009-03-05 15:20:14 +01:00