wok rev 1516

Update some BUILD_DEPENDS
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Oct 07 11:12:02 2008 +0000 (2008-10-07)
parents cf51118bf9bd
children 281dd3cfcb05
files beecrypt/receipt freeglut/receipt gogglesmm/receipt gpa/receipt lighttpd/receipt mesa/receipt mjpegtools/receipt mrxvt/receipt rage/receipt xine-lib/receipt xine-ui/receipt xsane/receipt
line diff
     1.1 --- a/beecrypt/receipt	Mon Oct 06 19:25:40 2008 +0000
     1.2 +++ b/beecrypt/receipt	Tue Oct 07 11:12:02 2008 +0000
     1.3 @@ -9,16 +9,14 @@
     1.4  BUILD_DEPENDS="python-dev"
     1.5  TARBALL="$PACKAGE-$VERSION.tar.gz"
     1.6  WEB_SITE="http://beecrypt.sourceforge.net/"
     1.7 -WGET_URL="http://switch.dl.sourceforge.net/sourceforge/beecrypt/$TARBALL
     1.8 - http://mesh.dl.sourceforge.net/sourceforge/beecrypt/$TARBALL
     1.9 - http://garr.dl.sourceforge.net/sourceforge/beecrypt/$TARBALL"
    1.10 +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    1.11  
    1.12  # Rules to configure and make the package.
    1.13  compile_rules()
    1.14  {
    1.15  	cd $src
    1.16 -	./configure --prefix=/usr $CONFIGURE_ARGS
    1.17 -	make
    1.18 +	./configure --prefix=/usr $CONFIGURE_ARGS &&
    1.19 +	make &&
    1.20  	make DESTDIR=$PWD/_pkg install
    1.21  }
    1.22  
     2.1 --- a/freeglut/receipt	Mon Oct 06 19:25:40 2008 +0000
     2.2 +++ b/freeglut/receipt	Tue Oct 07 11:12:02 2008 +0000
     2.3 @@ -12,8 +12,8 @@
     2.4  # DEPENDS does not include mesa because libGL
     2.5  # might already be provided by a driver, and we do
     2.6  # not want mesa to clobber libGL
     2.7 -DEPENDS="xorg"
     2.8 -BUILD_DEPENDS="xorg-dev xorg-dev-proto mesa-dev"
     2.9 +DEPENDS="xorg mesa"
    2.10 +BUILD_DEPENDS="xorg-dev xorg-dev-proto mesa-dev mesa"
    2.11  
    2.12  # Rules to configure and make the package.
    2.13  compile_rules()
     3.1 --- a/gogglesmm/receipt	Mon Oct 06 19:25:40 2008 +0000
     3.2 +++ b/gogglesmm/receipt	Tue Oct 07 11:12:02 2008 +0000
     3.3 @@ -14,7 +14,7 @@
     3.4  DEPENDS="libfox xine-lib sqlite libtag libpng jpeg "
     3.5  
     3.6  # When compiling, it needs the main packages too.
     3.7 -BUILD_DEPENDS="libfox xine-lib sqlite libtag 
     3.8 +BUILD_DEPENDS="libfox libfox-utils xine-lib sqlite libtag 
     3.9  libfox-dev xine-lib-dev sqlite-dev libtag-dev "
    3.10  
    3.11  # Rules to configure and make the package. 
    3.12 @@ -25,8 +25,8 @@
    3.13  		--prefix=/usr \
    3.14  		--mandir=/usr/share/man \
    3.15  		--infodir=/usr/share/info \
    3.16 -		$CONFIGURE_ARGS
    3.17 -	make
    3.18 +		$CONFIGURE_ARGS &&
    3.19 +	make &&
    3.20  	make DESTDIR=$PWD/_pkg install
    3.21  }
    3.22  
     4.1 --- a/gpa/receipt	Mon Oct 06 19:25:40 2008 +0000
     4.2 +++ b/gpa/receipt	Tue Oct 07 11:12:02 2008 +0000
     4.3 @@ -6,7 +6,7 @@
     4.4  SHORT_DESC="Gnu Privacy Assistant"
     4.5  MAINTAINER="erjo@slitaz.org"
     4.6  DEPENDS="gnupg gpgme libgpg-error gtk+"
     4.7 -BUILD_DEPENDS="gpgme-dev libgpg-error-dev"
     4.8 +BUILD_DEPENDS="gpgme-dev libgpg-error-dev gnupg"
     4.9  TARBALL="$PACKAGE-$VERSION.tar.bz2"
    4.10  WEB_SITE="http://www.gnupg.org/"
    4.11  WGET_URL="ftp://ftp.gnupg.org/gcrypt/alpha/gpa/$TARBALL"
     5.1 --- a/lighttpd/receipt	Mon Oct 06 19:25:40 2008 +0000
     5.2 +++ b/lighttpd/receipt	Tue Oct 07 11:12:02 2008 +0000
     5.3 @@ -29,15 +29,18 @@
     5.4  compile_rules()
     5.5  {
     5.6  	cd $src
     5.7 -	patch -i ../stuff/fastcgi_detach.patch || exit 1
     5.8 +	if [ ! done.fastcgi_detach.patch ]; then
     5.9 +		patch -i ../stuff/fastcgi_detach.patch || exit 1
    5.10 +		touch done.fastcgi_detach.patch
    5.11 +	fi
    5.12  	./configure \
    5.13  		--enable-shared \
    5.14  		--disable-ipv6 \
    5.15  		--prefix=/usr \
    5.16      	--libdir=/usr/lib/lighttpd \
    5.17      	--mandir=/usr/share/man \
    5.18 -    	$CONFIGURE_ARGS
    5.19 -	make
    5.20 +    	$CONFIGURE_ARGS &&
    5.21 +	make &&
    5.22  	make DESTDIR=$PWD/_pkg install
    5.23  }
    5.24  
     6.1 --- a/mesa/receipt	Mon Oct 06 19:25:40 2008 +0000
     6.2 +++ b/mesa/receipt	Tue Oct 07 11:12:02 2008 +0000
     6.3 @@ -17,7 +17,7 @@
     6.4  { 
     6.5  	ln -s $src $PACKAGE-$VERSION
     6.6  	cd $src
     6.7 -	make realclean
     6.8 +	#make realclean
     6.9  	make linux-x86 &&
    6.10  	make DESTDIR=$PWD/_pkg install
    6.11  }
     7.1 --- a/mjpegtools/receipt	Mon Oct 06 19:25:40 2008 +0000
     7.2 +++ b/mjpegtools/receipt	Tue Oct 07 11:12:02 2008 +0000
     7.3 @@ -6,7 +6,7 @@
     7.4  SHORT_DESC="MPEG manipulation tools."
     7.5  MAINTAINER="pankso@slitaz.org"
     7.6  DEPENDS="libdv"
     7.7 -BUILD_DEPENDS="libdv-dev libdv"
     7.8 +BUILD_DEPENDS="libdv-dev libdv libsdl-gfx"
     7.9  TARBALL="$PACKAGE-$VERSION.tar.gz"
    7.10  WEB_SITE="http://mjpeg.sourceforge.net/"
    7.11  WGET_URL="$SF_MIRROR/mjpeg/$TARBALL"
     8.1 --- a/mrxvt/receipt	Mon Oct 06 19:25:40 2008 +0000
     8.2 +++ b/mrxvt/receipt	Tue Oct 07 11:12:02 2008 +0000
     8.3 @@ -21,8 +21,8 @@
     8.4  		--mandir=/usr/share/man \
     8.5  		--enable-xft \
     8.6  		--enable-menubar \
     8.7 -		$CONFIGURE_ARGS
     8.8 -	make
     8.9 +		$CONFIGURE_ARGS &&
    8.10 +	make &&
    8.11  	make DESTDIR=$PWD/_pkg install
    8.12  }
    8.13  
     9.1 --- a/rage/receipt	Mon Oct 06 19:25:40 2008 +0000
     9.2 +++ b/rage/receipt	Tue Oct 07 11:12:02 2008 +0000
     9.3 @@ -6,7 +6,7 @@
     9.4  SHORT_DESC="E17 rage media center."
     9.5  MAINTAINER="pankso@slitaz.org"
     9.6  DEPENDS="enlightenment emotion"
     9.7 -BUILD_DEPENDS="eet-dev evas-dev ecore-dev embryo-dev edje-dev emotion-dev"
     9.8 +BUILD_DEPENDS="eet-dev evas-dev ecore-dev embryo-dev edje-dev emotion-dev emotion"
     9.9  TARBALL="$PACKAGE-$VERSION.tar.gz"
    9.10  WEB_SITE="http://www.enlightenment.org/"
    9.11  WGET_URL="http://download.enlightenment.org/snapshots/2008-01-25/$TARBALL"
    9.12 @@ -17,8 +17,8 @@
    9.13  	cd $src
    9.14  	./configure \
    9.15  		--prefix=/usr \
    9.16 -		$CONFIGURE_ARGS
    9.17 -	make
    9.18 +		$CONFIGURE_ARGS &&
    9.19 +	make &&
    9.20  	make DESTDIR=$PWD/_pkg install
    9.21  }
    9.22  
    10.1 --- a/xine-lib/receipt	Mon Oct 06 19:25:40 2008 +0000
    10.2 +++ b/xine-lib/receipt	Tue Oct 07 11:12:02 2008 +0000
    10.3 @@ -6,7 +6,7 @@
    10.4  SHORT_DESC="Xine video library."
    10.5  MAINTAINER="pankso@slitaz.org"
    10.6  DEPENDS="xorg zlib"
    10.7 -BUILD_DEPENDS="xorg-dev zlib-dev"
    10.8 +BUILD_DEPENDS="xorg-dev zlib-dev xorg-libXvMC libtheora"
    10.9  TARBALL="$PACKAGE-$VERSION.tar.bz2"
   10.10  WEB_SITE="http://www.xinehq.de/"
   10.11  WGET_URL="http://switch.dl.sourceforge.net/sourceforge/xine/$TARBALL"
    11.1 --- a/xine-ui/receipt	Mon Oct 06 19:25:40 2008 +0000
    11.2 +++ b/xine-ui/receipt	Tue Oct 07 11:12:02 2008 +0000
    11.3 @@ -6,7 +6,7 @@
    11.4  SHORT_DESC="Xine media player user interface."
    11.5  MAINTAINER="pankso@slitaz.org"
    11.6  DEPENDS="xine-lib libvorbis xorg-libXtst xorg-libXv"
    11.7 -BUILD_DEPENDS="xine-lib-dev xorg-dev xorg-libXtst-dev xorg-libXv-dev"
    11.8 +BUILD_DEPENDS="xine-lib xine-lib-dev xorg-dev xorg-libXtst-dev xorg-libXv-dev"
    11.9  TARBALL="$PACKAGE-$VERSION.tar.gz"
   11.10  WEB_SITE="http://www.xinehq.de/"
   11.11  WGET_URL="http://switch.dl.sourceforge.net/sourceforge/xine/$TARBALL"
   11.12 @@ -16,8 +16,8 @@
   11.13  {
   11.14  	cd $src
   11.15  	./configure --prefix=/usr \
   11.16 -	--mandir=/usr/share/man $CONFIGURE_ARGS
   11.17 -	make
   11.18 +	--mandir=/usr/share/man $CONFIGURE_ARGS &&
   11.19 +	make &&
   11.20  	make DESTDIR=$PWD/_pkg install
   11.21  }
   11.22  
    12.1 --- a/xsane/receipt	Mon Oct 06 19:25:40 2008 +0000
    12.2 +++ b/xsane/receipt	Tue Oct 07 11:12:02 2008 +0000
    12.3 @@ -6,7 +6,7 @@
    12.4  SHORT_DESC="XSane - graphical scanning frontend."
    12.5  MAINTAINER="pankso@slitaz.org"
    12.6  DEPENDS="sane-backends gtk+"
    12.7 -BUILD_DEPENDS="gtk+-dev sane-backends-dev"
    12.8 +BUILD_DEPENDS="gtk+-dev sane-backends-dev sane-backends"
    12.9  TARBALL="$PACKAGE-$VERSION.tar.gz"
   12.10  WEB_SITE="http://www.xsane.org/"
   12.11  WGET_URL="ftp://sunsite.uio.no/pub/sane/xsane/$TARBALL"
   12.12 @@ -18,8 +18,8 @@
   12.13  	./configure \
   12.14  		--prefix=/usr \
   12.15  		--mandir=/usr/share/man \
   12.16 -		$CONFIGURE_ARGS
   12.17 -	make
   12.18 +		$CONFIGURE_ARGS &&
   12.19 +	make &&
   12.20  	make DESTDIR=$PWD/_pkg install
   12.21  }
   12.22