# HG changeset patch # User Pascal Bellard # Date 1223041427 0 # Node ID 788eb14d270a8ea98c60460c72ab3d9c4fac1c53 # Parent 7869c27eeaf75928cef288c937616289beed4aef emelfm2 flac libvorbis parted vorbis-tools: update BUILD_DEPENDS diff -r 7869c27eeaf7 -r 788eb14d270a emelfm2/receipt --- a/emelfm2/receipt Fri Oct 03 11:21:33 2008 +0000 +++ b/emelfm2/receipt Fri Oct 03 13:43:47 2008 +0000 @@ -6,6 +6,7 @@ SHORT_DESC="GTK powerfull file manager." MAINTAINER="pankso@slitaz.org" DEPENDS="gtk+" +BUILD_DEPENDS="pkg-config gtk+ gtk+-dev xorg-xproto" TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="http://emelfm2.net/" WGET_URL="http://emelfm2.net/rel/$TARBALL" @@ -14,9 +15,9 @@ compile_rules() { cd $src - make PREFIX=/usr - make i18n PREFIX=/usr - make install PREFIX=$PWD/_pkg/usr + make PREFIX=/usr && + make i18n PREFIX=/usr && + make install PREFIX=$PWD/_pkg/usr && make install_i18n PREFIX=$PWD/_pkg/usr } diff -r 7869c27eeaf7 -r 788eb14d270a flac/receipt --- a/flac/receipt Fri Oct 03 11:21:33 2008 +0000 +++ b/flac/receipt Fri Oct 03 13:43:47 2008 +0000 @@ -6,6 +6,8 @@ SHORT_DESC="FLAC stands for Free Lossless Audio Codec." MAINTAINER="pankso@slitaz.org" TARBALL="$PACKAGE-$VERSION.tar.gz" +DEPENDS="libogg" +BUILD_DEPENDS="libogg-dev" WEB_SITE="http://flac.sourceforge.net/" WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" @@ -16,8 +18,8 @@ ./configure \ --prefix=/usr \ --mandir=/usr/share/man \ - $CONFIGURE_ARGS - make + $CONFIGURE_ARGS && + make && make DESTDIR=$PWD/_pkg install } diff -r 7869c27eeaf7 -r 788eb14d270a libvorbis/receipt --- a/libvorbis/receipt Fri Oct 03 11:21:33 2008 +0000 +++ b/libvorbis/receipt Fri Oct 03 13:43:47 2008 +0000 @@ -5,6 +5,8 @@ CATEGORY="multimedia" SHORT_DESC="Vorbis base library." MAINTAINER="pankso@slitaz.org" +DEPENDS="libogg" +BUILD_DEPENDS="libogg-dev" TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="http://www.xiph.org/" WGET_URL="http://downloads.xiph.org/releases/vorbis/$TARBALL" @@ -14,8 +16,8 @@ { cd $src ./configure --prefix=/usr --infodir=/usr/share/info \ - --mandir=/usr/share/man $CONFIGURE_ARGS - make + --mandir=/usr/share/man $CONFIGURE_ARGS && + make && make DESTDIR=$PWD/_pkg install } diff -r 7869c27eeaf7 -r 788eb14d270a parted/receipt --- a/parted/receipt Fri Oct 03 11:21:33 2008 +0000 +++ b/parted/receipt Fri Oct 03 13:43:47 2008 +0000 @@ -5,6 +5,7 @@ CATEGORY="system-tools" SHORT_DESC="GNU parted partition editor." MAINTAINER="pankso@slitaz.org" +BUILD_DEPENDS="e2fsprogs-dev" TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="http://www.gnu.org/software/parted/index.shtml" WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" @@ -20,8 +21,8 @@ --disable-debug \ --disable-Werror \ --without-readline \ - $CONFIGURE_ARGS - make + $CONFIGURE_ARGS && + make && make DESTDIR=$PWD/_pkg install } diff -r 7869c27eeaf7 -r 788eb14d270a vorbis-tools/receipt --- a/vorbis-tools/receipt Fri Oct 03 11:21:33 2008 +0000 +++ b/vorbis-tools/receipt Fri Oct 03 13:43:47 2008 +0000 @@ -5,6 +5,8 @@ CATEGORY="multimedia" SHORT_DESC="Vorbis encoder, decoder and tiny tools." MAINTAINER="pankso@slitaz.org" +DEPENDS="libogg" +BUILD_DEPENDS="libogg-dev" TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="http://www.vorbis.com/" WGET_URL="http://downloads.xiph.org/releases/vorbis/$TARBALL" @@ -16,8 +18,8 @@ ./configure \ --prefix=/usr \ --mandir=/usr/share/man \ - $CONFIGURE_ARGS - make + $CONFIGURE_ARGS && + make && make DESTDIR=$PWD/_pkg install }