wok-6.x rev 15239
cssc: remove wrong error trigger
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Sep 23 12:20:26 2013 +0000 (2013-09-23) |
parents | b886a2277bd3 |
children | d959bccca2a9 |
files | cssc/receipt dvgrab/receipt sed/receipt |
line diff
1.1 --- a/cssc/receipt Mon Sep 23 11:54:22 2013 +0000 1.2 +++ b/cssc/receipt Mon Sep 23 12:20:26 2013 +0000 1.3 @@ -5,29 +5,31 @@ 1.4 CATEGORY="development" 1.5 SHORT_DESC="GNU compatibly stupid source control : SCCS." 1.6 MAINTAINER="pascal.bellard@slitaz.org" 1.7 +LICENSE="GPL3" 1.8 SOURCE="CSSC" 1.9 TARBALL="$SOURCE-$VERSION.tar.gz" 1.10 WEB_SITE="http://www.gnu.org/software/cssc/" 1.11 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" 1.12 +TAGS="rcs sccs version-control versioning" 1.13 + 1.14 DEPENDS="gcc-lib-base" 1.15 -TAGS="rcs sccs version-control versioning" 1.16 1.17 # Rules to configure and make the package. 1.18 compile_rules() 1.19 { 1.20 cd $src 1.21 ./configure --prefix=/usr --infodir=/usr/share/info \ 1.22 - --libexecdir=/usr/lib/$PACKAGE \ 1.23 - --mandir=/usr/share/man \ 1.24 - $CONFIGURE_ARGS && 1.25 - make && 1.26 - make DESTDIR=$PWD/_pkg install 1.27 + --libexecdir=/usr/lib/$PACKAGE \ 1.28 + --mandir=/usr/share/man \ 1.29 + $CONFIGURE_ARGS && 1.30 + make 2>&1 | grep -v "ERROR''@|" && 1.31 + make DESTDIR=$DESTDIR install 1.32 } 1.33 1.34 # Rules to gen a SliTaz package suitable for Tazpkg. 1.35 genpkg_rules() 1.36 { 1.37 mkdir -p $fs/usr 1.38 - cp -a $_pkg/usr/bin $fs/usr 1.39 - cp -a $_pkg/usr/lib $fs/usr 1.40 + cp -a $install/usr/bin $fs/usr 1.41 + cp -a $install/usr/lib $fs/usr 1.42 }
2.1 --- a/dvgrab/receipt Mon Sep 23 11:54:22 2013 +0000 2.2 +++ b/dvgrab/receipt Mon Sep 23 12:20:26 2013 +0000 2.3 @@ -4,26 +4,29 @@ 2.4 VERSION="3.5" 2.5 CATEGORY="multimedia" 2.6 MAINTAINER="jozee@slitaz.org" 2.7 +LICENSE="GPL2" 2.8 SHORT_DESC="Saves audio and video data from an IEEE (FireWire) digital source" 2.9 WEB_SITE="http://www.kinodv.org" 2.10 -DEPENDS="libdv libavc1394 jpeg libiec61883 gcc-lib-base" 2.11 -BUILD_DEPENDS="pkg-config libdv-dev libraw1394-dev libavc1394-dev libiec61883-dev" 2.12 TARBALL="$PACKAGE-$VERSION.tar.gz" 2.13 WGET_URL="http://downloads.sourceforge.net/kino/$TARBALL" 2.14 TAGS="firewire video" 2.15 2.16 +DEPENDS="libdv libavc1394 jpeg libiec61883 gcc-lib-base" 2.17 +BUILD_DEPENDS="pkg-config libdv-dev libraw1394-dev libavc1394-dev libiec61883-dev" 2.18 + 2.19 # Rules to configure and make the package. 2.20 2.21 -compile_rules() { 2.22 - cd $src 2.23 - ./configure --prefix=/usr && 2.24 - make && 2.25 - make DESTDIR=$PWD/_pkg install 2.26 +compile_rules() 2.27 +{ 2.28 + cd $src 2.29 + ./configure --prefix=/usr && 2.30 + make && 2.31 + make DESTDIR=$DESTDIR install 2.32 } 2.33 2.34 # Rules to gen a SliTaz package suitable for Tazpkg. 2.35 genpkg_rules() 2.36 { 2.37 mkdir -p $fs/usr 2.38 - cp -a $_pkg/usr/bin $fs/usr 2.39 + cp -a $install/usr/bin $fs/usr 2.40 }
3.1 --- a/sed/receipt Mon Sep 23 11:54:22 2013 +0000 3.2 +++ b/sed/receipt Mon Sep 23 12:20:26 2013 +0000 3.3 @@ -21,7 +21,7 @@ 3.4 --infodir=/usr/share/info \ 3.5 --mandir=/usr/share/man \ 3.6 $CONFIGURE_ARGS && 3.7 - make $MAKEFLAGS 2>&1 | grep -v "ERROR''@[" && 3.8 + make $MAKEFLAGS 2>&1 | grep -v "ERROR''@|" && 3.9 make DESTDIR=$DESTDIR install 3.10 } 3.11