wok diff cvs/receipt @ rev 15659
c_icap: do not start daemon while cooking
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Dec 12 07:48:19 2013 +0000 (2013-12-12) |
parents | 02bbaa9d12ba |
children | 60d3db644e56 |
line diff
1.1 --- a/cvs/receipt Mon Apr 04 01:29:52 2011 +0200 1.2 +++ b/cvs/receipt Thu Dec 12 07:48:19 2013 +0000 1.3 @@ -5,12 +5,14 @@ 1.4 CATEGORY="development" 1.5 SHORT_DESC="Concurrent Versions System" 1.6 MAINTAINER="erjo@slitaz.org" 1.7 -DEPENDS="libcomerr libcomerr3 libcrypto libkrb5" 1.8 +LICENSE="GPL" 1.9 TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.10 WEB_SITE="http://ximbiot.com/cvs/" 1.11 WGET_URL=""http://ftp.gnu.org/non-gnu/cvs/source/stable/$VERSION/$TARBALL 1.12 TAGS="version-control versioning" 1.13 1.14 +DEPENDS="libcomerr libcomerr3 libcrypto libkrb5" 1.15 + 1.16 # Rules to configure and make the package. 1.17 compile_rules() 1.18 { 1.19 @@ -19,13 +21,13 @@ 1.20 --with-ssh \ 1.21 --mandir=/usr/share/man $CONFIGURE_ARGS && 1.22 make && 1.23 - make DESTDIR=$PWD/_pkg install 1.24 + 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/bin 1.31 - cp -a $_pkg/usr/bin/cvs* $fs/usr/bin 1.32 + cp -a $install/usr/bin/cvs* $fs/usr/bin 1.33 } 1.34