wok diff syslinux-modules/receipt @ rev 4353

Update: java-* - remove files that are already in dependent packages
author Matthew Sheets <rcx@zoominternet.net>
date Sat Oct 03 22:00:35 2009 +0000 (2009-10-03)
parents 76990ad741d7
children 480ee8596aea
line diff
     1.1 --- a/syslinux-modules/receipt	Sun Mar 01 10:56:19 2009 +0000
     1.2 +++ b/syslinux-modules/receipt	Sat Oct 03 22:00:35 2009 +0000
     1.3 @@ -1,9 +1,9 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="syslinux-modules"
     1.7 -VERSION="3.73"
     1.8 +VERSION="3.82"
     1.9  CATEGORY="system-tools"
    1.10 -SHORT_DESC="C32 modules for syslinux"
    1.11 +SHORT_DESC="modules for syslinux"
    1.12  MAINTAINER="pankso@slitaz.org"
    1.13  WANTED="syslinux"
    1.14  WEB_SITE="http://syslinux.zytor.com/"
    1.15 @@ -13,7 +13,16 @@
    1.16  genpkg_rules()
    1.17  {
    1.18      mkdir -p $fs/usr/share/boot
    1.19 -    for i in mboot sanboot chain elf reboot ifcpu64 linux sdi menu vesamenu; do
    1.20 -    	lzma e $src/com32/*/$i.c32 $fs/usr/share/boot/$i.c32.lzma 2> /dev/null
    1.21 +    for i in $src/com32/*/*.c32 ; do
    1.22 +	case "$i" in
    1.23 +	*/reboot.c32|*/ifmem.c32) continue;;
    1.24 +	esac
    1.25 +	lzma e $i $fs/usr/share/boot/$(basename $i).lzma 2> /dev/null
    1.26 +    done
    1.27 +    for i in $src/modules/*.com ; do
    1.28 +	case "$i" in
    1.29 +	*/poweroff.com) continue;;
    1.30 +	esac
    1.31 +	cp $i $fs/usr/share/boot/$(basename $i) 2> /dev/null
    1.32      done
    1.33  }