annotate src/build-gettext.mk @ 5881:c30da1cd5e3b release

* build-gettext.mk: as with gettext, only build runtime and tools.
author John W. Eaton <jwe@octave.org>
date Tue, 07 Sep 2021 15:33:58 -0400
parents 5d627682a6b2
children f08c7cbb8df1 5d6c81bb0237
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
5881
c30da1cd5e3b * build-gettext.mk: as with gettext, only build runtime and tools.
John W. Eaton <jwe@octave.org>
parents: 5880
diff changeset
21 mkdir '$(1)/gettext-runtime/.build'
c30da1cd5e3b * build-gettext.mk: as with gettext, only build runtime and tools.
John W. Eaton <jwe@octave.org>
parents: 5880
diff changeset
22 cd '$(1)/gettext-runtime/.build' && '$(1)/gettext-runtime/configure' \
4126
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)
5881
c30da1cd5e3b * build-gettext.mk: as with gettext, only build runtime and tools.
John W. Eaton <jwe@octave.org>
parents: 5880
diff changeset
27 $(MAKE) -C '$(1)/gettext-runtime/.build/intl' -j $(JOBS)
4126
d9b98f1123cc add build-gettext package
"lostbard" <john.donoghue@ieee.org>
parents:
diff changeset
28 if test x$(MXE_SYSTEM) = xmsvc; then \
5881
c30da1cd5e3b * build-gettext.mk: as with gettext, only build runtime and tools.
John W. Eaton <jwe@octave.org>
parents: 5880
diff changeset
29 cd '$(1)/gettext-runtime/.build/intl' && $(CONFIGURE_POST_HOOK); \
4126
d9b98f1123cc add build-gettext package
"lostbard" <john.donoghue@ieee.org>
parents:
diff changeset
30 fi
5881
c30da1cd5e3b * build-gettext.mk: as with gettext, only build runtime and tools.
John W. Eaton <jwe@octave.org>
parents: 5880
diff changeset
31 $(MAKE) -C '$(1)/gettext-runtime/.build/intl' -j 1 $(MXE_DISABLE_DOCS) install DESTDIR='$(3)'
c30da1cd5e3b * build-gettext.mk: as with gettext, only build runtime and tools.
John W. Eaton <jwe@octave.org>
parents: 5880
diff changeset
32
c30da1cd5e3b * build-gettext.mk: as with gettext, only build runtime and tools.
John W. Eaton <jwe@octave.org>
parents: 5880
diff changeset
33 mkdir '$(1)/gettext-tools/.build'
c30da1cd5e3b * build-gettext.mk: as with gettext, only build runtime and tools.
John W. Eaton <jwe@octave.org>
parents: 5880
diff changeset
34 cd '$(1)/gettext-tools/.build' && '$(1)/gettext-tools/configure' \
c30da1cd5e3b * build-gettext.mk: as with gettext, only build runtime and tools.
John W. Eaton <jwe@octave.org>
parents: 5880
diff changeset
35 --prefix='$(BUILD_TOOLS_PREFIX)' \
c30da1cd5e3b * build-gettext.mk: as with gettext, only build runtime and tools.
John W. Eaton <jwe@octave.org>
parents: 5880
diff changeset
36 --without-libexpat-prefix \
c30da1cd5e3b * build-gettext.mk: as with gettext, only build runtime and tools.
John W. Eaton <jwe@octave.org>
parents: 5880
diff changeset
37 --without-libxml2-prefix \
c30da1cd5e3b * build-gettext.mk: as with gettext, only build runtime and tools.
John W. Eaton <jwe@octave.org>
parents: 5880
diff changeset
38 $($(PKG)_CONFIGURE_OPTIONS)
c30da1cd5e3b * build-gettext.mk: as with gettext, only build runtime and tools.
John W. Eaton <jwe@octave.org>
parents: 5880
diff changeset
39 $(MAKE) -C '$(1)/gettext-tools/.build/intl' -j $(JOBS)
c30da1cd5e3b * build-gettext.mk: as with gettext, only build runtime and tools.
John W. Eaton <jwe@octave.org>
parents: 5880
diff changeset
40 if test x$(MXE_SYSTEM) = xmsvc; then \
c30da1cd5e3b * build-gettext.mk: as with gettext, only build runtime and tools.
John W. Eaton <jwe@octave.org>
parents: 5880
diff changeset
41 cd '$(1)/gettext-tools/.build/intl' && $(CONFIGURE_POST_HOOK); \
c30da1cd5e3b * build-gettext.mk: as with gettext, only build runtime and tools.
John W. Eaton <jwe@octave.org>
parents: 5880
diff changeset
42 fi
c30da1cd5e3b * build-gettext.mk: as with gettext, only build runtime and tools.
John W. Eaton <jwe@octave.org>
parents: 5880
diff changeset
43 $(MAKE) -C '$(1)/gettext-tools/.build/intl' -j 1 $(MXE_DISABLE_DOCS) install DESTDIR='$(3)'
4126
d9b98f1123cc add build-gettext package
"lostbard" <john.donoghue@ieee.org>
parents:
diff changeset
44 endef