annotate src/build-gettext.mk @ 5531:eae508c12529

Add build rule for build-octave (bug #49503). * src/build-octave.mk: Add new build rule for build-octave which can be used for cross-building binary packages that depend on Octave as a build tool. * dist-files.mk: Add new file to list. * index.html: Add new package to list. * src/of-communications.mk, src/of-image.mk, src/of-mapping.mk, src/of-optiminterp.mk, src/of-sparsersb.mk, src/of-statistics.mk, src/of-windows.mk: Add optional dependency on build-octave. * configure.ac: Add new configure switch "--disable-system-octave" that is needed to build the build-octave package. * Makefile.in: Add variable "USE_SYSTEM_OCTAVE". Exclude build-octave from the default build tools and build it only if a package explicitly depends on it. Display warning about missing native Octave version only if necessary.
author Markus Mützel <markus.muetzel@gmx.de>
date Tue, 08 Sep 2020 23:04:38 +0200
parents 391a0292bcaa
children 0e80767f2199
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
d9b98f1123cc add build-gettext package
"lostbard" <john.donoghue@ieee.org>
parents:
diff changeset
20 define $(PKG)_BUILD
d9b98f1123cc add build-gettext package
"lostbard" <john.donoghue@ieee.org>
parents:
diff changeset
21 mkdir '$(1).build'
d9b98f1123cc add build-gettext package
"lostbard" <john.donoghue@ieee.org>
parents:
diff changeset
22 cd '$(1).build' && '$(1)/configure' \
d9b98f1123cc add build-gettext package
"lostbard" <john.donoghue@ieee.org>
parents:
diff changeset
23 --prefix='$(BUILD_TOOLS_PREFIX)' \
d9b98f1123cc add build-gettext package
"lostbard" <john.donoghue@ieee.org>
parents:
diff changeset
24 --without-libexpat-prefix \
d9b98f1123cc add build-gettext package
"lostbard" <john.donoghue@ieee.org>
parents:
diff changeset
25 --without-libxml2-prefix \
d9b98f1123cc add build-gettext package
"lostbard" <john.donoghue@ieee.org>
parents:
diff changeset
26 $($(PKG)_CONFIGURE_OPTIONS)
d9b98f1123cc add build-gettext package
"lostbard" <john.donoghue@ieee.org>
parents:
diff changeset
27 $(MAKE) -C '$(1).build' -j '$(JOBS)'
d9b98f1123cc add build-gettext package
"lostbard" <john.donoghue@ieee.org>
parents:
diff changeset
28 if test x$(MXE_SYSTEM) = xmsvc; then \
d9b98f1123cc add build-gettext package
"lostbard" <john.donoghue@ieee.org>
parents:
diff changeset
29 cd '$(1).build' && $(CONFIGURE_POST_HOOK); \
d9b98f1123cc add build-gettext package
"lostbard" <john.donoghue@ieee.org>
parents:
diff changeset
30 fi
4441
6f2f30424751 gettext: update to v0.19.8.1
John D
parents: 4126
diff changeset
31 $(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
32 endef