]> git.ipfire.org Git - people/arne_f/ipfire-3.x.git/blob - lfs/util-linux-ng
I forgot to change the stage name in the lfs-scripts.
[people/arne_f/ipfire-3.x.git] / lfs / util-linux-ng
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 = util-linux-ng
28 VER = 2.13.1
29
30 THISAPP = $(PKG_NAME)-$(VER)
31 DL_FILE = $(THISAPP).tar.bz2
32 DIR_APP = $(DIR_SRC)/$(THISAPP)
33
34 TARGET = $(DIR_INFO)/$(STAGE_ORDER)_$(STAGE)/$(THISAPP)
35
36 ###############################################################################
37 # Top-level Rules
38 ###############################################################################
39
40 objects = $(DL_FILE)
41
42 install : $(TARGET)
43
44 download :$(patsubst %,$(DIR_DL)/%,$(objects))
45
46 $(patsubst %,$(DIR_DL)/%,$(objects)) :
47 @$(LOAD)
48
49 ###############################################################################
50 # Installation Details
51 ###############################################################################
52
53 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
54 @$(PREBUILD)
55 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
56
57 ifeq "$(STAGE)" "toolchain"
58 cd $(DIR_APP) && ./configure --prefix=$(TOOLS_DIR)
59 cd $(DIR_APP) && make -C mount mount umount
60 cd $(DIR_APP) && make -C text-utils more
61 cd $(DIR_APP) && cp -v mount/{,u}mount text-utils/more $(TOOLS_DIR)/bin
62 endif
63
64 ifeq "$(STAGE)" "base"
65 cd $(DIR_APP) && sed -e 's@etc/adjtime@var/lib/hwclock/adjtime@g' \
66 -i $$(grep -rl '/etc/adjtime' .)
67 mkdir -pv /var/lib/hwclock
68 cd $(DIR_APP) && ./configure
69 cd $(DIR_APP) && make -j $(PARALLELISM)
70 cd $(DIR_APP) && make install
71 endif
72
73 ifeq "$(STAGE)" "installer"
74 cd $(DIR_APP) && ./configure --build=$(IFS_TARGET) \
75 --host=$(UCLIBC_TARGET)
76 cd $(DIR_APP) && make -C disk-utils mkswap -j $(PARALLELISM)
77 cd $(DIR_APP) && cp -vf disk-utils/mkswap $(UCLIBC_DIR)/sbin/mkswap
78 endif
79
80 @rm -rf $(DIR_APP)
81 @$(POSTBUILD)