wok annotate gpxe/receipt @ rev 1116

Add mcabber mcabber-help
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Jul 20 11:43:38 2008 +0000 (2008-07-20)
parents a28a18adeab4
children c135cd14d789
rev   line source
pascal@955 1 # SliTaz package receipt.
pascal@955 2
pascal@955 3 PACKAGE="gpxe"
pascal@955 4 VERSION="0.9.3"
pascal@955 5 CATEGORY="system-tools"
pascal@955 6 SHORT_DESC="Ethernet bootloader."
pascal@955 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@955 8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pascal@955 9 WEB_SITE="http://www.etherboot.org/"
pascal@955 10 WGET_URL="http://kernel.org/pub/software/utils/boot/$PACKAGE/$TARBALL"
pascal@955 11
pascal@955 12 # Rules to configure and make the package.
pascal@955 13 compile_rules()
pascal@955 14 {
pascal@955 15 cd $src/src
pascal@955 16 for i in prefix.u default_boot.u; do
pascal@955 17 patch -p2 < ../../stuff/$i || return 1
pascal@955 18 done
pascal@955 19 make bin/gpxe.lkrn bin/undionly.kpxe
pascal@955 20 }
pascal@955 21
pascal@955 22 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@955 23 genpkg_rules()
pascal@955 24 {
pascal@956 25 mkdir -p $fs/boot
pascal@956 26 cp $src/src/bin/gpxe.lkrn $fs/boot/gpxe
pascal@962 27 # install 127 bytes of forced url at offset 519
pascal@1006 28 echo -n "http://boot.slitaz.org/pxe/pxelinux.0" | cat - /dev/zero | \
pascal@962 29 dd bs=1 seek=519 count=127 conv=notrunc of=$fs/boot/gpxe
pascal@962 30 # Package all gpxe pkgs
pascal@962 31 for i in $(cd $WOK; ls -d gpxe-*)
pascal@962 32 do
pascal@962 33 tazwok genpkg $i
pascal@962 34 done
pascal@955 35 }