summaryrefslogtreecommitdiffstats
path: root/src/freetype.mk
Commit message (Collapse)AuthorAgeFilesLines
* update: fontconfig, freetds, freetype, gdb, harfbuzzMark Brand2017-09-221-2/+2
|
* freetype: Don't autodetect harfbuzz.Tobias Gruetzmacher2017-08-011-1/+1
| | | | | This makes the harfbuzz support explicit: freetype-bootstrap does not use harfbuzz, but freetype does.
* update: freetype, harfbuzzMark Brand2017-06-141-5/+7
| | | | | Update requires a second occurence of libfreetype in the static link list to resolved symbols in the second occurence of libharfbuzz.
* more URL updatesViktor Szakats2017-03-101-2/+2
|
* URL updatesViktor Szakats2017-03-041-1/+1
|
* add _WEBSITE and _DESCR fields to core packagesBoris Nagaev2016-12-221-0/+1
| | | | | | See https://github.com/mxe/mxe/issues/1422 Automation (Python 2 code): https://gist.github.com/9f5c315e5d0cf113d41dc454b7a0eb41
* freetype: updateMark Brand2016-09-081-2/+2
|
* 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
* update: freetypeMark Brand2016-07-151-2/+2
|
* freetype: updateMark Brand2016-02-091-2/+2
|
* freetype: don't create harfbuzz alias during boostrap buildTony Theodore2015-12-141-4/+8
|
* freetype: updateMark Brand2015-11-291-2/+2
|
* freetype: updateMark Brand2015-10-041-2/+2
|
* all packages: really use sha256 checksumsTony Theodore2015-09-231-1/+1
|
* all packages: switch to sha256 checksumsTony Theodore2015-09-231-1/+1
| | | | closes #871
* cairo freetype harfbuzz: updateMark Brand2015-06-201-2/+2
|
* freetype: updateMark Brand2014-12-301-2/+2
|
* freetype: updateMark Brand2014-12-061-2/+2
|
* freetype: link glibc fixing some harfbuzz issuesGuilherme Lima Bernal2014-06-241-1/+1
| | | packages sfml and cegui fail to build because of this. libharfbuzz_too.a requires glibc and it must be repeated after it.
* let freetype2.pc deal with the harfbuzz circularityMark Brand2014-06-211-1/+5
|
* packages cairo fontconfig freetype harbuzz: bootstrap build for mutual ↵Tony Theodore2014-06-171-1/+1
| | | | dependencies
* update package freetypeMark Brand2014-03-071-2/+2
|
* package qt4 and dependencies: enable shared buildsTony Theodore2014-02-091-4/+1
|
* update package freetypeMark Brand2013-12-121-2/+2
|
* update package freetypeMark Brand2013-11-271-2/+2
|
* packages freetype libgpg_error libpng pcre: add prefixed *-config linksWerner Lemberg2013-08-071-0/+1
|
* 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)
* package freetype: use version variable for urlTony Theodore2013-06-211-1/+1
|
* package freetype: use pkg-config for libpng and set extra libs for config filesTony Theodore2013-06-211-2/+3
|
* Update package freetypeUlrich Klauer2013-06-201-3/+4
| | | | | | | | Update freetype to 2.5.0.1 (fix for a packaging error): "No code changes. However, CFF_CONFIG_OPTION_OLD_ENGINE was accidentally enabled." Also update the website URL.
* package freetype: enable libpngTony Theodore2013-06-201-2/+4
|
* update package freetypeMark Brand2013-06-201-1/+1
|
* remove explicit configure option --libdirMark Brand2013-06-021-2/+1
| | | | | | | | | Unsetting CONFIG_SITE was the right way to solve the problem that --libdir was working around. This reverts commit 0b3240f9d8c74205cf128e9a7f865f22dbd6e771. This reverts commit 3653eb6ec1ba0f178e4ab39d7e9b72acb36298e9. This reverts commit 593ab5a7068d6142903ab839237100e92a5071f3.
* use --libdir to avoid <prefix>/<target>/lib64 confusion (more)Mark Brand2013-06-021-1/+2
| | | | follow-up to commit 593ab5a7068d6142903ab839237100e92a5071f3
* update package freetypeTony Theodore2013-05-121-2/+3
|
* package freetype: enable bzip2Tony Theodore2013-02-131-1/+1
|
* update package freetypeMark Brand2012-12-201-1/+1
|
* update package freetypeMark Brand2012-06-151-1/+2
|
* all packages: use $(WGET) portability variableTony Theodore2012-05-161-1/+1
|
* Move full package names from src/*.mk into package list (index.html)Volker Grabsch2012-03-291-1/+0
|
* Move doc/index.html -> index.htmlVolker Grabsch2012-03-291-1/+1
|
* Move $(PKG)_VERSION and $(PKG)_WEBSITE from src/*.mk into doc/index.htmlVolker Grabsch2012-03-291-2/+0
|
* Rebrand to new project name MXEVolker Grabsch2012-03-281-1/+1
|
* update package freetypeMark Brand2012-03-081-2/+2
| | | | | | --- src/freetype.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
* update package freetypeMark Brand2011-11-151-2/+2
|
* update packages freetype lame libtool x264Mark Brand2011-10-181-2/+2
|
* update packages: ffmpeg freetype x264Mark Brand2011-08-011-2/+2
|
* update package freetypeMark Brand2011-06-251-2/+2
|
* upgrade packages: freetype gst-plugins-base gst-plugins-good gstreamer ↵Volker Grabsch2010-12-021-2/+2
| | | | imagemagick lcms libusb openssl x264
* improved update script of packages: boost cppunit cunit expat freetype glew ↵Volker Grabsch2010-12-011-1/+1
| | | | pcre pdcurses wxwidgets