[test] Improve assert_raises_jsonrpc docstring
[bitcoinplatinum.git] / depends / packages / fontconfig.mk
blob12695db4b9f781c9ce8aa9a62dab0ae36a0a1ce4
1 package=fontconfig
2 $(package)_version=2.12.1
3 $(package)_download_path=http://www.freedesktop.org/software/fontconfig/release/
4 $(package)_file_name=$(package)-$($(package)_version).tar.bz2
5 $(package)_sha256_hash=b449a3e10c47e1d1c7a6ec6e2016cca73d3bd68fbbd4f0ae5cc6b573f7d6c7f3
6 $(package)_dependencies=freetype expat
8 define $(package)_set_vars
9 $(package)_config_opts=--disable-docs --disable-static
10 endef
12 define $(package)_config_cmds
13 $($(package)_autoconf)
14 endef
16 # 2.12.1 uses CHAR_WIDTH which is reserved and clashes with some glibc versions, but newer versions of fontconfig
17 # have broken makefiles which needlessly attempt to re-generate headers with gperf.
18 # Instead, change all uses of CHAR_WIDTH, and disable the rule that forces header re-generation.
19 # This can be removed once the upstream build is fixed.
20 define $(package)_build_cmds
21 sed -i 's/CHAR_WIDTH/CHARWIDTH/g' fontconfig/fontconfig.h src/fcobjshash.gperf src/fcobjs.h src/fcobjshash.h && \
22 sed -i 's/fcobjshash.h: fcobjshash.gperf/fcobjshash.h:/' src/Makefile && \
23 $(MAKE)
24 endef
26 define $(package)_stage_cmds
27 $(MAKE) DESTDIR=$($(package)_staging_dir) install
28 endef