annotate src/build-gettext.mk @ 6161:8fcac4d6d983 release

of-queueing: Fix syntax error with Octave 7 (bug #62314). * src/of-queueing-1-octave7.patch: Add new file. * dist-files.mk: Include new patch.
author Markus Mützel <markus.muetzel@gmx.de>
date Thu, 14 Apr 2022 19:27:13 +0200
parents d1f4f3739a52
children d18a5545df0d
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4126
d9b98f1123cc add build-gettext package
"lostbard" <john.donoghue@ieee.org>
parents:
diff changeset
1 # This file is part of MXE.
d9b98f1123cc add build-gettext package
"lostbard" <john.donoghue@ieee.org>
parents:
diff changeset
2 # See index.html for further information.
d9b98f1123cc add build-gettext package
"lostbard" <john.donoghue@ieee.org>
parents:
diff changeset
3
d9b98f1123cc add build-gettext package
"lostbard" <john.donoghue@ieee.org>
parents:
diff changeset
4 PKG := build-gettext
d9b98f1123cc add build-gettext package
"lostbard" <john.donoghue@ieee.org>
parents:
diff changeset
5 $(PKG)_IGNORE :=
5505
391a0292bcaa gettext: update to 0.21
John Donoghue <john.donoghue@ieee.org>
parents: 5377
diff changeset
6 $(PKG)_VERSION := 0.21
391a0292bcaa gettext: update to 0.21
John Donoghue <john.donoghue@ieee.org>
parents: 5377
diff changeset
7 $(PKG)_CHECKSUM := e6c0a0cba5b00a604c9118403a8199c77a538526
4126
d9b98f1123cc add build-gettext package
"lostbard" <john.donoghue@ieee.org>
parents:
diff changeset
8 $(PKG)_SUBDIR := gettext-$($(PKG)_VERSION)
d9b98f1123cc add build-gettext package
"lostbard" <john.donoghue@ieee.org>
parents:
diff changeset
9 $(PKG)_FILE := gettext-$($(PKG)_VERSION).tar.gz
d9b98f1123cc add build-gettext package
"lostbard" <john.donoghue@ieee.org>
parents:
diff changeset
10 $(PKG)_URL := ftp://ftp.gnu.org/pub/gnu/gettext/$($(PKG)_FILE)
d9b98f1123cc add build-gettext package
"lostbard" <john.donoghue@ieee.org>
parents:
diff changeset
11 $(PKG)_DEPS :=
d9b98f1123cc add build-gettext package
"lostbard" <john.donoghue@ieee.org>
parents:
diff changeset
12
d9b98f1123cc add build-gettext package
"lostbard" <john.donoghue@ieee.org>
parents:
diff changeset
13 define $(PKG)_UPDATE
4545
0e56fe2d2ef5 Makefile.in: add update-build-tools target
John Donoghue <john.donoghue@ieee.org>
parents: 4441
diff changeset
14 $(WGET) -q -O- 'http://ftp.gnu.org/gnu/gettext/?C=M;O=D' | \
0e56fe2d2ef5 Makefile.in: add update-build-tools target
John Donoghue <john.donoghue@ieee.org>
parents: 4441
diff changeset
15 $(SED) -n 's,.*<a href="gettext-\([0-9\.]*\)\.tar.*,\1,p' | \
0e56fe2d2ef5 Makefile.in: add update-build-tools target
John Donoghue <john.donoghue@ieee.org>
parents: 4441
diff changeset
16 $(SORT) -V | \
0e56fe2d2ef5 Makefile.in: add update-build-tools target
John Donoghue <john.donoghue@ieee.org>
parents: 4441
diff changeset
17 tail -1
4126
d9b98f1123cc add build-gettext package
"lostbard" <john.donoghue@ieee.org>
parents:
diff changeset
18 endef
d9b98f1123cc add build-gettext package
"lostbard" <john.donoghue@ieee.org>
parents:
diff changeset
19
5886
5d6c81bb0237 * build-gettext.mk: Graft changes from default branch.
John W. Eaton <jwe@octave.org>
parents: 5881
diff changeset
20 ## See
5d6c81bb0237 * build-gettext.mk: Graft changes from default branch.
John W. Eaton <jwe@octave.org>
parents: 5881
diff changeset
21 ##
5d6c81bb0237 * build-gettext.mk: Graft changes from default branch.
John W. Eaton <jwe@octave.org>
parents: 5881
diff changeset
22 ## https://octave.discourse.group/t/octave-space-fails-to-build-gnutls/1573/19
5d6c81bb0237 * build-gettext.mk: Graft changes from default branch.
John W. Eaton <jwe@octave.org>
parents: 5881
diff changeset
23 ##
5d6c81bb0237 * build-gettext.mk: Graft changes from default branch.
John W. Eaton <jwe@octave.org>
parents: 5881
diff changeset
24 ## for a discussion about the CCACHE_NODIRECT setting below.
5d6c81bb0237 * build-gettext.mk: Graft changes from default branch.
John W. Eaton <jwe@octave.org>
parents: 5881
diff changeset
25
4126
d9b98f1123cc add build-gettext package
"lostbard" <john.donoghue@ieee.org>
parents:
diff changeset
26 define $(PKG)_BUILD
5886
5d6c81bb0237 * build-gettext.mk: Graft changes from default branch.
John W. Eaton <jwe@octave.org>
parents: 5881
diff changeset
27 mkdir '$(1).build'
5d6c81bb0237 * build-gettext.mk: Graft changes from default branch.
John W. Eaton <jwe@octave.org>
parents: 5881
diff changeset
28 cd '$(1).build' && '$(1)/configure' \
4126
d9b98f1123cc add build-gettext package
"lostbard" <john.donoghue@ieee.org>
parents:
diff changeset
29 --prefix='$(BUILD_TOOLS_PREFIX)' \
d9b98f1123cc add build-gettext package
"lostbard" <john.donoghue@ieee.org>
parents:
diff changeset
30 --without-libexpat-prefix \
d9b98f1123cc add build-gettext package
"lostbard" <john.donoghue@ieee.org>
parents:
diff changeset
31 --without-libxml2-prefix \
d9b98f1123cc add build-gettext package
"lostbard" <john.donoghue@ieee.org>
parents:
diff changeset
32 $($(PKG)_CONFIGURE_OPTIONS)
5886
5d6c81bb0237 * build-gettext.mk: Graft changes from default branch.
John W. Eaton <jwe@octave.org>
parents: 5881
diff changeset
33 CCACHE_NODIRECT=1 $(MAKE) -C '$(1).build' -j '$(JOBS)'
5d6c81bb0237 * build-gettext.mk: Graft changes from default branch.
John W. Eaton <jwe@octave.org>
parents: 5881
diff changeset
34 $(MAKE) -C '$(1).build' -j 1 $(MXE_DISABLE_DOCS) install DESTDIR='$(3)'
4126
d9b98f1123cc add build-gettext package
"lostbard" <john.donoghue@ieee.org>
parents:
diff changeset
35 endef