annotate src/gettext.mk @ 3883:91d78fc00cc8

gettext: update to v0.19.4 * src/gettext.mk: update version, checksum
author John Donoghue
date Mon, 06 Apr 2015 07:31:24 -0400
parents 99d5080d06a2
children 3bdf8d6defe1
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 :=
3883
91d78fc00cc8 gettext: update to v0.19.4
John Donoghue
parents: 3669
diff changeset
6 $(PKG)_VERSION := 0.19.4
91d78fc00cc8 gettext: update to v0.19.4
John Donoghue
parents: 3669
diff changeset
7 $(PKG)_CHECKSUM := c473f4f268501d971b913197fb07767e628644bb
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
2525
4d0f3a9da57e all packages: use $(WGET) portability variable
Tony Theodore <tonyt@logyst.com>
parents: 2365
diff changeset
14 $(WGET) -q -O- 'http://www.gnu.org/software/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' | \
231
fce7481d2b13 improved version update mechanism (make update) of package gettext
Volker Grabsch <vog@notjusthosting.com>
parents: 188
diff changeset
17 head -1
129
9fb896207491 translated package: gettext
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
18 endef
9fb896207491 translated package: gettext
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
19
9fb896207491 translated package: gettext
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
20 define $(PKG)_BUILD
247
891180a1d143 build the gettext-tools in addition to the gettext-runtime
Volker Grabsch <vog@notjusthosting.com>
parents: 231
diff changeset
21 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
22 $(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
23 $(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
24 --prefix='$(HOST_PREFIX)' \
247
891180a1d143 build the gettext-tools in addition to the gettext-runtime
Volker Grabsch <vog@notjusthosting.com>
parents: 231
diff changeset
25 --enable-threads=win32 \
248
14320123cf11 fixed dependecies of gettext
Volker Grabsch <vog@notjusthosting.com>
parents: 247
diff changeset
26 --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
27 --without-libxml2-prefix \
3061
f8299bb6c872 Initial support for native MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
28 CONFIG_SHELL=$(SHELL) && $(CONFIGURE_POST_HOOK)
3620
5416bfbf1e48 gettext: build gettext-tools
John Donoghue <john.donoghue@ieee.org>
parents: 3616
diff changeset
29 $(MAKE) -C '$(1)/gettext-runtime' -j '$(JOBS)'
5416bfbf1e48 gettext: build gettext-tools
John Donoghue <john.donoghue@ieee.org>
parents: 3616
diff changeset
30 $(MAKE) -C '$(1)/gettext-runtime' -j 1 install DESTDIR='$(3)'
3285
67bcfe6539c7 [MSVC] update gettext compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3263
diff changeset
31
3620
5416bfbf1e48 gettext: build gettext-tools
John Donoghue <john.donoghue@ieee.org>
parents: 3616
diff changeset
32 cd '$(1)/gettext-tools' && ./configure \
5416bfbf1e48 gettext: build gettext-tools
John Donoghue <john.donoghue@ieee.org>
parents: 3616
diff changeset
33 $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \
5416bfbf1e48 gettext: build gettext-tools
John Donoghue <john.donoghue@ieee.org>
parents: 3616
diff changeset
34 $(ENABLE_SHARED_OR_STATIC) \
5416bfbf1e48 gettext: build gettext-tools
John Donoghue <john.donoghue@ieee.org>
parents: 3616
diff changeset
35 --prefix='$(HOST_PREFIX)' \
5416bfbf1e48 gettext: build gettext-tools
John Donoghue <john.donoghue@ieee.org>
parents: 3616
diff changeset
36 --enable-threads=win32 \
5416bfbf1e48 gettext: build gettext-tools
John Donoghue <john.donoghue@ieee.org>
parents: 3616
diff changeset
37 --without-libexpat-prefix \
5416bfbf1e48 gettext: build gettext-tools
John Donoghue <john.donoghue@ieee.org>
parents: 3616
diff changeset
38 --without-libxml2-prefix \
5416bfbf1e48 gettext: build gettext-tools
John Donoghue <john.donoghue@ieee.org>
parents: 3616
diff changeset
39 $(if $(filter msvc,$(MXE_SYSTEM)),ac_cv_func_memset=yes) \
5416bfbf1e48 gettext: build gettext-tools
John Donoghue <john.donoghue@ieee.org>
parents: 3616
diff changeset
40 CONFIG_SHELL=$(SHELL) && $(CONFIGURE_POST_HOOK)
5416bfbf1e48 gettext: build gettext-tools
John Donoghue <john.donoghue@ieee.org>
parents: 3616
diff changeset
41 $(MAKE) -C '$(1)/gettext-tools' -j '$(JOBS)'
3669
99d5080d06a2 gettext: dont install bin_PROGRAMS from gettext-tools
John Donoghue
parents: 3620
diff changeset
42 $(MAKE) -C '$(1)/gettext-tools' -j 1 install DESTDIR='$(3)' bin_PROGRAMS=
129
9fb896207491 translated package: gettext
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
43 endef