summaryrefslogtreecommitdiffstats
path: root/src/qt5.mk
Commit message (Collapse)AuthorAgeFilesLines
* qt5: remove download related variablesTony Theodore2015-10-171-9/+1
| | | | in rare cases, it would try downloading qtbase again
* Revert "qt5: try to fix CMake files"Timothy Gu2014-09-231-6/+0
| | | | This reverts commit 8a6cf7cab7ab03217fd8e6c305eabc7d2913a4b3.
* qt5: try to fix CMake filesTimothy Gu2014-09-231-0/+6
| | | | | | | | | See #466. This is one of the worst hacks I've ever seen. If there is a way to fix this better, please mention on #466. Signed-off-by: Timothy Gu <timothygu99@gmail.com>
* 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)
* add qt5 convenience target packageTony Theodore2013-06-011-0/+17
|
* package qt5: replace monolothic package with module packagesMark Brand2012-12-201-64/+0
| | | | | Qt 5 is designed to be modular. The big monolothic tarball is actually deprecated.
* package qt5: remove obsolete configure optionsMark Brand2012-12-191-2/+0
|
* update package qt5 (final 5.0.0)Mark Brand2012-12-191-2/+2
|
* package qt5: temporarily disable c++11 on OSXTony Theodore2012-12-161-0/+1
|
* new package qt5Mark Brand2012-12-131-0/+65