]> git.ipfire.org Git - people/mfischer/ipfire-2.x.git/blob - lfs/gettext
Merge branch 'master' of ssh://people.ipfire.org/pub/git/ipfire-2.x
[people/mfischer/ipfire-2.x.git] / lfs / gettext
1 ###############################################################################
2 # #
3 # IPFire.org - A linux based firewall #
4 # Copyright (C) 2007-2024 IPFire Team <info@ipfire.org> #
5 # #
6 # This program is free software: you can redistribute it and/or modify #
7 # it under the terms of the GNU General Public License as published by #
8 # the Free Software Foundation, either version 3 of the License, or #
9 # (at your option) any later version. #
10 # #
11 # This program is distributed in the hope that it will be useful, #
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14 # GNU General Public License for more details. #
15 # #
16 # You should have received a copy of the GNU General Public License #
17 # along with this program. If not, see <http://www.gnu.org/licenses/>. #
18 # #
19 ###############################################################################
20
21 ###############################################################################
22 # Definitions
23 ###############################################################################
24
25 include Config
26
27 VER = 0.22.5
28
29 THISAPP = gettext-$(VER)
30 DL_FILE = $(THISAPP).tar.xz
31 DL_FROM = $(URL_IPFIRE)
32 DIR_APP = $(DIR_SRC)/$(THISAPP)
33
34 # Normal build or $(TOOLS_DIR) build.
35 #
36 ifeq "$(ROOT)" ""
37 TARGET = $(DIR_INFO)/$(THISAPP)
38 EXTRA_CONFIG = \
39 --prefix=/usr \
40 --disable-static \
41 --disable-nls
42 else
43 TARGET = $(DIR_INFO)/$(THISAPP)-tools
44 EXTRA_CONFIG = \
45 --prefix=$(TOOLS_DIR) \
46 --disable-shared \
47 --disable-nls \
48 --build=$(BUILDTARGET)
49 endif
50
51 ###############################################################################
52 # Top-level Rules
53 ###############################################################################
54
55 objects = $(DL_FILE)
56
57 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
58
59 $(DL_FILE)_BLAKE2 = 18c383518f5a78b5c04cf76de976524da2a87a892a30d6386778bb4c7dd526ffc3f14f484906c5d3a513b7caf76ea560e53962b325e552182d6940055d798f24
60
61 install : $(TARGET)
62
63 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
64
65 download :$(patsubst %,$(DIR_DL)/%,$(objects))
66
67 b2 : $(subst %,%_BLAKE2,$(objects))
68
69 ###############################################################################
70 # Downloading, checking, b2sum
71 ###############################################################################
72
73 $(patsubst %,$(DIR_CHK)/%,$(objects)) :
74 @$(CHECK)
75
76 $(patsubst %,$(DIR_DL)/%,$(objects)) :
77 @$(LOAD)
78
79 $(subst %,%_BLAKE2,$(objects)) :
80 @$(B2SUM)
81
82 ###############################################################################
83 # Installation Details
84 ###############################################################################
85
86 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
87 @$(PREBUILD)
88 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
89 $(UPDATE_AUTOMAKE)
90
91 cd $(DIR_APP) && ./configure $(EXTRA_CONFIG)
92 cd $(DIR_APP) && make $(MAKETUNING)
93
94 ifeq "$(TOOLCHAIN)" "1"
95 install -v -m 755 \
96 $(DIR_APP)/gettext-tools/src/msgfmt \
97 $(DIR_APP)/gettext-tools/src/msgmerge \
98 $(DIR_APP)/gettext-tools/src/xgettext \
99 $(TOOLS_DIR)/bin
100 else
101 cd $(DIR_APP) && make install
102 endif
103
104 @rm -rf $(DIR_APP)
105 @$(POSTBUILD)