annotate src/gettext.mk @ 7207:9ed6500e56d3 default tip @

maint: Merge release to default.
author Markus Mützel <markus.muetzel@gmx.de>
date Fri, 17 May 2024 20:16:41 +0200
parents bc4c7d2996f3
children
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: 1080
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: 323
diff changeset
3
306
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 304
diff changeset
4 PKG := gettext
448
e9afec55fd6b improved version recognition, enable the notation of ignored (bad) package versions
Volker Grabsch <vog@notjusthosting.com>
parents: 417
diff changeset
5 $(PKG)_IGNORE :=
7098
bc4c7d2996f3 * src/build-gettext.mk, src/gettext.mk: update to v0.22.5
John Donoghue <john.donoghue@ieee.org>
parents: 6976
diff changeset
6 $(PKG)_VERSION := 0.22.5
bc4c7d2996f3 * src/build-gettext.mk, src/gettext.mk: update to v0.22.5
John Donoghue <john.donoghue@ieee.org>
parents: 6976
diff changeset
7 $(PKG)_CHECKSUM := 1c3911796312efd8119da7a292edef305bdb71bb
306
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 304
diff changeset
8 $(PKG)_SUBDIR := gettext-$($(PKG)_VERSION)
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 304
diff changeset
9 $(PKG)_FILE := gettext-$($(PKG)_VERSION).tar.gz
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 304
diff changeset
10 $(PKG)_URL := ftp://ftp.gnu.org/pub/gnu/gettext/$($(PKG)_FILE)
3048
5ef49fb3299d treat gcc and binutils as build tools
John W. Eaton <jwe@octave.org>
parents: 3013
diff changeset
11 $(PKG)_DEPS := libiconv
129
9fb896207491 translated package: gettext
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
12
9fb896207491 translated package: gettext
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
13 define $(PKG)_UPDATE
4384
d5a5b8e659de update PKG_UPDATE rules
John D
parents: 4302
diff changeset
14 $(WGET) -q -O- 'http://ftp.gnu.org/gnu/gettext/' | \
231
fce7481d2b13 improved version update mechanism (make update) of package gettext
Volker Grabsch <vog@notjusthosting.com>
parents: 188
diff changeset
15 grep 'gettext-' | \
129
9fb896207491 translated package: gettext
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
16 $(SED) -n 's,.*gettext-\([0-9][^>]*\)\.tar.*,\1,p' | \
4384
d5a5b8e659de update PKG_UPDATE rules
John D
parents: 4302
diff changeset
17 $(SORT) -Vr | \
231
fce7481d2b13 improved version update mechanism (make update) of package gettext
Volker Grabsch <vog@notjusthosting.com>
parents: 188
diff changeset
18 head -1
129
9fb896207491 translated package: gettext
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
19 endef
9fb896207491 translated package: gettext
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
20
9fb896207491 translated package: gettext
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
21 define $(PKG)_BUILD
6421
af96f4375bc1 * src/gettext.mk: for regen of autoconf files
John Donoghue <john.donoghue@ieee.org>
parents: 5877
diff changeset
22 # while we are patching stuff, we may need to run reconf
af96f4375bc1 * src/gettext.mk: for regen of autoconf files
John Donoghue <john.donoghue@ieee.org>
parents: 5877
diff changeset
23 cd '$(1)' && aclocal && libtoolize --automake --copy --force
af96f4375bc1 * src/gettext.mk: for regen of autoconf files
John Donoghue <john.donoghue@ieee.org>
parents: 5877
diff changeset
24 cd '$(1)' && WANT_AUTOMAKE=latest ./autogen.sh --skip-gnulib
247
891180a1d143 build the gettext-tools in addition to the gettext-runtime
Volker Grabsch <vog@notjusthosting.com>
parents: 231
diff changeset
25 cd '$(1)/gettext-runtime' && ./configure \
3013
bcc26ffe9a0f use variable for --host and --build configure arguments
John W. Eaton <jwe@octave.org>
parents: 3012
diff changeset
26 $(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: 2525
diff changeset
27 $(ENABLE_SHARED_OR_STATIC) \
3012
100e618349f7 Improve handling of prefix directories by defining HOST_PREFIX and
John W. Eaton <jwe@octave.org>
parents: 2855
diff changeset
28 --prefix='$(HOST_PREFIX)' \
247
891180a1d143 build the gettext-tools in addition to the gettext-runtime
Volker Grabsch <vog@notjusthosting.com>
parents: 231
diff changeset
29 --enable-threads=win32 \
248
14320123cf11 fixed dependecies of gettext
Volker Grabsch <vog@notjusthosting.com>
parents: 247
diff changeset
30 --without-libexpat-prefix \
1080
5602f49af84e bugfix: use consistently "CONFIG_SHELL=$(SHELL)" to fix packages that contain bashisms
Volker Grabsch <vog@notjusthosting.com>
parents: 1065
diff changeset
31 --without-libxml2-prefix \
3061
f8299bb6c872 Initial support for native MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
32 CONFIG_SHELL=$(SHELL) && $(CONFIGURE_POST_HOOK)
5877
36081ffe66a0 Backed out changeset 337390a0c7e2
John W. Eaton <jwe@octave.org>
parents: 5875
diff changeset
33 $(MAKE) -C '$(1)/gettext-runtime/intl' -j '$(JOBS)'
4441
6f2f30424751 gettext: update to v0.19.8.1
John D
parents: 4384
diff changeset
34 $(MAKE) -C '$(1)/gettext-runtime/intl' -j 1 $(MXE_DISABLE_DOCS) install DESTDIR='$(3)'
129
9fb896207491 translated package: gettext
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
35 endef