]> git.ipfire.org Git - ipfire-3.x.git/blob - lfs/module-init-tools
Renamed some fields...
[ipfire-3.x.git] / lfs / module-init-tools
1 ###############################################################################
2 # #
3 # IPFire.org - A linux based firewall #
4 # Copyright (C) 2007 Michael Tremer & Christian Schmidt #
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 PKG_NAME = module-init-tools
28 PKG_VER = 3.5
29
30 THISAPP = $(PKG_NAME)-$(PKG_VER)
31 DL_FILE = $(THISAPP).tar.bz2
32 DIR_APP = $(DIR_SRC)/$(THISAPP)
33
34 OBJECT = $(DIR_INFO)/$(STAGE_ORDER)_$(STAGE)/$(THISAPP)
35
36 ###############################################################################
37 # Top-level Rules
38 ###############################################################################
39
40 objects = $(DL_FILE) \
41 $(THISAPP)-nostatic-1.patch
42
43 install : $(OBJECT)
44
45 download : $(objects)
46
47 $(objects) :
48 @$(LOAD)
49
50 ###############################################################################
51 # Installation Details
52 ###############################################################################
53
54 $(OBJECT) :
55 @$(PREBUILD)
56 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
57 cd $(DIR_APP) && patch -Np1 -i $(DIR_PATCHES)/$(THISAPP)-nostatic-1.patch
58 cd $(DIR_APP) && autoreconf --force
59 cd $(DIR_APP) && \
60 ./configure \
61 $(CONFIGURE_ARCH) \
62 --prefix=/ \
63 --mandir=/usr/share/man \
64 --enable-zlib
65 cd $(DIR_APP) && make $(PARALLELISMFLAGS)
66 cd $(DIR_APP) && make INSTALL=install install
67 @rm -rf $(DIR_APP)
68 @$(POSTBUILD)