summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Revert "package wxwidgets: enable mingw-w64 builds"Tony Theodore2013-07-282-27/+2
| | | | This reverts commit a5663fa1c7e1837af88c02c95c9f829d60042d9c.
* package wxwidgets: enable mingw-w64 buildsTony Theodore2013-07-282-2/+27
|
* package wxwidgets: refactor build rulesTony Theodore2013-07-281-49/+32
|
* package wxwidgets: update and remove legacy 2.4/2.6 compatibilityTony Theodore2013-07-282-17/+2
|
* update 2.23 release datev2.23Tony Theodore2013-07-271-1/+1
|
* doc update: add build system integration and project maturity to introductionTony Theodore2013-07-261-2/+7
|
* add release process notesTony Theodore2013-07-261-0/+23
|
* remove optional native builds for autoconf automake cmake libtoolTony Theodore2013-07-266-93/+1
| | | | these need more testing and proper multi-target support
* doc update: add notes about make clean and freebsd support to history sectionTony Theodore2013-07-261-0/+12
|
* package sfml: cleanup style in test programTony Theodore2013-07-251-4/+4
|
* doc update: add note about new qmake invocationTony Theodore2013-07-251-9/+15
|
* package hdf5: add prefixed compiler wrappers and add to cmake toolchain fileTony Theodore2013-07-252-0/+6
|
* add optional package cmake with native buildTony Theodore2013-07-222-0/+28
|
* packages itk vtk6: remove FindHDF5.cmakeTony Theodore2013-07-222-1087/+0
|
* Merge branch 'master' of github.com:mxe/mxeTony Theodore2013-07-220-0/+0
|\
| * package itk: add missing cmake maoduleTony Theodore2013-07-221-1/+304
| |
* | package itk: add missing cmake moduleTony Theodore2013-07-221-1/+304
|/
* packages itk vtk6: add standard FindHDF5.cmakeTony Theodore2013-07-222-0/+784
|
* package vmime: expand filename in urlTony Theodore2013-07-221-1/+1
| | | | The filename isn't actually used, but we'll keep it consistent.
* Move package versions from index.html back into the src/*.mk filesVolker Grabsch2013-07-21280-288/+356
| | | | | | | | | | | | | | | | | | | | | | | 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)
* Replace unneeded "*-package" IDs in the docsVolker Grabsch2013-07-212-280/+280
|
* Replace unneeded "*-website" IDs in the docsVolker Grabsch2013-07-211-279/+279
|
* Fix redirects of ocaml-core to ocaml-nativeVolker Grabsch2013-07-211-7/+7
|
* Fix typoVolker Grabsch2013-07-211-1/+1
|
* Fix order of packages in package listVolker Grabsch2013-07-211-21/+20
|
* Fix initial comments of all src/*.mk filesVolker Grabsch2013-07-2120-29/+21
|
* Use "shorter" URL for MXE (without the optional trailing slash)Volker Grabsch2013-07-211-1/+1
|
* Bugfix in docs: Make the first column of package list match the internal ↵Volker Grabsch2013-07-211-5/+5
| | | | package name
* Fix spacing issue in docsVolker Grabsch2013-07-211-2/+1
|
* Merge branch 'master' of github.com:mxe/mxeTony Theodore2013-07-200-0/+0
|\
| * Revert "Merge branch 'master' of https://github.com/mgerhardy/mxe into ↵Martin Gerhardy2013-07-198-265/+0
| | | | | | | | | | | | | | mgerhardy-master" This reverts commit 9c4386e2f7f81f905d04c00a7e19d3d064c20f51, reversing changes made to b54718e2208edc3871ca443e4318a2a0bf68a026.
| * Revert "* updated checksums for the latest release candidates"Martin Gerhardy2013-07-194-4/+4
| | | | | | | | This reverts commit b2d13c15af2149cb6c51ee5b7495f2a2474bbaf4.
| * * updated checksums for the latest release candidatesMartin Gerhardy2013-07-194-4/+4
| |
| * Merge branch 'master' of https://github.com/mgerhardy/mxe into mgerhardy-masterMartin Gerhardy2013-07-198-0/+265
| |\ | | | | | | | | | | | | Conflicts: index.html
| | * * fixed win64 sdl compile errors with mingw64 - thanks to Franz SchroberMartin Gerhardy2013-06-251-0/+1
| | | | | | | | | | | | * this should go upstream
| | * * added sdl2_netMartin Gerhardy2013-06-253-0/+57
| | |
| | * * added sdl2_ttfMartin Gerhardy2013-06-252-0/+34
| | |
| | * * also remove -XCClinker from sdl2-configMartin Gerhardy2013-06-251-0/+1
| | | | | | | | | | | | * thanks Schrober
| | * * smepg2 now got its own packageMartin Gerhardy2013-06-201-5/+4
| | |
| | * * update checksum to latest release candidateMartin Gerhardy2013-06-191-1/+1
| | |
| | * * added release candidates for sdl2Martin Gerhardy2013-06-134-0/+129
| | | | | | | | | | | | * these packages can be installed next to sdl1.x
| | * * added new package: smpeg2Martin Gerhardy2013-06-132-0/+44
| | |
* | | doc update: add biosig to list of projects using mxeTony Theodore2013-07-201-0/+3
|/ /
* | package libtool: add optional native buildTony Theodore2013-07-191-0/+8
| |
* | Merge branch 'stable'Volker Grabsch2013-07-180-0/+0
|\ \
| * | package nsis: fixed build failureMark Brand2013-06-101-0/+32
| | | | | | | | | | | | Thanks to <free.man.uu@gmail.com>
| * | packages libiconv glib: fix for removed gets() and apply patches in glib buildTony Theodore2013-06-092-0/+48
| | |
* | | Clarify branch conceptVolker Grabsch2013-07-181-2/+14
| | |
* | | Improve release notes for the next releaseVolker Grabsch2013-07-181-3/+4
| | |
* | | Improve old release notes of release 2.2Volker Grabsch2013-07-181-7/+3
| | |