wok diff nfs-utils/receipt @ rev 22061

sane-backends/sane.cgi: add range values
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Oct 24 17:12:11 2019 +0200 (2019-10-24)
parents 9e01bc6321ea
children 3f496ebee343
line diff
     1.1 --- a/nfs-utils/receipt	Sun Dec 20 15:13:45 2015 +0100
     1.2 +++ b/nfs-utils/receipt	Thu Oct 24 17:12:11 2019 +0200
     1.3 @@ -1,22 +1,24 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="nfs-utils"
     1.7 -VERSION="1.3.0"
     1.8 +VERSION="2.3.3"
     1.9  CATEGORY="system-tools"
    1.10 +TAGS="filesystem"
    1.11  SHORT_DESC="Network FileSystem tools."
    1.12  MAINTAINER="pascal.bellard@slitaz.org"
    1.13  LICENSE="GPL2"
    1.14 +WEB_SITE="http://nfs.sourceforge.net/"
    1.15 +
    1.16  TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.17 -WEB_SITE="http://nfs.sourceforge.net/"
    1.18  WGET_URL="$SF_MIRROR/nfs/$PACKAGE/$VERSION/$TARBALL"
    1.19 +
    1.20 +DEPENDS="libcap libtirpc libwrap rpcbind util-linux-blkid util-linux-uuid"
    1.21 +BUILD_DEPENDS="libcap-dev libtirpc-dev libwrap-dev util-linux-blkid \
    1.22 +	util-linux-blkid-dev util-linux-uuid-dev"
    1.23  CONFIG_FILES="/etc/exports"
    1.24 -TAGS="filesystem"
    1.25 +
    1.26  HOST_ARCH="i486 arm"
    1.27  
    1.28 -DEPENDS="libtirpc libwrap libcap util-linux-blkid util-linux-uuid rpcbind"
    1.29 -BUILD_DEPENDS="libtirpc-dev libcap-dev libwrap-dev util-linux-blkid-dev \
    1.30 -util-linux-uuid-dev util-linux-blkid"
    1.31 -
    1.32  # Handle SliTaz arch.
    1.33  case "$SLITAZ_ARCH" in
    1.34  	i?86) DEPENDS="$DEPENDS linux-nfsd" ;;
    1.35 @@ -33,21 +35,23 @@
    1.36  compile_rules()
    1.37  {
    1.38  	#sh autogen.sh
    1.39 -	./configure \
    1.40 -		--disable-nfsv4 \
    1.41 -		--disable-gss \
    1.42 +	./configure		\
    1.43 +		--disable-nfsv4	\
    1.44 +		--disable-gss	\
    1.45  		$CONFIGURE_ARGS ${ARCH_ARGS} &&
    1.46 -	make && make install
    1.47 +	make &&
    1.48 +	make install
    1.49  }
    1.50  
    1.51  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.52  genpkg_rules()
    1.53  {
    1.54  	mkdir -p $fs/usr
    1.55 -	cp -a stuff/* $fs
    1.56 -	cp -a $install/var $fs
    1.57 -	cp -a $install/sbin $fs
    1.58 -	cp -a $install/usr/sbin $fs/usr
    1.59 +
    1.60 +	cp -a stuff/*		$fs
    1.61 +	cp -a $install/var	$fs
    1.62 +	cp -a $install/sbin	$fs
    1.63 +	cp -a $install/usr/sbin	$fs/usr
    1.64  }
    1.65  
    1.66  post_install()