annotate src/fontconfig.mk @ 6523:c405ab8934ba

* src/fontconfig.mk: use DESTDIR
author John Donoghue <john.donoghue@ieee.org>
date Wed, 16 Nov 2022 08:43:44 -0500
parents 289980f33600
children 91d5ee8ae175
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 :=
6471
289980f33600 * src/fontconfig.mk: update to v2.14.1
John Donoghue <john.donoghue@ieee.org>
parents: 6142
diff changeset
6 $(PKG)_VERSION := 2.14.1
289980f33600 * src/fontconfig.mk: update to v2.14.1
John Donoghue <john.donoghue@ieee.org>
parents: 6142
diff changeset
7 $(PKG)_CHECKSUM := 1e0c542d35783f25ed3f4d3eb843fd81cb01a81d
306
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 269
diff changeset
8 $(PKG)_SUBDIR := fontconfig-$($(PKG)_VERSION)
6142
ef60b54586a4 * src/fontconfig.mk: update to v2.14.0
John Donoghue <john.donoghue@ieee.org>
parents: 5454
diff changeset
9 $(PKG)_FILE := fontconfig-$($(PKG)_VERSION).tar.xz
ef60b54586a4 * src/fontconfig.mk: update to v2.14.0
John Donoghue <john.donoghue@ieee.org>
parents: 5454
diff changeset
10 $(PKG)_URL := https://fontconfig.org/release/$($(PKG)_FILE)
5454
cd41c2d17ef3 Update dependancies on packages
John Donoghue <john.donoghue@ieee.org>
parents: 4864
diff changeset
11 $(PKG)_DEPS := freetype expat gettext libiconv
4864
b0e1e4363cf0 util-linux: new package
John W. Eaton <jwe@octave.org>
parents: 4849
diff changeset
12 ifeq ($(MXE_WINDOWS_BUILD),no)
b0e1e4363cf0 util-linux: new package
John W. Eaton <jwe@octave.org>
parents: 4849
diff changeset
13 $(PKG)_DEPS += util-linux
b0e1e4363cf0 util-linux: new package
John W. Eaton <jwe@octave.org>
parents: 4849
diff changeset
14 endif
153
efa211bbfd73 translated package: fontconfig
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
15
efa211bbfd73 translated package: fontconfig
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
16 define $(PKG)_UPDATE
6142
ef60b54586a4 * src/fontconfig.mk: update to v2.14.0
John Donoghue <john.donoghue@ieee.org>
parents: 5454
diff changeset
17 $(WGET) -q -O- 'https://fontconfig.org/release/' | \
153
efa211bbfd73 translated package: fontconfig
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
18 $(SED) -n 's,.*fontconfig-\([0-9][^>]*\)\.tar.*,\1,p' | \
efa211bbfd73 translated package: fontconfig
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
19 tail -1
efa211bbfd73 translated package: fontconfig
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
20 endef
efa211bbfd73 translated package: fontconfig
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
21
efa211bbfd73 translated package: fontconfig
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
22 define $(PKG)_BUILD
4309
7384a91ed38a * src/fontconfig.mk: call autoreconf before configure
John D
parents: 4266
diff changeset
23 cd '$(1)' && autoreconf -fi
153
efa211bbfd73 translated package: fontconfig
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
24 cd '$(1)' && ./configure \
2997
4f9b72cf7ee7 allow native builds too
John W. Eaton <jwe@octave.org>
parents: 2855
diff changeset
25 $(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
26 FREETYPE_CFLAGS='-I$(HOST_INCDIR)/freetype2' \
2997
4f9b72cf7ee7 allow native builds too
John W. Eaton <jwe@octave.org>
parents: 2855
diff changeset
27 FREETYPE_LIBS='-lfreetype' \
3013
bcc26ffe9a0f use variable for --host and --build configure arguments
John W. Eaton <jwe@octave.org>
parents: 3012
diff changeset
28 $(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
29 $(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
30 --prefix='$(HOST_PREFIX)' \
153
efa211bbfd73 translated package: fontconfig
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
31 --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
32 --disable-docs \
3091
5ba57870c491 [MSVC] enable fontconfig compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
33 --with-expat='$(HOST_PREFIX)' && $(CONFIGURE_POST_HOOK)
4809
1ce75b5e4757 fontconfig: strip host prefix <cachedir> from fonts.conf file.
John W. Eaton <jwe@octave.org>
parents: 4555
diff changeset
34
2997
4f9b72cf7ee7 allow native builds too
John W. Eaton <jwe@octave.org>
parents: 2855
diff changeset
35 $(MAKE) -C '$(1)' -j '$(JOBS)' sbin_PROGRAMS= noinst_PROGRAMS=
4809
1ce75b5e4757 fontconfig: strip host prefix <cachedir> from fonts.conf file.
John W. Eaton <jwe@octave.org>
parents: 4555
diff changeset
36
1ce75b5e4757 fontconfig: strip host prefix <cachedir> from fonts.conf file.
John W. Eaton <jwe@octave.org>
parents: 4555
diff changeset
37 $(MAKE) -C '$(1)' -j 1 fonts.conf
1ce75b5e4757 fontconfig: strip host prefix <cachedir> from fonts.conf file.
John W. Eaton <jwe@octave.org>
parents: 4555
diff changeset
38 $(SED) -i "\|^.*<cachedir>$(HOST_PREFIX).*$$|d" $(1)/fonts.conf
1ce75b5e4757 fontconfig: strip host prefix <cachedir> from fonts.conf file.
John W. Eaton <jwe@octave.org>
parents: 4555
diff changeset
39
6523
c405ab8934ba * src/fontconfig.mk: use DESTDIR
John Donoghue <john.donoghue@ieee.org>
parents: 6471
diff changeset
40 $(MAKE) -C '$(1)' -j 1 install sbin_PROGRAMS= noinst_PROGRAMS= DESTDIR='$(3)'
153
efa211bbfd73 translated package: fontconfig
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
41 endef