wok-next diff etherboot/receipt @ rev 21080

Update tiff (4.0.10): libs -> into libtiff, apps -> into tiff
author Aleksej Bobylev <al.bobylev@gmail.com>
date Mon Dec 24 02:07:02 2018 +0200 (2018-12-24)
parents d6378d455338
children c4532c52f3a2
line diff
     1.1 --- a/etherboot/receipt	Thu May 10 21:12:00 2018 +0300
     1.2 +++ b/etherboot/receipt	Mon Dec 24 02:07:02 2018 +0200
     1.3 @@ -3,35 +3,33 @@
     1.4  PACKAGE="etherboot"
     1.5  VERSION="5.4.3"
     1.6  CATEGORY="system-tools"
     1.7 -SHORT_DESC="Ethernet bootloader for PXE and NBI images."
     1.8 +SHORT_DESC="Ethernet bootloader for PXE and NBI images"
     1.9  MAINTAINER="pascal.bellard@slitaz.org"
    1.10  LICENSE="GPL2"
    1.11 +WEB_SITE="http://etherboot.org/wiki/"
    1.12 +
    1.13  TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.14 -WEB_SITE="http://www.etherboot.org/"
    1.15  WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    1.16  
    1.17  BUILD_DEPENDS="perl gcc49"
    1.18  
    1.19 -# Rules to configure and make the package.
    1.20 -compile_rules()
    1.21 -{
    1.22 +compile_rules() {
    1.23  	cd $src/src
    1.24  	make CC=gcc-49 bin/etherboot-net.bzImage
    1.25  }
    1.26  
    1.27 -
    1.28 -# Rules to gen a SliTaz package suitable for Tazpkg.
    1.29 -genpkg_rules()
    1.30 -{
    1.31 +genpkg_rules() {
    1.32  	mkdir -p $fs/usr/share/boot
    1.33  	cp $src/src/bin/etherboot-net.bzImage $fs/usr/share/boot/etherboot
    1.34  }
    1.35  
    1.36 -# Pre and post install commands for Tazpkg.
    1.37 -post_install()
    1.38 -{
    1.39 -	echo "----"
    1.40 -	echo "You can create pxe/nbi boot floppy with:"
    1.41 -	echo "# cp /usr/share/boot/etherboot /dev/fd0"
    1.42 -	echo "----"
    1.43 +post_install() {
    1.44 +	[ -n "$quiet" ] || cat <<EOT
    1.45 +
    1.46 +	.------------------------------------------.
    1.47 +	| You can create pxe/nbi boot floppy with: |
    1.48 +	|                                          |
    1.49 +	| # cp /usr/share/boot/etherboot /dev/fd0  |
    1.50 +	'------------------------------------------'
    1.51 +EOT
    1.52  }