]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - lfs/gettext
Timectrl geschrieben.
[people/pmueller/ipfire-2.x.git] / lfs / gettext
1 ###############################################################################
2 # This file is part of the IPCop Firewall. #
3 # #
4 # IPCop is free software; you can redistribute it and/or modify #
5 # it under the terms of the GNU General Public License as published by #
6 # the Free Software Foundation; either version 2 of the License, or #
7 # (at your option) any later version. #
8 # #
9 # IPCop is distributed in the hope that it will be useful, #
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
12 # GNU General Public License for more details. #
13 # #
14 # You should have received a copy of the GNU General Public License #
15 # along with IPCop; if not, write to the Free Software #
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #
17 # #
18 # Makefiles are based on LFSMake, which is #
19 # Copyright (C) 2002 Rod Roard <rod@sunsetsystems.com> #
20 # #
21 ###############################################################################
22
23 ###############################################################################
24 # Definitions
25 ###############################################################################
26
27 include Config
28
29 VER = 0.14.5
30
31 THISAPP = gettext-$(VER)
32 DL_FILE = $(THISAPP).tar.gz
33 DL_FROM = $(URL_IPFIRE)
34 DIR_APP = $(DIR_SRC)/$(THISAPP)
35
36 # Normal build or /tools build.
37 #
38 ifeq "$(ROOT)" ""
39 ifeq "$(LFS_PASS)" "install"
40 TARGET = $(DIR_INFO)/$(THISAPP)-install
41 else
42 TARGET = $(DIR_INFO)/$(THISAPP)
43 EXTRA_CONFIG = --prefix=/usr --disable-nls
44 EXTRA_MAKE =
45 EXTRA_INSTALL =
46 endif
47 else
48 TARGET = $(DIR_INFO)/$(THISAPP)-tools
49 EXTRA_CONFIG = --prefix=/tools --disable-shared --disable-nls
50 EXTRA_MAKE =
51 EXTRA_INSTALL =
52 endif
53
54 ###############################################################################
55 # Top-level Rules
56 ###############################################################################
57
58 objects = $(DL_FILE)
59
60 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
61
62 $(DL_FILE)_MD5 = e2f6581626a22a0de66dce1d81d00de3
63
64 install : $(TARGET)
65
66 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
67
68 download :$(patsubst %,$(DIR_DL)/%,$(objects))
69
70 md5 : $(subst %,%_MD5,$(objects))
71
72 ###############################################################################
73 # Downloading, checking, md5sum
74 ###############################################################################
75
76 $(patsubst %,$(DIR_CHK)/%,$(objects)) :
77 @$(CHECK)
78
79 $(patsubst %,$(DIR_DL)/%,$(objects)) :
80 @$(LOAD)
81
82 $(subst %,%_MD5,$(objects)) :
83 @$(MD5)
84
85 ###############################################################################
86 # Installation Details
87 ###############################################################################
88
89 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
90 @$(PREBUILD)
91 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
92 ifeq "$(ROOT)" ""
93 ifeq "$(LFS_PASS)" "install"
94 cd $(DIR_APP) && ./configure --prefix=/ --libdir=/lib \
95 --with-included-gettext --disable-rpath \
96 --enable-relocatable --disable-shared
97 cd $(DIR_APP)/gettext-runtime && make CFLAGS="-Os -fomit-frame-pointer" -C intl/
98 cd $(DIR_APP)/gettext-runtime && make CFLAGS="-Os -fomit-frame-pointer" \
99 DESTDIR=/opt/$(MACHINE)-uClibc -C intl/ install
100 else
101 cd $(DIR_APP) && ./configure $(EXTRA_CONFIG)
102 cd $(DIR_APP) && make $(EXTRA_MAKE)
103 cd $(DIR_APP) && make $(EXTRA_INSTALL) install
104 endif
105 else
106 cd $(DIR_APP)/gettext-tools && ./configure $(EXTRA_CONFIG)
107 cd $(DIR_APP)/gettext-tools && make -C lib
108 cd $(DIR_APP)/gettext-tools && make -C src msgfmt
109 cd $(DIR_APP)/gettext-tools && cp -v src/msgfmt /tools/bin
110 endif
111 @rm -rf $(DIR_APP)
112 @$(POSTBUILD)