summaryrefslogtreecommitdiffstats
path: root/src/cegui.mk
Commit message (Collapse)AuthorAgeFilesLines
* add _WEBSITE and _DESCR fields to core packagesBoris Nagaev2016-12-221-0/+2
| | | | | | See https://github.com/mxe/mxe/issues/1422 Automation (Python 2 code): https://gist.github.com/9f5c315e5d0cf113d41dc454b7a0eb41
* Copyright headers: point to LICENSE.md and shortenBoris Nagaev2016-08-271-2/+1
| | | | | | | | | | | | | | | | | | | The following script was applied: sed ':a;/part of MXE.$/{N;s/\n//;ba}' -i $(git grep -l 'part of MXE') sed 's/\(part of MXE\).*\(See index.html\)/\1. \2/' -i \ $(git grep -l 'part of MXE.*See index.html') before='This file is part of MXE. See index.html for further information.' after='This file is part of MXE. See LICENSE.md for licensing information.' sed "s/$before/$after/" -i $(git grep -l 'part of MXE') Then git grep 'index.html for further information' revealed two other files. One of them was patched manually (patch.mk). Makefile has text "See index.html for further information" unrelated to licensing. See https://github.com/mxe/mxe/issues/1500#issuecomment-241340792
* cegui: fix libxml2 and minizip; enable fribidi and glfw3Tony Theodore2016-08-111-2/+5
| | | | | Boost and SDL2 aren't detected and need more work, other packages are either outdated or missing from MXE.
* Merge branch 'master' into Quintus-cegui-0.8Tony Theodore2016-08-021-1/+1
|\
| * use $(TEST_FILE) instead of $(2).c and otherBoris Nagaev2016-07-301-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The following script was applied: set -xue find src/ plugins/ -name '*.mk' -type f > mks # special cases for test file: # ls -d src/*-test* | sed 's@-test.*@@' | sort | uniq --repeated sed 's@$(2).c@$(PWD)/src/$(PKG)-test.c@g' -i \ src/{boost,freeimage,hdf5,lapack,sdl,sdl_image,sdl_sound}.mk sed 's@$(2).f@$(PWD)/src/$(PKG)-test.f@g' -i src/lapack.mk sed 's@$(PWD)/$(2).pro@$(PWD)/src/$(PKG)-test.pro@g' -i \ src/qt.mk plugins/examples/custom-qt-min/overrides.mk sed 's@$(2)-CMakeLists.txt@$(PWD)/src/$(PKG)-test-CMakeLists.txt@g' \ -i src/{sdl_image,sdl_sound}.mk # check for base in $(ls -d src/*-test* | sed 's@-test.*@@' | sort | uniq --repeated); do ! grep -q '$(2)' "${base}.mk" done # other $(2) sed 's@$(2).cpp@$(TEST_FILE)@g' -i $(cat mks) sed 's@$(2).cxx@$(TEST_FILE)@g' -i $(cat mks) sed 's@$(2).c@$(TEST_FILE)@g' -i $(cat mks) sed 's@$(2).ml@$(TEST_FILE)@g' -i $(cat mks) sed 's@$(2).f@$(TEST_FILE)@g' -i $(cat mks) # check ! grep '$(2)' $(cat mks) See https://github.com/mxe/mxe/issues/1452
* | cegui: separate shared/static builds and manually configure pc filesTony Theodore2016-08-021-1/+15
| |
* | cegui: switch to tracking dev branchTony Theodore2016-08-021-5/+13
| |
* | Enable CEGUI OpenGL3, Direct3D9, Direct3D10 renderers.Quintus2016-07-301-3/+3
| | | | | | | | | | They build just fine. The Direct3D11 renderer fails to build with an include error and hence has not been enabled.
* | cegui: enable shared and x86_64 buildsTony Theodore2016-07-291-6/+3
| |
* | cegui: reformat and remove freetype2 workaroundTony Theodore2016-07-291-17/+8
| |
* | cegui: fix test and miminise invocationTony Theodore2016-07-291-3/+1
| |
* | cegui: unify patchesTony Theodore2016-07-291-2/+0
| |
* | Patch CEGUI build system to build the pkg-config filesQuintus2016-07-291-0/+1
| |
* | Fix glew build problems.Quintus2016-07-291-3/+4
| | | | | | | | | | Cf. upstream ticket at <https://bitbucket.org/cegui/cegui/issues/1131/opengl-renderers-fail-to-crosscompile-due>.
* | Start work to upgrade to CEGUI 0.8.x.Quintus2016-07-191-42/+55
|/ | | | | The build fails in the OpenGL parser with "_imp__" errors in GLEW currently.
* all packages: really use sha256 checksumsTony Theodore2015-09-231-1/+1
|
* many packages: cleanup deps orderingTony Theodore2015-09-231-1/+1
|
* all packages: switch to sha256 checksumsTony Theodore2015-09-231-1/+1
| | | | closes #871
* many packages: explicitly disable shared buildsTony Theodore2014-04-061-0/+2
| | | | closes #369
* Move package versions from index.html back into the src/*.mk filesVolker Grabsch2013-07-211-0/+1
| | | | | | | | | | | | | | | | | | | | | | | 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)
* various packages: enable/disable mingw-w64 buildsTony Theodore2013-06-011-0/+2
|
* package cegui: fix update macroTony Theodore2013-05-251-1/+1
|
* package cegui: add update macroTony Theodore2013-05-251-1/+5
|
* package cegui: fix libs to use xerces-c instead of tinyxmlTony Theodore2013-05-121-2/+3
|
* package cegui: disable tinyxmlTony Theodore2013-05-121-0/+1
|
* new package ceguiQuintus2013-05-121-0/+54