annotate src/gettext.mk @ 3293:cf6f40cededb

Support file list generation in packages. For the following modules: - arpack - blas - build-autoconf - build-automake - build-cmake - build-gperf - build-libtool - build-msvctools - build-pkg-config - build-texinfo - bzip2 - curl - dbus - expat - fftw - fltk - fontconfig - freetype - gettext - glpk - gmp - gnuplot - gnutls - graphicsmagick - hdf5 - jasper - jpeg - lapack - lcms - libgcrypt - libgpg_error - libiconv - libidn - libpng - libssh2 - libxml2 - ncurses - nettle - openssl - pcre - pstoedit - zlib - qhull - qrupdate - qscintilla - qt - readline - suitesparse - texinfo - tiff
author Michael Goffioul <michael.goffioul@gmail.com>
date Sat, 09 Nov 2013 23:28:04 -0500
parents 67bcfe6539c7
children 13be64f9f16d
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 :=
3263
d14aa99add06 new version of gettext
John W. Eaton <jwe@octave.org>
parents: 3081
diff changeset
6 $(PKG)_CHECKSUM := a32c19a6e39450748f6e56d2ac6b8b0966a5ab05
306
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 304
diff changeset
7 $(PKG)_SUBDIR := gettext-$($(PKG)_VERSION)
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 304
diff changeset
8 $(PKG)_FILE := gettext-$($(PKG)_VERSION).tar.gz
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 304
diff changeset
9 $(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
10 $(PKG)_DEPS := libiconv
129
9fb896207491 translated package: gettext
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
11
9fb896207491 translated package: gettext
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
12 define $(PKG)_UPDATE
2525
4d0f3a9da57e all packages: use $(WGET) portability variable
Tony Theodore <tonyt@logyst.com>
parents: 2365
diff changeset
13 $(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
14 grep 'gettext-' | \
129
9fb896207491 translated package: gettext
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
15 $(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
16 head -1
129
9fb896207491 translated package: gettext
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
17 endef
9fb896207491 translated package: gettext
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
18
9fb896207491 translated package: gettext
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
19 define $(PKG)_BUILD
247
891180a1d143 build the gettext-tools in addition to the gettext-runtime
Volker Grabsch <vog@notjusthosting.com>
parents: 231
diff changeset
20 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
21 $(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
22 $(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
23 --prefix='$(HOST_PREFIX)' \
247
891180a1d143 build the gettext-tools in addition to the gettext-runtime
Volker Grabsch <vog@notjusthosting.com>
parents: 231
diff changeset
24 --enable-threads=win32 \
248
14320123cf11 fixed dependecies of gettext
Volker Grabsch <vog@notjusthosting.com>
parents: 247
diff changeset
25 --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
26 --without-libxml2-prefix \
3061
f8299bb6c872 Initial support for native MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
27 CONFIG_SHELL=$(SHELL) && $(CONFIGURE_POST_HOOK)
3293
cf6f40cededb Support file list generation in packages.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3285
diff changeset
28 $(MAKE) -C '$(1)/gettext-runtime' -j '$(JOBS)' install DESTDIR='$(3)'
3285
67bcfe6539c7 [MSVC] update gettext compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3263
diff changeset
29
67bcfe6539c7 [MSVC] update gettext compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3263
diff changeset
30 $(if $(filter msvc,$(MXE_SYSTEM)),
67bcfe6539c7 [MSVC] update gettext compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3263
diff changeset
31 cd '$(1)/gettext-tools' && ./configure \
67bcfe6539c7 [MSVC] update gettext compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3263
diff changeset
32 $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \
67bcfe6539c7 [MSVC] update gettext compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3263
diff changeset
33 $(ENABLE_SHARED_OR_STATIC) \
67bcfe6539c7 [MSVC] update gettext compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3263
diff changeset
34 --prefix='$(HOST_PREFIX)' \
67bcfe6539c7 [MSVC] update gettext compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3263
diff changeset
35 --enable-threads=win32 \
67bcfe6539c7 [MSVC] update gettext compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3263
diff changeset
36 --without-libexpat-prefix \
67bcfe6539c7 [MSVC] update gettext compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3263
diff changeset
37 --without-libxml2-prefix \
67bcfe6539c7 [MSVC] update gettext compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3263
diff changeset
38 ac_cv_func_memset=yes \
67bcfe6539c7 [MSVC] update gettext compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3263
diff changeset
39 CONFIG_SHELL=$(SHELL) && $(CONFIGURE_POST_HOOK)
3293
cf6f40cededb Support file list generation in packages.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3285
diff changeset
40 $(MAKE) -C '$(1)/gettext-tools' -j '$(JOBS)' install DESTDIR='$(3)'
3285
67bcfe6539c7 [MSVC] update gettext compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3263
diff changeset
41 )
129
9fb896207491 translated package: gettext
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
42 endef