wok-next diff sudo/receipt @ rev 19700

unionfs-fuse: do not define function twice
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Apr 26 10:36:51 2017 +0200 (2017-04-26)
parents 5d48570cca72
children 9278a60d6895
line diff
     1.1 --- a/sudo/receipt	Fri Mar 17 16:21:35 2017 +0200
     1.2 +++ b/sudo/receipt	Wed Apr 26 10:36:51 2017 +0200
     1.3 @@ -6,12 +6,14 @@
     1.4  SHORT_DESC="Sudo (su \"do\") allows a system administrator to delegate authority."
     1.5  MAINTAINER="erjo@slitaz.org"
     1.6  LICENSE="ISC"
     1.7 -TARBALL="$PACKAGE-$VERSION.tar.gz"
     1.8  WEB_SITE="http://www.gratisoft.us/sudo/"
     1.9 -WGET_URL="http://www.gratisoft.us/sudo/dist/$TARBALL"
    1.10  CONFIG_FILES="/etc/sudoers"
    1.11  
    1.12 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.13 +WGET_URL="http://www.gratisoft.us/sudo/dist/$TARBALL"
    1.14 +
    1.15  BUILD_DEPENDS="gettext"
    1.16 +SIBLINGS="sudo-pam"
    1.17  
    1.18  # Rules to configure and make the package.
    1.19  compile_rules()
    1.20 @@ -20,14 +22,13 @@
    1.21  	patch -p1 -i $stuff/sr.po.patch
    1.22  	msgfmt $src/plugins/sudoers/po/sr.po -o $src/plugins/sudoers/po/sr.mo
    1.23  
    1.24 -	./configure --sysconfdir=/etc \
    1.25 -	--without-pam \
    1.26 -	--with-editor=/bin/vi \
    1.27 -	--libexecdir=/usr/lib \
    1.28 -	$CONFIGURE_ARGS &&
    1.29 -	# Build everything
    1.30 +	./configure \
    1.31 +		--sysconfdir=/etc \
    1.32 +		--without-pam \
    1.33 +		--with-editor=/bin/vi \
    1.34 +		--libexecdir=/usr/lib \
    1.35 +		$CONFIGURE_ARGS &&
    1.36  	make &&
    1.37 -	# Install everything
    1.38  	make install
    1.39  }
    1.40