annotate src/fontconfig.mk @ 5895:2db7f803d55d release

librsb: Update to version 1.2.0.10 (bug #60042). * src/librsb.mk: Update version and checksum. Remove work-around for fixed bug.
author Markus Mützel <markus.muetzel@gmx.de>
date Sun, 19 Sep 2021 14:32:07 +0200
parents cd41c2d17ef3
children ef60b54586a4
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 :=
4849
235c30f6604c fontconfig: update to v2.13.1
John Donoghue
parents: 4835
diff changeset
6 $(PKG)_VERSION := 2.13.1
235c30f6604c fontconfig: update to v2.13.1
John Donoghue
parents: 4835
diff changeset
7 $(PKG)_CHECKSUM := 75612356ef4f801735b49baf987f8942b4a7a5e1
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)
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
2525
4d0f3a9da57e all packages: use $(WGET) portability variable
Tony Theodore <tonyt@logyst.com>
parents: 2365
diff changeset
17 $(WGET) -q -O- 'http://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
4266
472c440a678b fontconfig: update to 2.12.1
John D
parents: 3675
diff changeset
40 $(MAKE) -C '$(1)' -j 1 install sbin_PROGRAMS= noinst_PROGRAMS=
153
efa211bbfd73 translated package: fontconfig
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
41 endef