annotate src/fontconfig.mk @ 4400:beeb2fc30635

fontconfig: update to v2.12.3 * src/fontconfig.mk: update version, checksum
author John D
date Fri, 23 Jun 2017 15:18:59 -0400
parents 7384a91ed38a
children c2d59e7a4ad3
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2333
f653602a0500 Rebrand to new project name MXE
Volker Grabsch <vog@notjusthosting.com>
parents: 2300
diff changeset
1 # This file is part of MXE.
2353
99516e73b368 Move doc/index.html -> index.html
Volker Grabsch <vog@notjusthosting.com>
parents: 2349
diff changeset
2 # See index.html for further information.
414
d2a6561bcb6d add a copyright notice and license to each source file
Volker Grabsch <vog@notjusthosting.com>
parents: 409
diff changeset
3
306
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 269
diff changeset
4 PKG := fontconfig
448
e9afec55fd6b improved version recognition, enable the notation of ignored (bad) package versions
Volker Grabsch <vog@notjusthosting.com>
parents: 432
diff changeset
5 $(PKG)_IGNORE :=
4400
beeb2fc30635 fontconfig: update to v2.12.3
John D
parents: 4309
diff changeset
6 $(PKG)_VERSION := 2.12.3
beeb2fc30635 fontconfig: update to v2.12.3
John D
parents: 4309
diff changeset
7 $(PKG)_CHECKSUM := 408f933548bdc9ad912bc66d0fba22a8a4612d8b
306
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 269
diff changeset
8 $(PKG)_SUBDIR := fontconfig-$($(PKG)_VERSION)
2715
879c46089542 update package fontconfig
Mark Brand <mabrand@mabrand.nl>
parents: 2662
diff changeset
9 $(PKG)_FILE := fontconfig-$($(PKG)_VERSION).tar.bz2
306
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 269
diff changeset
10 $(PKG)_URL := http://fontconfig.org/release/$($(PKG)_FILE)
3048
5ef49fb3299d treat gcc and binutils as build tools
John W. Eaton <jwe@octave.org>
parents: 3014
diff changeset
11 $(PKG)_DEPS := freetype expat
153
efa211bbfd73 translated package: fontconfig
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
12
efa211bbfd73 translated package: fontconfig
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
13 define $(PKG)_UPDATE
2525
4d0f3a9da57e all packages: use $(WGET) portability variable
Tony Theodore <tonyt@logyst.com>
parents: 2365
diff changeset
14 $(WGET) -q -O- 'http://fontconfig.org/release/' | \
153
efa211bbfd73 translated package: fontconfig
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
15 $(SED) -n 's,.*fontconfig-\([0-9][^>]*\)\.tar.*,\1,p' | \
efa211bbfd73 translated package: fontconfig
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
16 tail -1
efa211bbfd73 translated package: fontconfig
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
17 endef
efa211bbfd73 translated package: fontconfig
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
18
efa211bbfd73 translated package: fontconfig
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
19 define $(PKG)_BUILD
4309
7384a91ed38a * src/fontconfig.mk: call autoreconf before configure
John D
parents: 4266
diff changeset
20 cd '$(1)' && autoreconf -fi
153
efa211bbfd73 translated package: fontconfig
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
21 cd '$(1)' && ./configure \
2997
4f9b72cf7ee7 allow native builds too
John W. Eaton <jwe@octave.org>
parents: 2855
diff changeset
22 $(CONFIGURE_CPPFLAGS) $(CONFIGURE_LDFLAGS) \
3014
b6c7244a2f66 Use HOST_BINDIR, HOST_LIBDIR, and HOST_INCDIR instead of MXE_BINDIR, MXE_LIBDIR, and MXE_INCDIR. Attempt to use these variables consistently instead of using $(HOST_PREFIX)/bin, $(HOST_PREFIX)/lib, and $(HOST_PREFIX)/include
John W. Eaton <jwe@octave.org>
parents: 3013
diff changeset
23 FREETYPE_CFLAGS='-I$(HOST_INCDIR)/freetype2' \
2997
4f9b72cf7ee7 allow native builds too
John W. Eaton <jwe@octave.org>
parents: 2855
diff changeset
24 FREETYPE_LIBS='-lfreetype' \
3013
bcc26ffe9a0f use variable for --host and --build configure arguments
John W. Eaton <jwe@octave.org>
parents: 3012
diff changeset
25 $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \
2855
47558e958113 Allow static/shared libraries to be configured in top-level Makefile.
John W. Eaton <jwe@octave.org>
parents: 2715
diff changeset
26 $(ENABLE_SHARED_OR_STATIC) \
3012
100e618349f7 Improve handling of prefix directories by defining HOST_PREFIX and
John W. Eaton <jwe@octave.org>
parents: 3002
diff changeset
27 --prefix='$(HOST_PREFIX)' \
153
efa211bbfd73 translated package: fontconfig
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
28 --with-arch='$(TARGET)' \
3002
733c487c69c6 Update fltk and fontconfig from redhat 6.3 test native build issues
John Donoghue <john.donoghue@ieee.org>
parents: 2997
diff changeset
29 --disable-docs \
3091
5ba57870c491 [MSVC] enable fontconfig compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
30 --with-expat='$(HOST_PREFIX)' && $(CONFIGURE_POST_HOOK)
2997
4f9b72cf7ee7 allow native builds too
John W. Eaton <jwe@octave.org>
parents: 2855
diff changeset
31 $(MAKE) -C '$(1)' -j '$(JOBS)' sbin_PROGRAMS= noinst_PROGRAMS=
4266
472c440a678b fontconfig: update to 2.12.1
John D
parents: 3675
diff changeset
32 $(MAKE) -C '$(1)' -j 1 install sbin_PROGRAMS= noinst_PROGRAMS=
153
efa211bbfd73 translated package: fontconfig
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
33 endef