wok view syslinux/receipt @ rev 12196

bluefish, libfm, obconf, pcmanfm, shared-mime-info, xournal, zim: fix update-mime-database post_install
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Mar 26 16:18:20 2012 +0200 (2012-03-26)
parents 204840df8a13
children d423bfd548e3
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/ifmem.c com32/modules
22 grep -q ifmem.c32 com32/modules/Makefile ||
23 sed -i 's/ifcpu64.c32/ifcpu64.c32 ifmem.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/reboot.c32 $fs/boot/isolinux
40 cp -a $src/com32/modules/ifmem.c32 $fs/boot/isolinux
41 cp -a $src/com32/menu/vesamenu.c32 $fs/boot/isolinux
42 cp -a $src/modules/poweroff.com $fs/boot/isolinux
43 # $stuff/isolinux.msg is the old way the have a splash image.
44 cp $stuff/*.cfg $stuff/*.txt $stuff/help.* $stuff/opts.* $fs/boot/isolinux
45 while read cfg kbd loc ; do
46 sed -e "s/^display/kbdmap $cfg.kbd\ndisplay/" \
47 -e "s/^label/say Now using $kbd keyboard and $loc locale.\nlabel/" \
48 -e "s/rootfs.gz/rootfs.gz lang=$loc kmap=$kbd/" \
49 < $fs/boot/isolinux/default.cfg > $fs/boot/isolinux/$cfg.cfg
50 cp $src/$kbd.kbd $fs/boot/isolinux/$cfg.kbd
51 cat >> $fs/boot/isolinux/common.cfg <<EOT
52 label $cfg
53 config $cfg.cfg
54 EOT
55 done <<EOT
56 be be-latin1 fr_FR
57 br br-abnt2 pt_PT
58 ca cf fr_FR
59 de de-latin1 de_DE
60 de_CH de_CH-latin1 de_DE
61 en uk C
62 es es es_ES
63 fi fi-latin1 fi
64 fr fr-latin1 fr_FR
65 fr_CH fr_CH-latin1 fr_FR
66 hu hu hu
67 it it it_IT
68 jp jp106 jp_JP
69 pt pt-latin1 pt_PT
70 ru ru ru_RU
71 us us C
72 EOT
73 chown root.root $fs/boot/isolinux/*
74 }
76 # Pre and post install commands for Tazpkg.
77 post_install()
78 {
79 sed -i "s/XXXXXXXX/$(date +%Y%m%d)/" $1/boot/isolinux/isolinux.cfg
80 }