]>
Commit | Line | Data |
---|---|---|
cd1a2927 MT |
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 | # # | |
cd1a2927 MT |
21 | ############################################################################### |
22 | ||
23 | ############################################################################### | |
24 | # Definitions | |
25 | ############################################################################### | |
26 | ||
27 | include Config | |
28 | ||
dd714b8a | 29 | VER = 0.14.5 |
cd1a2927 MT |
30 | |
31 | THISAPP = gettext-$(VER) | |
32 | DL_FILE = $(THISAPP).tar.gz | |
dd714b8a | 33 | DL_FROM = $(URL_IPFIRE) |
cd1a2927 MT |
34 | DIR_APP = $(DIR_SRC)/$(THISAPP) |
35 | ||
36 | # Normal build or /tools build. | |
37 | # | |
38 | ifeq "$(ROOT)" "" | |
72d80898 MT |
39 | ifeq "$(LFS_PASS)" "install" |
40 | TARGET = $(DIR_INFO)/$(THISAPP)-install | |
41 | else | |
cd1a2927 MT |
42 | TARGET = $(DIR_INFO)/$(THISAPP) |
43 | EXTRA_CONFIG = --prefix=/usr --disable-nls | |
fcb5057d | 44 | EXTRA_MAKE = |
cd1a2927 | 45 | EXTRA_INSTALL = |
72d80898 | 46 | endif |
cd1a2927 MT |
47 | else |
48 | TARGET = $(DIR_INFO)/$(THISAPP)-tools | |
dd714b8a | 49 | EXTRA_CONFIG = --prefix=/tools --disable-shared --disable-nls |
cd1a2927 MT |
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 | ||
dd714b8a | 62 | $(DL_FILE)_MD5 = e2f6581626a22a0de66dce1d81d00de3 |
cd1a2927 MT |
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) | |
dd714b8a | 92 | ifeq "$(ROOT)" "" |
72d80898 MT |
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 | |
cd1a2927 | 101 | cd $(DIR_APP) && ./configure $(EXTRA_CONFIG) |
314d36f0 | 102 | cd $(DIR_APP) && make $(EXTRA_MAKE) |
cd1a2927 | 103 | cd $(DIR_APP) && make $(EXTRA_INSTALL) install |
72d80898 | 104 | endif |
dd714b8a MT |
105 | else |
106 | cd $(DIR_APP)/gettext-tools && ./configure $(EXTRA_CONFIG) | |
6d9d8b63 MT |
107 | cd $(DIR_APP)/gettext-tools && make -C lib |
108 | cd $(DIR_APP)/gettext-tools && make -C src msgfmt | |
dd714b8a MT |
109 | cd $(DIR_APP)/gettext-tools && cp -v src/msgfmt /tools/bin |
110 | endif | |
cd1a2927 MT |
111 | @rm -rf $(DIR_APP) |
112 | @$(POSTBUILD) |