]> git.ipfire.org Git - ipfire-2.x.git/blob - lfs/kbd
Source-Links gefixt.
[ipfire-2.x.git] / lfs / kbd
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 = 1.12
30
31 THISAPP = kbd-$(VER)
32 DL_FILE = $(THISAPP).tar.bz2
33 DL_FROM = $(URL_IPFIRE)
34 DIR_APP = $(DIR_SRC)/$(THISAPP)
35 ifeq "$(LFS_PASS)" "install"
36 TARGET = $(DIR_INFO)/$(THISAPP)-install
37 else
38 TARGET = $(DIR_INFO)/$(THISAPP)
39 endif
40
41 ###############################################################################
42 # Top-level Rules
43 ###############################################################################
44 objects = $(DL_FILE) $(THISAPP)-more-programs-1.patch
45
46 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
47 $(THISAPP)-more-programs-1.patch = $(DL_FROM)/kbd-$(VER)-more-programs-1.patch
48
49 $(DL_FILE)_MD5 = 069d1175b4891343b107a8ac2b4a39f6
50 $(THISAPP)-more-programs-1.patch_MD5 = dc70180a6bc0afa2b741cd38e3cc2e18
51
52 install : $(TARGET)
53
54 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
55
56 download :$(patsubst %,$(DIR_DL)/%,$(objects))
57
58 md5 : $(subst %,%_MD5,$(objects))
59
60 ###############################################################################
61 # Downloading, checking, md5sum
62 ###############################################################################
63
64 $(patsubst %,$(DIR_CHK)/%,$(objects)) :
65 @$(CHECK)
66
67 $(patsubst %,$(DIR_DL)/%,$(objects)) :
68 @$(LOAD)
69
70 $(subst %,%_MD5,$(objects)) :
71 @$(MD5)
72
73 ###############################################################################
74 # Installation Details
75 ###############################################################################
76
77 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
78 @$(PREBUILD)
79 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
80 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/$(THISAPP)-more-programs-1.patch
81 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/$(THISAPP)-backspace-1.patch
82 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/$(THISAPP)-gcc4_fixes-1.patch
83 ifeq "$(LFS_PASS)" "install"
84 cd $(DIR_APP) && CFLAGS="-Os -fomit-frame-pointer" ./configure --disable-nls
85 cd $(DIR_APP)/src && make CFLAGS="-Os -fomit-frame-pointer" DATA_DIR=/lib/kbd BINDIR=/bin setfont kbd_mode dumpkeys loadkeys loadunimap showconsolefont
86 cd $(DIR_APP)/src && install -m 0755 setfont loadunimap kbd_mode dumpkeys loadkeys showconsolefont unicode_start unicode_stop /install/initrd/bin
87 mkdir -p /install/initrd/lib/kbd/consolefonts
88 cd $(DIR_APP) && install -m 0644 data/consolefonts/lat0-16.psfu /install/initrd/lib/kbd/consolefonts
89 cd $(DIR_APP) && install -m 0644 data/consolefonts/lat1-16.psfu /install/initrd/lib/kbd/consolefonts
90 cd $(DIR_APP) && install -m 0644 data/consolefonts/lat2-16.psfu /install/initrd/lib/kbd/consolefonts
91 cd $(DIR_APP) && install -m 0644 data/consolefonts/lat5-16.psfu /install/initrd/lib/kbd/consolefonts
92 cd $(DIR_APP) && install -m 0644 data/consolefonts/iso07u-16.psfu /install/initrd/lib/kbd/consolefonts
93 else
94 cd $(DIR_APP) && ./configure --datadir=/lib/kbd --disable-nls
95 cd $(DIR_APP) && make $(MAKETUNING)
96 cd $(DIR_APP) && make install
97 mv -v /usr/bin/{kbd_mode,openvt,setfont} /bin
98 endif
99 @rm -rf $(DIR_APP)
100 @$(POSTBUILD)