wok diff tacacs+/receipt @ rev 15174
libwebkit: filter wrong error trigger
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Aug 16 09:39:42 2013 +0000 (2013-08-16) |
parents | 4897058add72 |
children | de49f29b101e |
line diff
1.1 --- a/tacacs+/receipt Sun Feb 28 17:49:32 2010 +0100 1.2 +++ b/tacacs+/receipt Fri Aug 16 09:39:42 2013 +0000 1.3 @@ -5,12 +5,13 @@ 1.4 CATEGORY="misc" 1.5 SHORT_DESC="authentication server for cisco devices" 1.6 MAINTAINER="allan316@gmail.com" 1.7 -DEPENDS="libwrap pam" 1.8 -BUILD_DEPENDS="libwrap-dev" 1.9 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.10 WEB_SITE="http://www.shrubbery.net" 1.11 WGET_URL="ftp://ftp.shrubbery.net/pub/tac_plus/$TARBALL" 1.12 1.13 +DEPENDS="libwrap pam" 1.14 +BUILD_DEPENDS="libwrap-dev pam-dev" 1.15 + 1.16 # Rules to configure and make the package. 1.17 compile_rules() 1.18 { 1.19 @@ -20,13 +21,13 @@ 1.20 --infodir=/usr/share/info \ 1.21 --mandir=/usr/share/man \ 1.22 $CONFIGURE_ARGS && 1.23 - make && make DESTDIR=$PWD/_pkg install 1.24 + make && make DESTDIR=$DESTDIR install 1.25 } 1.26 1.27 # Rules to gen a SliTaz package suitable for Tazpkg. 1.28 genpkg_rules() 1.29 { 1.30 mkdir -p $fs/usr 1.31 - cp -a $_pkg/usr/bin $fs/usr 1.32 + cp -a $install/usr/bin $fs/usr 1.33 } 1.34