wok diff balance/receipt @ rev 17017

fbvnc-auth: fix cross compilation
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Aug 13 14:10:10 2014 +0200 (2014-08-13)
parents 4ffc7c76d358
children d3eb5f4b53ea
line diff
     1.1 --- a/balance/receipt	Thu Jun 25 10:34:30 2009 +0000
     1.2 +++ b/balance/receipt	Wed Aug 13 14:10:10 2014 +0200
     1.3 @@ -5,6 +5,7 @@
     1.4  CATEGORY="system-tools"
     1.5  SHORT_DESC="Generic tcp proxy with round robin load balancing and failover."
     1.6  MAINTAINER="pascal.bellard@slitaz.org"
     1.7 +LICENSE="GPL2"
     1.8  TARBALL="$PACKAGE-$VERSION.tar.gz"
     1.9  WEB_SITE="http://www.inlab.de/balance.html"
    1.10  WGET_URL="http://www.inlab.de/balance-3.42.tar.gz"
    1.11 @@ -14,15 +15,15 @@
    1.12  compile_rules()
    1.13  {
    1.14  	cd $src
    1.15 -	mkdir -p _pkg/usr/sbin _pkg/usr/man/man1 2> /dev/null
    1.16 +	mkdir -p $DESTDIR/usr/sbin $DESTDIR/usr/man/man1 2> /dev/null
    1.17  	make &&
    1.18 -	make DESTDIR=$PWD/_pkg install
    1.19 +	make DESTDIR=$DESTDIR install
    1.20  }
    1.21  
    1.22  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.23  genpkg_rules()
    1.24  {
    1.25  	mkdir -p $fs/usr
    1.26 -	cp -a $_pkg/usr/sbin $fs/usr
    1.27 +	cp -a $install/usr/sbin $fs/usr
    1.28  }
    1.29