]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - lfs/kbd
Install-Initrd finalisiert..
[people/pmueller/ipfire-2.x.git] / lfs / kbd
CommitLineData
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
27include Config
28
29VER = 1.12
30
31THISAPP = kbd-$(VER)
32DL_FILE = $(THISAPP).tar.bz2
9b0ff0a0 33DL_FROM = $(URL_IPFIRE)
cd1a2927 34DIR_APP = $(DIR_SRC)/$(THISAPP)
0fbb45e9 35ifeq "$(LFS_PASS)" "install"
cd1a2927
MT
36 TARGET = $(DIR_INFO)/$(THISAPP)-install
37else
38 TARGET = $(DIR_INFO)/$(THISAPP)
39endif
40
41###############################################################################
42# Top-level Rules
43###############################################################################
44objects = $(DL_FILE) $(THISAPP)-more-programs-1.patch
45
46$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
47$(THISAPP)-more-programs-1.patch = $(URL_LFS)/kbd/$(THISAPP)-more_programs-1.patch
48
49$(DL_FILE)_MD5 = 069d1175b4891343b107a8ac2b4a39f6
50$(THISAPP)-more-programs-1.patch_MD5 = dc70180a6bc0afa2b741cd38e3cc2e18
51
52install : $(TARGET)
53
54check : $(patsubst %,$(DIR_CHK)/%,$(objects))
55
56download :$(patsubst %,$(DIR_DL)/%,$(objects))
57
58md5 : $(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)
01534297 80 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/$(THISAPP)-more-programs-1.patch
9b0ff0a0
MT
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
0fbb45e9 83ifeq "$(LFS_PASS)" "install"
01534297 84 cd $(DIR_APP) && CFLAGS="-Os -fomit-frame-pointer" ./configure --disable-nls
cd1a2927
MT
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
cd1a2927 93else
9b0ff0a0
MT
94 cd $(DIR_APP) && ./configure --datadir=/lib/kbd --disable-nls
95 cd $(DIR_APP) && make $(MAKETUNING)
cd1a2927 96 cd $(DIR_APP) && make install
9b0ff0a0 97 mv -v /usr/bin/{kbd_mode,openvt,setfont} /bin
cd1a2927
MT
98endif
99 @rm -rf $(DIR_APP)
100 @$(POSTBUILD)