wok diff audit/receipt @ rev 23863

syslinux/isoboot.s: accept user args
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Jun 19 15:46:21 2020 +0000 (2020-06-19)
parents 483356497a25
children 9af0e03b8ad0
line diff
     1.1 --- a/audit/receipt	Sat Feb 09 11:30:07 2019 +0100
     1.2 +++ b/audit/receipt	Fri Jun 19 15:46:21 2020 +0000
     1.3 @@ -1,12 +1,12 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="audit"
     1.7 -VERSION="2.8.4"
     1.8 +VERSION="2.8.5"
     1.9  CATEGORY="misc"
    1.10  SHORT_DESC="System call auditing."
    1.11  MAINTAINER="pascal.bellard@slitaz.org"
    1.12  LICENSE="GPL2"
    1.13 -WEB_SITE="http://people.redhat.com/sgrubb/audit/"
    1.14 +WEB_SITE="https://people.redhat.com/sgrubb/audit/"
    1.15  
    1.16  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.17  WGET_URL="${WEB_SITE}$TARBALL"
    1.18 @@ -17,15 +17,15 @@
    1.19  # Rules to configure and make the package.
    1.20  compile_rules()
    1.21  {
    1.22 -	./configure \
    1.23 -		--prefix=/usr \
    1.24 -		--sysconfdir=/etc \
    1.25 -		--mandir=/usr/share/man \
    1.26 -		--localstatedir=/var \
    1.27 -		--sbindir=/sbin \
    1.28 -		--with-libcap-ng=no \
    1.29 -		--without-python \
    1.30 -	$CONFIGURE_ARGS &&
    1.31 +	./configure			\
    1.32 +		--prefix=/usr		\
    1.33 +		--sysconfdir=/etc	\
    1.34 +		--mandir=/usr/share/man	\
    1.35 +		--localstatedir=/var	\
    1.36 +		--sbindir=/sbin		\
    1.37 +		--with-libcap-ng=no	\
    1.38 +		--without-python	\
    1.39 +		$CONFIGURE_ARGS &&
    1.40  	make &&
    1.41  	make DESTDIR=$DESTDIR install
    1.42  }
    1.43 @@ -34,9 +34,10 @@
    1.44  genpkg_rules()
    1.45  {
    1.46  	mkdir -p $fs/usr/lib
    1.47 -	cp -a $install/sbin $fs/
    1.48 -	cp -a $install/usr/bin $fs/usr
    1.49 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.50 -	cp -a $install/etc $fs/
    1.51 -	chown -R root.root $fs/etc
    1.52 +
    1.53 +	cp -a $install/sbin		$fs/
    1.54 +	cp -a $install/usr/bin		$fs/usr
    1.55 +	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    1.56 +	cp -a $install/etc		$fs/
    1.57 +	chown -R root.root		$fs/etc
    1.58  }