wok rev 6834

merge
author Christopher Rogers <slaxemulator@gmail.com>
date Tue Oct 19 21:24:30 2010 +0000 (2010-10-19)
parents c194790b4277 5494d3586f29
children 144e6c5a8678
files
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/ardour/receipt	Tue Oct 19 21:24:30 2010 +0000
     1.3 @@ -0,0 +1,59 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="ardour"
     1.7 +VERSION="2.8.7"
     1.8 +CATEGORY="multimedia"
     1.9 +MAINTAINER="jozee@slitaz.org"
    1.10 +SHORT_DESC="A multichannel hard disk recorder and digital audio workstation"
    1.11 +WEB_SITE="http://ardour.org"
    1.12 +DEPENDS="liblrdf ladspa libgnomecanvasmm liblo libusb aubio libsndfile"
    1.13 +BUILD_DEPENDS="scons libboost-dev jack-audio-connection-kit-dev jack-audio-connection-kit alsa-lib-dev liblo liblo-dev aubio-dev libsndfile-dev ladspa-dev liblrdf-dev libart_lgpl-dev libusb-dev"
    1.14 +TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.15 +WGET_URL="ftp://ftp.archlinux.org/other/ardour/$TARBALL"
    1.16 +TAGS="audio recorder mixer"
    1.17 +
    1.18 +# Rules to configure and make the package.
    1.19 +
    1.20 +compile_rules() {
    1.21 +  cd $src
    1.22 +  sed -i '/-O3/d' SConstruct 
    1.23 +  mkdir -p $PWD/_pkg
    1.24 +  
    1.25 +  scons PREFIX=/usr 	\
    1.26 +		NLS=1 \
    1.27 +		FREEDESKTOP=0 \
    1.28 +		SYSLIBS=0 \
    1.29 +		VST=0 \
    1.30 +		WIIMOTE=0 \
    1.31 +		LV2=0 \
    1.32 +		FREESOUND=1 \
    1.33 +		LIBLO=1 \
    1.34 +		AUBIO=1 \
    1.35 +		TRANZPORT=1 \
    1.36 +		DIST_LIBDIR=lib 
    1.37 +			
    1.38 +  scons PREFIX=/usr \
    1.39 +		NLS=1 \
    1.40 +		FREEDESKTOP=0 \
    1.41 +		SYSLIBS=0 \
    1.42 +		VST=0 \
    1.43 +		WIIMOTE=0 \
    1.44 +		LV2=0 \
    1.45 +		FREESOUND=1 \
    1.46 +		LIBLO=1 \
    1.47 +		AUBIO=1 \
    1.48 +		TRANZPORT=1 \
    1.49 +		DIST_LIBDIR=lib \
    1.50 +		DESTDIR=$PWD/_pkg install 
    1.51 +
    1.52 +}
    1.53 +
    1.54 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.55 +genpkg_rules()
    1.56 +{
    1.57 +	mkdir -p $fs/usr/lib/ardour2 $fs/usr/share
    1.58 +	cp -a $_pkg/usr/bin $fs/usr
    1.59 +	cp -a $_pkg/usr/lib/ardour2/*so* $fs/usr/lib/ardour2
    1.60 +	cp -a $_pkg/usr/share/ardour2 $fs/usr/share
    1.61 +	
    1.62 +}
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/aubio-dev/receipt	Tue Oct 19 21:24:30 2010 +0000
     2.3 @@ -0,0 +1,19 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="aubio-dev"
     2.7 +VERSION="0.3.2"
     2.8 +CATEGORY="development"
     2.9 +MAINTAINER="jozee@slitaz.org"
    2.10 +SHORT_DESC="aubio devel files"
    2.11 +WEB_SITE="http://aubio.piem.org/"
    2.12 +WANTED="aubio"
    2.13 +
    2.14 +
    2.15 +# Rules to gen a SliTaz package suitable for Tazpkg.
    2.16 +genpkg_rules()
    2.17 +{
    2.18 +	mkdir -p $fs/usr/lib
    2.19 +	cp -a $_pkg/usr/lib/*.*a $fs/usr/lib
    2.20 +	cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib
    2.21 +	cp -a $_pkg/usr/include $fs/usr
    2.22 +}
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/aubio/receipt	Tue Oct 19 21:24:30 2010 +0000
     3.3 @@ -0,0 +1,32 @@
     3.4 +# SliTaz package receipt.
     3.5 +
     3.6 +PACKAGE="aubio"
     3.7 +VERSION="0.3.2"
     3.8 +CATEGORY="multimedia"
     3.9 +MAINTAINER="jozee@slitaz.org"
    3.10 +SHORT_DESC="A library for audio labelling"
    3.11 +BUILD_DEPENDS=" libsamplerate-dev  jack-audio-connection-kit-dev fftw-dev libsndfile-dev fftw libsamplerate flac-dev libogg-dev libvorbis-dev"
    3.12 +WEB_SITE="http://aubio.piem.org/"
    3.13 +DEPENDS="libsamplerate fftw jack-audio-connection-kit flac libogg libvorbis"
    3.14 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    3.15 +WGET_URL="$WEB_SITE/pub/$TARBALL"
    3.16 +TAGS="audio label multimedia"
    3.17 +
    3.18 +# Rules to configure and make the package.
    3.19 +
    3.20 +compile_rules() {
    3.21 +  cd $src
    3.22 +  ./configure --prefix=/usr &&
    3.23 +  make &&
    3.24 +  make DESTDIR=$PWD/_pkg install
    3.25 +}
    3.26 +	
    3.27 +# Rules to gen a SliTaz package suitable for Tazpkg.
    3.28 +genpkg_rules()
    3.29 +{
    3.30 +	mkdir -p $fs/usr/lib 
    3.31 +	cp -a $_pkg/usr/bin $fs/usr
    3.32 +	cp -a $_pkg/usr/lib/*so* $fs/usr/lib/
    3.33 +	cp -a $_pkg/usr/share $fs/usr
    3.34 +
    3.35 +}
     4.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     4.2 +++ b/bmpanel2/receipt	Tue Oct 19 21:24:30 2010 +0000
     4.3 @@ -0,0 +1,36 @@
     4.4 +# SliTaz package receipt.
     4.5 +
     4.6 +PACKAGE="bmpanel2"
     4.7 +VERSION="2.1pre1"
     4.8 +CATEGORY="misc"
     4.9 +MAINTAINER="jozee@slitaz.org"
    4.10 +SHORT_DESC="Nice NETWM-compatible panel for X11"
    4.11 +WEB_SITE="http://bmpanel2.googlecode.com/"
    4.12 +DEPENDS="pango cairo xorg-libX11 xorg-libXrender"
    4.13 +BUILD_DEPENDS="cmake pango-dev  cairo-dev  xorg-libX11-dev  xorg-libXrender-dev python-dev"
    4.14 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    4.15 +WGET_URL="$WEB_SITE/files/$TARBALL"
    4.16 +TAGS="panel window-manager wm"
    4.17 +
    4.18 +# Rules to configure and make the package.
    4.19 +
    4.20 +compile_rules() {
    4.21 +  cd $src
    4.22 +  # fix "with" statement for python 2.5
    4.23 +  sed -i "s/import sys, os/from __future__ import with_statement \nimport sys, os /" extra/py/${PACKAGE}.py
    4.24 +  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=RELEASE . 
    4.25 +  make 
    4.26 +  make DESTDIR=$PWD/_pkg/ install
    4.27 +}
    4.28 +	
    4.29 +# Rules to gen a SliTaz package suitable for Tazpkg.
    4.30 +genpkg_rules()
    4.31 +{
    4.32 +	mkdir -p $fs/usr/share/$PACKAGE/themes $fs/usr/bin
    4.33 +	cp -a $_pkg/usr/bin/$PACKAGE $fs/usr/bin
    4.34 +		# cp only native and transpy themes
    4.35 +	cp -a $_pkg/usr/share/$PACKAGE/themes/transpy $fs/usr/share/$PACKAGE/themes
    4.36 +	cp -a $_pkg/usr/share/$PACKAGE/themes/native $fs/usr/share/$PACKAGE/themes
    4.37 +	
    4.38 +	
    4.39 +}
     5.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     5.2 +++ b/bmpanel2cfg/receipt	Tue Oct 19 21:24:30 2010 +0000
     5.3 @@ -0,0 +1,20 @@
     5.4 +# SliTaz package receipt.
     5.5 +
     5.6 +PACKAGE="bmpanel2cfg"
     5.7 +VERSION="2.1pre1"
     5.8 +CATEGORY="misc"
     5.9 +MAINTAINER="jozee@slitaz.org"
    5.10 +SHORT_DESC="bmpanel2 configurator"
    5.11 +WEB_SITE="http://bmpanel2.googlecode.com/"
    5.12 +DEPENDS="pygtk"
    5.13 +WANTED="bmpanel2"
    5.14 +TAGS="window-manager wm panel"
    5.15 +
    5.16 +	
    5.17 +# Rules to gen a SliTaz package suitable for Tazpkg.
    5.18 +genpkg_rules()
    5.19 +{
    5.20 +	mkdir -p $fs/usr/lib $fs/usr/bin
    5.21 +	cp -a $_pkg/usr/bin/$PACKAGE $fs/usr/bin
    5.22 +	cp -a $_pkg/usr/lib/python* $fs/usr/lib		
    5.23 +}
     6.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     6.2 +++ b/fftw-dev/receipt	Tue Oct 19 21:24:30 2010 +0000
     6.3 @@ -0,0 +1,20 @@
     6.4 +# SliTaz package receipt.
     6.5 +
     6.6 +PACKAGE="fftw-dev"
     6.7 +VERSION="3.2.2"
     6.8 +CATEGORY="development"
     6.9 +MAINTAINER="jozee@slitaz.org"
    6.10 +SHORT_DESC="fftw devel files"
    6.11 +WEB_SITE="http://www.fftw.org/"
    6.12 +WGET_URL="$WEB_SITE/$TARBALL"
    6.13 +WANTED="fftw"
    6.14 +
    6.15 +
    6.16 +# Rules to gen a SliTaz package suitable for Tazpkg.
    6.17 +genpkg_rules()
    6.18 +{
    6.19 +	mkdir -p $fs/usr/lib
    6.20 +	cp -a $_pkg/usr/lib/*.*a $fs/usr/lib
    6.21 +	cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib
    6.22 +	cp -a $_pkg/usr/include $fs/usr
    6.23 +}
     7.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     7.2 +++ b/fftw/receipt	Tue Oct 19 21:24:30 2010 +0000
     7.3 @@ -0,0 +1,44 @@
     7.4 +# SliTaz package receipt.
     7.5 +
     7.6 +PACKAGE="fftw"
     7.7 +VERSION="3.2.2"
     7.8 +CATEGORY="multimedia"
     7.9 +MAINTAINER="jozee@slitaz.org"
    7.10 +SHORT_DESC="A library for computing the discrete Fourier transform (DFT)"
    7.11 +BUILD_DEPENDS="gfortran"
    7.12 +WEB_SITE="http://www.fftw.org/"
    7.13 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    7.14 +WGET_URL="$WEB_SITE/$TARBALL"
    7.15 +TAGS=""
    7.16 +
    7.17 +# Rules to configure and make the package.
    7.18 +
    7.19 +compile_rules() {
    7.20 +  cd $src
    7.21 +  
    7.22 +  # build double precision
    7.23 +  ./configure F77=gfortran --prefix=/usr --enable-shared &&
    7.24 +  make &&
    7.25 +  make DESTDIR=$PWD/_pkg install 
    7.26 + 
    7.27 +  # build long double precission
    7.28 +  make clean
    7.29 +  ./configure F77=gfortran --prefix=/usr --enable-long-double  --enable-shared 
    7.30 +  make 
    7.31 +  make DESTDIR=$PWD/_pkg install 
    7.32 +  
    7.33 +  # build single precision
    7.34 +  make clean
    7.35 +  ./configure F77=gfortran --prefix=/usr --enable-float --enable-shared 
    7.36 +  make 
    7.37 +  make DESTDIR=$PWD/_pkg install 
    7.38 +}
    7.39 +	
    7.40 +# Rules to gen a SliTaz package suitable for Tazpkg.
    7.41 +genpkg_rules()
    7.42 +{
    7.43 +	mkdir -p $fs/usr/lib $fs/usr/share
    7.44 +	cp -a $_pkg/usr/bin $fs/usr
    7.45 +	cp -a $_pkg/usr/lib/*so* $fs/usr/lib/
    7.46 +	
    7.47 +}
     8.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     8.2 +++ b/fluidsynth-dev/receipt	Tue Oct 19 21:24:30 2010 +0000
     8.3 @@ -0,0 +1,19 @@
     8.4 +# SliTaz package receipt.
     8.5 +
     8.6 +PACKAGE="fluidsynth-dev"
     8.7 +VERSION="1.1.1"
     8.8 +CATEGORY="development"
     8.9 +MAINTAINER="jozee@slitaz.org"
    8.10 +SHORT_DESC="fluidsynth devel files"
    8.11 +WEB_SITE="http://www.fluidsynth.org/"
    8.12 +WANTED="fluidsynth"
    8.13 +
    8.14 +
    8.15 +# Rules to gen a SliTaz package suitable for Tazpkg.
    8.16 +genpkg_rules()
    8.17 +{
    8.18 +	mkdir -p $fs/usr/lib
    8.19 +	cp -a $_pkg/usr/lib/*.*a $fs/usr/lib
    8.20 +	cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib
    8.21 +	cp -a $_pkg/usr/include $fs/usr
    8.22 +}
     9.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     9.2 +++ b/fluidsynth/receipt	Tue Oct 19 21:24:30 2010 +0000
     9.3 @@ -0,0 +1,31 @@
     9.4 +# SliTaz package receipt.
     9.5 +
     9.6 +PACKAGE="fluidsynth"
     9.7 +VERSION="1.1.1"
     9.8 +CATEGORY="multimedia"
     9.9 +MAINTAINER="jozee@slitaz.org"
    9.10 +SHORT_DESC="A real-time software synthesizer based on the SoundFont 2 specifications."
    9.11 +BUILD_DEPENDS=" jack-audio-connection-kit-dev ladspa-dev"
    9.12 +WEB_SITE="http://www.fluidsynth.org/"
    9.13 +DEPENDS="glib2 jack-audio-connection-kit ladspa"
    9.14 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    9.15 +WGET_URL="http://savannah.nongnu.org/download/fluid/$TARBALL"
    9.16 +TAGS="synthesizer audio multimedia"
    9.17 +
    9.18 +# Rules to configure and make the package.
    9.19 +
    9.20 +compile_rules() {
    9.21 +  cd $src
    9.22 +  ./configure --prefix=/usr --enable-ladspa &&
    9.23 +  make &&
    9.24 +  make prefix=$PWD/_pkg/usr install
    9.25 +}
    9.26 +	
    9.27 +# Rules to gen a SliTaz package suitable for Tazpkg.
    9.28 +genpkg_rules()
    9.29 +{
    9.30 +	mkdir -p $fs/usr/lib 
    9.31 +	cp -a $_pkg/usr/bin $fs/usr
    9.32 +	cp -a $_pkg/usr/lib/*so* $fs/usr/lib/
    9.33 +	
    9.34 +}
    10.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    10.2 +++ b/frei0r-plugins-dev/receipt	Tue Oct 19 21:24:30 2010 +0000
    10.3 @@ -0,0 +1,17 @@
    10.4 +# SliTaz package receipt.
    10.5 +
    10.6 +PACKAGE="frei0r-plugins-dev"
    10.7 +VERSION="1.1.22"
    10.8 +CATEGORY="development"
    10.9 +MAINTAINER="jozee@slitaz.org"
   10.10 +SHORT_DESC="frei0r-plugins devel files"
   10.11 +WEB_SITE="http://www.piksel.org/frei0r"
   10.12 +WANTED="frei0r-plugins"
   10.13 +
   10.14 +
   10.15 +# Rules to gen a SliTaz package suitable for Tazpkg.
   10.16 +genpkg_rules()
   10.17 +{
   10.18 +	mkdir -p $fs/usr
   10.19 +	cp -a $_pkg/usr/include $fs/usr
   10.20 +}
    11.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    11.2 +++ b/frei0r-plugins/receipt	Tue Oct 19 21:24:30 2010 +0000
    11.3 @@ -0,0 +1,30 @@
    11.4 +# SliTaz package receipt.
    11.5 +
    11.6 +PACKAGE="frei0r-plugins"
    11.7 +VERSION="1.1.22"
    11.8 +CATEGORY="multimedia"
    11.9 +MAINTAINER="jozee@slitaz.org"
   11.10 +SHORT_DESC="frei0r is a minimalistic plugin API for video sources and filters."
   11.11 +BUILD_DEPENDS="gavl-dev"
   11.12 +WEB_SITE="http://www.piksel.org/frei0r"
   11.13 +DEPENDS="gcc-lib-base gavl"
   11.14 +TARBALL="$PACKAGE-$VERSION.tar.gz"
   11.15 +WGET_URL="http://propirate.net/frei0r/$TARBALL"
   11.16 +TAGS="multimedia"
   11.17 +
   11.18 +# Rules to configure and make the package.
   11.19 +
   11.20 +compile_rules() {
   11.21 +  cd $src
   11.22 +  ./configure --prefix=/usr &&
   11.23 +  make &&
   11.24 +  make DESTDIR=$PWD/_pkg install
   11.25 +}
   11.26 +	
   11.27 +# Rules to gen a SliTaz package suitable for Tazpkg.
   11.28 +genpkg_rules()
   11.29 +{
   11.30 +	mkdir -p $fs/usr/lib/frei0r-1 
   11.31 +	cp -a $_pkg/usr/lib/frei0r-1/*so* $fs/usr/lib/frei0r-1
   11.32 +
   11.33 +}
    12.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    12.2 +++ b/liblo-dev/receipt	Tue Oct 19 21:24:30 2010 +0000
    12.3 @@ -0,0 +1,19 @@
    12.4 +# SliTaz package receipt.
    12.5 +
    12.6 +PACKAGE="liblo-dev"
    12.7 +VERSION="0.26"
    12.8 +CATEGORY="development"
    12.9 +MAINTAINER="jozee@slitaz.org"
   12.10 +SHORT_DESC="liblo devel files"
   12.11 +WEB_SITE="http://librdf.org/raptor"
   12.12 +WANTED="liblo"
   12.13 +
   12.14 +
   12.15 +# Rules to gen a SliTaz package suitable for Tazpkg.
   12.16 +genpkg_rules()
   12.17 +{
   12.18 +	mkdir -p $fs/usr/lib
   12.19 +	cp -a $_pkg/usr/lib/*.*a $fs/usr/lib
   12.20 +	cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib
   12.21 +	cp -a $_pkg/usr/include $fs/usr
   12.22 +}
    13.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    13.2 +++ b/liblo/receipt	Tue Oct 19 21:24:30 2010 +0000
    13.3 @@ -0,0 +1,30 @@
    13.4 +# SliTaz package receipt.
    13.5 +
    13.6 +PACKAGE="liblo"
    13.7 +VERSION="0.26"
    13.8 +CATEGORY="multimedia"
    13.9 +MAINTAINER="jozee@slitaz.org"
   13.10 +SHORT_DESC="Lightweight OSC implementation: an implementation of the Open Sound Control protocol for POSIX systems"
   13.11 +BUILD_DEPENDS=""
   13.12 +WEB_SITE="http://plugin.org.uk/liblo/"
   13.13 +TARBALL="$PACKAGE-$VERSION.tar.gz"
   13.14 +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
   13.15 +
   13.16 +
   13.17 +# Rules to configure and make the package.
   13.18 +
   13.19 +compile_rules() {
   13.20 +  cd $src
   13.21 +  ./configure --prefix=/usr &&
   13.22 +  make &&
   13.23 +  make DESTDIR=$PWD/_pkg install 
   13.24 +}
   13.25 +	
   13.26 +# Rules to gen a SliTaz package suitable for Tazpkg.
   13.27 +genpkg_rules()
   13.28 +{
   13.29 +	mkdir -p $fs/usr/lib 
   13.30 +	cp -a $_pkg/usr/bin $fs/usr
   13.31 +	cp -a $_pkg/usr/lib/*so* $fs/usr/lib/
   13.32 +	
   13.33 +}
    14.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    14.2 +++ b/libquicktime-dev/receipt	Tue Oct 19 21:24:30 2010 +0000
    14.3 @@ -0,0 +1,20 @@
    14.4 +# SliTaz package receipt.
    14.5 +
    14.6 +PACKAGE="libquicktime-dev"
    14.7 +VERSION="1.1.5"
    14.8 +CATEGORY="development"
    14.9 +MAINTAINER="jozee@slitaz.org"
   14.10 +SHORT_DESC="libquicktime devel files"
   14.11 +WEB_SITE="http://libquicktime.sourceforge.net/"
   14.12 +WANTED="libquicktime"
   14.13 +
   14.14 +
   14.15 +# Rules to gen a SliTaz package suitable for Tazpkg.
   14.16 +genpkg_rules()
   14.17 +{
   14.18 +	mkdir -p $fs/usr/lib $fs/usr/share
   14.19 +	cp -a $_pkg/usr/lib/*.*a $fs/usr/lib
   14.20 +	cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib
   14.21 +	cp -a $_pkg/usr/include $fs/usr
   14.22 +	cp -a $_pkg/usr/share/aclocal $fs/usr/share
   14.23 +}
    15.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    15.2 +++ b/libquicktime/receipt	Tue Oct 19 21:24:30 2010 +0000
    15.3 @@ -0,0 +1,35 @@
    15.4 +# SliTaz package receipt.
    15.5 +
    15.6 +PACKAGE="libquicktime"
    15.7 +VERSION="1.1.5"
    15.8 +CATEGORY="multimedia"
    15.9 +MAINTAINER="jozee@slitaz.org"
   15.10 +SHORT_DESC="A library for reading and writing quicktime files."
   15.11 +WEB_SITE="http://libquicktime.sourceforge.net/"
   15.12 +DEPENDS="gtk+  ffmpeg-svn  alsa-lib libxv libgl xorg-libXaw x264"
   15.13 +BUILD_DEPENDS=" gtk+-dev  ffmpeg-svn-dev  alsa-lib-dev  xorg-libXaw-dev x264-dev"
   15.14 +TARBALL="$PACKAGE-$VERSION.tar.gz"
   15.15 +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
   15.16 +
   15.17 +# Rules to configure and make the package.
   15.18 +
   15.19 +compile_rules() {
   15.20 +  cd $src
   15.21 +  ./configure --prefix=/usr  \
   15.22 +			  --enable-gpl \
   15.23 +			  --with-ffmpeg \
   15.24 +			  --with-x264 \
   15.25 +			  --without-doxygen &&
   15.26 +  make &&
   15.27 +  make DESTDIR=$PWD/_pkg install
   15.28 +}
   15.29 +	
   15.30 +# Rules to gen a SliTaz package suitable for Tazpkg.
   15.31 +genpkg_rules()
   15.32 +{
   15.33 +	mkdir -p $fs/usr/lib/$PACKAGE
   15.34 +	cp -a $_pkg/usr/bin $fs/usr
   15.35 +	cp -a $_pkg/usr/lib/*so* $fs/usr/lib/
   15.36 +	cp -a $_pkg/usr/lib/$PACKAGE/*so* $fs/usr/lib/$PACKAGE
   15.37 +	
   15.38 +}
    16.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    16.2 +++ b/mlt-dev/receipt	Tue Oct 19 21:24:30 2010 +0000
    16.3 @@ -0,0 +1,18 @@
    16.4 +# SliTaz package receipt.
    16.5 +
    16.6 +PACKAGE="mlt-dev"
    16.7 +VERSION="0.5.0"
    16.8 +CATEGORY="development"
    16.9 +MAINTAINER="jozee@slitaz.org"
   16.10 +SHORT_DESC="mlt devel files"
   16.11 +WEB_SITE="http://www.mltframework.org"
   16.12 +WANTED="mlt"
   16.13 +
   16.14 +
   16.15 +# Rules to gen a SliTaz package suitable for Tazpkg.
   16.16 +genpkg_rules()
   16.17 +{
   16.18 +	mkdir -p $fs/usr/lib
   16.19 +	cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib
   16.20 +	cp -a $_pkg/usr/include $fs/usr
   16.21 +}
    17.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    17.2 +++ b/mlt-python-bindings/receipt	Tue Oct 19 21:24:30 2010 +0000
    17.3 @@ -0,0 +1,32 @@
    17.4 +# SliTaz package receipt.
    17.5 +
    17.6 +PACKAGE="mlt-python-bindings"
    17.7 +VERSION="0.5.0"
    17.8 +SOURCE="mlt"
    17.9 +CATEGORY="multimedia"
   17.10 +MAINTAINER="jozee@slitaz.org"
   17.11 +SHORT_DESC="python bindings for MLT multimedia framework"
   17.12 +WEB_SITE="http://www.mltframework.org"
   17.13 +DEPENDS="python mlt"
   17.14 +BUILD_DEPENDS="swig python mlt mlt-dev"
   17.15 +TARBALL="$SOURCE-$VERSION.tar.gz"
   17.16 +WGET_URL="$SF_MIRROR/mlt/$TARBALL"
   17.17 +
   17.18 +# Rules to configure and make the package.
   17.19 +
   17.20 +compile_rules() 
   17.21 +{
   17.22 +   cd $src/src/swig/python
   17.23 +  ./build 
   17.24 + 
   17.25 +}
   17.26 +	
   17.27 +# Rules to gen a SliTaz package suitable for Tazpkg.
   17.28 +genpkg_rules()
   17.29 +{
   17.30 +	mkdir -p $fs/usr/lib/python2.5/ 
   17.31 +	cp -a $src/src/swig/python/mlt.py $fs/usr/lib/python2.5/ 
   17.32 +	cp -a $src/src/swig/python/_mlt.so $fs/usr/lib/python2.5/
   17.33 +	cp -a $src/src/swig/python/mlt_wrap.o  $fs/usr/lib/python2.5/ 
   17.34 +	
   17.35 +}
    18.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    18.2 +++ b/mlt/receipt	Tue Oct 19 21:24:30 2010 +0000
    18.3 @@ -0,0 +1,38 @@
    18.4 +# SliTaz package receipt.
    18.5 +
    18.6 +PACKAGE="mlt"
    18.7 +VERSION="0.5.0"
    18.8 +CATEGORY="multimedia"
    18.9 +MAINTAINER="jozee@slitaz.org"
   18.10 +SHORT_DESC="An open source multimedia framework"
   18.11 +WEB_SITE="http://www.mltframework.org"
   18.12 +DEPENDS="libsdl-image libsamplerate libdv qt sox libxml2 gtk+ ffmpeg-svn frei0r-plugins"
   18.13 +BUILD_DEPENDS="libsamplerate-dev  libdv-dev  sox-dev Qt4-dev libxml2-dev  gtk+-dev  ffmpeg-svn-dev libsdl-image-dev frei0r-plugins-dev"
   18.14 +TARBALL="$PACKAGE-$VERSION.tar.gz"
   18.15 +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
   18.16 +TAGS="multimedia"
   18.17 +
   18.18 +# Rules to configure and make the package.
   18.19 +
   18.20 +compile_rules() {
   18.21 +  cd $src
   18.22 +  ./configure --prefix=/usr \
   18.23 +			  --enable-gpl \
   18.24 +			  --disable-mmx \
   18.25 +			  --qimage-libdir=/usr/lib/ \
   18.26 +			  --qimage-includedir=/usr/include/Qt \
   18.27 +			  --avformat-swscale &&
   18.28 +  make &&
   18.29 +  make DESTDIR=$PWD/_pkg install 
   18.30 +}
   18.31 +	
   18.32 +# Rules to gen a SliTaz package suitable for Tazpkg.
   18.33 +genpkg_rules()
   18.34 +{
   18.35 +	mkdir -p $fs/usr/lib/$PACKAGE $fs/usr/share
   18.36 +	cp -a $_pkg/usr/bin $fs/usr
   18.37 +	cp -a $_pkg/usr/lib/*so* $fs/usr/lib/
   18.38 +	cp -a $_pkg/usr/share/$PACKAGE $fs/usr/share
   18.39 +	cp -a $_pkg/usr/lib/$PACKAGE/*so* $fs/usr/lib/$PACKAGE
   18.40 +	
   18.41 +}
    19.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    19.2 +++ b/openshot/receipt	Tue Oct 19 21:24:30 2010 +0000
    19.3 @@ -0,0 +1,34 @@
    19.4 +# SliTaz package receipt.
    19.5 +
    19.6 +PACKAGE="openshot"
    19.7 +VERSION="1.1.3"
    19.8 +CATEGORY="multimedia"
    19.9 +MAINTAINER="jozee@slitaz.org"
   19.10 +SHORT_DESC="an open-source, non-linear video editor for Linux based on MLT framework"
   19.11 +WEB_SITE="http://www.openshotvideo.com/"
   19.12 +DEPENDS="mlt-python-bindings pygoocanvas libsdl librsvg python-xdg frei0r-plugins"
   19.13 +SUGGESTED="dvgrab libquicktime libavc1394 faac jack-audio-connection-kit ladspa"
   19.14 +BUILD_DEPENDS=" mlt mlt-dev librsvg-dev libsdl libsdl-dev frei0r-plugins-dev frei0r-plugins sox sox-dev ffmpeg-svn-dev"
   19.15 +TARBALL="$PACKAGE-$VERSION.tar.gz"
   19.16 +WGET_URL="http://launchpad.net/openshot/1.1/$VERSION/+download/$TARBALL"
   19.17 +TAGS=""
   19.18 +
   19.19 +# Rules to configure and make the package.
   19.20 +
   19.21 +compile_rules() {
   19.22 +
   19.23 +	cd $src
   19.24 +	python setup.py install --prefix=/usr --root=$PWD/_pkg
   19.25 +	
   19.26 +}
   19.27 +	
   19.28 +# Rules to gen a SliTaz package suitable for Tazpkg.
   19.29 +genpkg_rules()
   19.30 +{
   19.31 +	mkdir -p $fs/usr/share
   19.32 +	cp -a $_pkg/usr/bin $fs/usr		
   19.33 +	cp -a $_pkg/usr/lib $fs/usr	 
   19.34 +	cp -a $_pkg/usr/share/pixmaps $fs/usr/share
   19.35 +	cp -a $_pkg/usr/share/mime $fs/usr/share		
   19.36 +	
   19.37 +}
    20.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    20.2 +++ b/x264-dev/receipt	Tue Oct 19 21:24:30 2010 +0000
    20.3 @@ -0,0 +1,20 @@
    20.4 +# SliTaz package receipt.
    20.5 +
    20.6 +PACKAGE="x264-dev"
    20.7 +VERSION="20100410-2245"
    20.8 +CATEGORY="development"
    20.9 +MAINTAINER="jozee@slitaz.org"
   20.10 +SHORT_DESC="x264 devel files"
   20.11 +WEB_SITE="http://www.videolan.org/developers/x264.html"
   20.12 +WANTED="x264"
   20.13 +SOURCE="$WANTED-snapshot"
   20.14 +
   20.15 +# Rules to gen a SliTaz package suitable for Tazpkg.
   20.16 +genpkg_rules()
   20.17 +{
   20.18 +	mkdir -p $fs/usr/lib
   20.19 +	_pkg="$WOK/$WANTED/$SOURCE-$VERSION/_pkg"
   20.20 +	cp -a $_pkg/usr/lib/*.*a $fs/usr/lib
   20.21 +	cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib
   20.22 +	cp -a $_pkg/usr/include $fs/usr
   20.23 +}
    21.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    21.2 +++ b/x264/receipt	Tue Oct 19 21:24:30 2010 +0000
    21.3 @@ -0,0 +1,33 @@
    21.4 +# SliTaz package receipt.
    21.5 +
    21.6 +PACKAGE="x264"
    21.7 +VERSION="20100410-2245"
    21.8 +CATEGORY="multimedia"
    21.9 +MAINTAINER="jozee@slitaz.org"
   21.10 +SHORT_DESC="free library for encoding H264/AVC video streams"
   21.11 +WEB_SITE="http://www.videolan.org/developers/x264.html"
   21.12 +DEPENDS="glibc-base"
   21.13 +BUILD_DEPENDS="yasm"
   21.14 +SOURCE="$PACKAGE-snapshot"
   21.15 +TARBALL="$SOURCE-$VERSION.tar.bz2"
   21.16 +WGET_URL="ftp://ftp.videolan.org/pub/videolan/x264/snapshots/$TARBALL"
   21.17 +
   21.18 +# Rules to configure and make the package.
   21.19 +
   21.20 +compile_rules() {
   21.21 +    cd $src 
   21.22 +    ./configure --enable-shared &&
   21.23 +    make &&
   21.24 +    make DESTDIR=$PWD/_pkg \
   21.25 +         bindir=/usr/bin \
   21.26 +         libdir=/usr/lib \
   21.27 +         includedir=/usr/include install 
   21.28 +}
   21.29 +	
   21.30 +# Rules to gen a SliTaz package suitable for Tazpkg.
   21.31 +genpkg_rules()
   21.32 +{
   21.33 +	mkdir -p $fs/usr/lib
   21.34 +	cp -a $_pkg/usr/bin $fs/usr
   21.35 +	cp -a $_pkg/usr/lib/*so* $fs/usr/lib/	
   21.36 +}