wok view syslinux/receipt @ rev 12273

syslinux: merge md5sum, ifmem, reboot & poweroff modules
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Apr 14 11:50:03 2012 +0200 (2012-04-14)
parents d423bfd548e3
children 02a3222651d5
line source
1 # SliTaz package receipt.
3 PACKAGE="syslinux"
4 VERSION="4.05"
5 CATEGORY="base-system"
6 SHORT_DESC="LiveCD ISO bootloader (isolinux)"
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.xz"
9 WEB_SITE="http://syslinux.zytor.com/"
10 WGET_URL="ftp://ftp.kernel.org/pub/linux/utils/boot/syslinux/$TARBALL"
11 BUILD_DEPENDS="kbd-base perl nasm"
12 DEPENDS="gpxe"
13 CONFIG_FILES="/boot/isolinux"
15 # Rules to gen a SliTaz package suitable for Tazpkg.
16 compile_rules()
17 {
18 cd $src
19 cp $stuff/tools/isohybrid.sh .
20 cp $stuff/tools/keytab-lilo.pl .
21 cp $stuff/extra/md5sum.c com32/modules
22 grep -q md5sum.c32 com32/modules/Makefile ||
23 sed -i 's/ifcpu64.c32/ifcpu64.c32 md5sum.c32/' com32/modules/Makefile
24 make -C com32
25 ./isohybrid.sh --build
26 for i in /usr/share/kbd/keymaps/i386/*/*.map.gz; do
27 [ "$(basename $(dirname $i))" = "include" ] && continue
28 j=$(basename $i)
29 j=${j%.map.gz}.kbd
30 ./keytab-lilo.pl /usr/share/kbd/keymaps/i386/qwerty/us.map.gz $i > $j
31 done
32 }
34 # Rules to gen a SliTaz package suitable for Tazpkg.
35 genpkg_rules()
36 {
37 mkdir -p $fs/boot/isolinux
38 cp -a $src/core/isolinux.bin $fs/boot/isolinux
39 cp -a $src/com32/modules/md5sum.c32 $fs/boot/isolinux
40 cp -a $src/com32/menu/vesamenu.c32 $fs/boot/isolinux
41 # $stuff/isolinux.msg is the old way the have a splash image.
42 cp $stuff/*.cfg $stuff/*.txt $stuff/help.* $stuff/opts.* $fs/boot/isolinux
43 while read cfg kbd loc ; do
44 sed -e "s/^display/kbdmap $cfg.kbd\ndisplay/" \
45 -e "s/^label/say Now using $kbd keyboard and $loc locale.\nlabel/" \
46 -e "s/rootfs.gz/rootfs.gz lang=$loc kmap=$kbd/" \
47 < $fs/boot/isolinux/default.cfg > $fs/boot/isolinux/$cfg.cfg
48 cp $src/$kbd.kbd $fs/boot/isolinux/$cfg.kbd
49 cat >> $fs/boot/isolinux/common.cfg <<EOT
50 label $cfg
51 config $cfg.cfg
52 EOT
53 done <<EOT
54 be be-latin1 fr_FR
55 br br-abnt2 pt_PT
56 ca cf fr_FR
57 de de-latin1 de_DE
58 de_CH de_CH-latin1 de_DE
59 en uk C
60 es es es_ES
61 fi fi-latin1 fi
62 fr fr-latin1 fr_FR
63 fr_CH fr_CH-latin1 fr_FR
64 hu hu hu
65 it it it_IT
66 jp jp106 jp_JP
67 pt pt-latin1 pt_PT
68 ru ru ru_RU
69 us us C
70 EOT
71 chown root.root $fs/boot/isolinux/*
72 }
74 # Pre and post install commands for Tazpkg.
75 post_install()
76 {
77 sed -i "s/XXXXXXXX/$(date +%Y%m%d)/" $1/boot/isolinux/isolinux.cfg
78 for i in ifmem reboot poweroff; do
79 ln $fs/boot/isolinux/md5sum.c32 $fs/boot/isolinux/$i.c32
80 done
81 }