wok-6.x rev 15588
arj: ugly ack
line diff
1.1 --- a/arj/receipt Sat Nov 30 20:43:45 2013 +0000 1.2 +++ b/arj/receipt Mon Dec 02 16:43:36 2013 +0000 1.3 @@ -23,7 +23,9 @@ 1.4 --mandir=/usr/share/man $CONFIGURE_ARGS 1.5 cd .. 1.6 busybox patch -p0 < $stuff/fardata.u 1.7 - make -k -j1 1.8 + # Ugly hack... 1.9 + sed -i 's/Patch not found.*/&return(POSTPROC_ERL_SUCCESS);/' postproc.c 1.10 + make -j 1 && 1.11 make DESTDIR=$DESTDIR install 1.12 } 1.13 1.14 @@ -34,4 +36,3 @@ 1.15 cp -a $install/usr/bin $fs/usr 1.16 cp -a $install/usr/lib $fs/usr 1.17 } 1.18 -
2.1 --- a/eaccelerator/receipt Sat Nov 30 20:43:45 2013 +0000 2.2 +++ b/eaccelerator/receipt Mon Dec 02 16:43:36 2013 +0000 2.3 @@ -5,12 +5,14 @@ 2.4 CATEGORY="system-tools" 2.5 SHORT_DESC="PHP accelerator, optimizer, and dynamic content cache." 2.6 MAINTAINER="pascal.bellard@slitaz.org" 2.7 +LICENSE="GPL2" 2.8 TARBALL="$PACKAGE-$VERSION.tar.bz2" 2.9 WEB_SITE="http://eaccelerator.net/" 2.10 WGET_URL="http://bart.eaccelerator.net/source/$VERSION/$TARBALL" 2.11 +TAGS="php" 2.12 + 2.13 DEPENDS="php m4" 2.14 BUILD_DEPENDS="php-dev" 2.15 -TAGS="php" 2.16 2.17 # Rules to configure and make the package. 2.18 compile_rules() 2.19 @@ -23,14 +25,14 @@ 2.20 --prefix=/usr --infodir=/usr/share/info \ 2.21 --mandir=/usr/share/man $CONFIGURE_ARGS && 2.22 make && 2.23 - make INSTALL_ROOT=$PWD/_pkg install 2.24 + make INSTALL_ROOT=$DESTDIR install 2.25 } 2.26 2.27 # Rules to gen a SliTaz package suitable for Tazpkg. 2.28 genpkg_rules() 2.29 { 2.30 mkdir -p $fs/tmp/eaccelerator $fs/usr/share/php 2.31 - cp $(find $_pkg | grep eaccelerator.so) $fs/usr/share/php/ 2.32 + cp $(find $install | grep eaccelerator.so) $fs/usr/share/php/ 2.33 chmod 0777 $fs/tmp/eaccelerator 2.34 } 2.35
3.1 --- a/echinus/receipt Sat Nov 30 20:43:45 2013 +0000 3.2 +++ b/echinus/receipt Mon Dec 02 16:43:36 2013 +0000 3.3 @@ -5,9 +5,11 @@ 3.4 CATEGORY="x-window" 3.5 SHORT_DESC="A window manager for X in the spirit of dwm" 3.6 MAINTAINER="devl547@gmail.com" 3.7 +LICENSE="MIT" 3.8 TARBALL="$PACKAGE-$VERSION.tar.gz" 3.9 WEB_SITE="http://www.rootshell.be/~polachok/code/" 3.10 WGET_URL="$WEB_SITE/$TARBALL" 3.11 + 3.12 BUILD_DEPENDS="xorg-libX11-dev xorg-libXft-dev xorg-libXrandr-dev" 3.13 DEPENDS="xorg-libX11 xorg-libXft" 3.14 3.15 @@ -17,14 +19,13 @@ 3.16 cd $src 3.17 cp $stuff/config.mk config.mk 3.18 make && 3.19 - make DESTDIR=$PWD/_pkg install 3.20 + make DESTDIR=$DESTDIR install 3.21 } 3.22 3.23 # Rules to gen a SliTaz package suitable for Tazpkg. 3.24 genpkg_rules() 3.25 { 3.26 mkdir -p $fs/usr/share 3.27 - cp -a $_pkg/usr/bin $fs/usr 3.28 - cp -a $_pkg/usr/share/examples $fs/usr/share 3.29 + cp -a $install/usr/bin $fs/usr 3.30 + cp -a $install/usr/share/examples $fs/usr/share 3.31 } 3.32 -
4.1 --- a/ecj/receipt Sat Nov 30 20:43:45 2013 +0000 4.2 +++ b/ecj/receipt Mon Dec 02 16:43:36 2013 +0000 4.3 @@ -5,6 +5,7 @@ 4.4 CATEGORY="development" 4.5 SHORT_DESC="The Eclipse standalone batch Java compiler and Ant compiler adapter." 4.6 MAINTAINER="rcx@zoominternet.net" 4.7 +LICENSE="other" 4.8 TARBALL="$PACKAGE-$VERSION.jar" 4.9 WEB_SITE="http://www.eclipse.org/jdt/core/" 4.10 # 3.4.2: WGET_URL="http://download.eclipse.org/eclipse/downloads/drops/R-$VERSION-200902111700/$TARBALL" 4.11 @@ -34,5 +35,5 @@ 4.12 genpkg_rules() 4.13 { 4.14 mkdir -p $fs 4.15 - cp -a $_pkg/usr $fs 4.16 + cp -a $install/usr $fs 4.17 }
5.1 --- a/editobj/receipt Sat Nov 30 20:43:45 2013 +0000 5.2 +++ b/editobj/receipt Mon Dec 02 16:43:36 2013 +0000 5.3 @@ -6,6 +6,7 @@ 5.4 CATEGORY="x-window" 5.5 SHORT_DESC="Dialog box generator for Python objects." 5.6 MAINTAINER="pascal.bellard@slitaz.org" 5.7 +LICENSE="GPL2" 5.8 TARBALL="$SOURCE-$VERSION.tar.gz" 5.9 WEB_SITE="http://home.gna.org/oomadness/en/$PACKAGE/" 5.10 WGET_URL="http://download.gna.org/songwrite/$TARBALL" 5.11 @@ -23,5 +24,5 @@ 5.12 # Rules to gen a SliTaz package suitable for Tazpkg. 5.13 genpkg_rules() 5.14 { 5.15 - cp -a $_pkg/usr/ $fs 5.16 + cp -a $install/usr/ $fs 5.17 }
6.1 --- a/eduke32-data/receipt Sat Nov 30 20:43:45 2013 +0000 6.2 +++ b/eduke32-data/receipt Mon Dec 02 16:43:36 2013 +0000 6.3 @@ -5,6 +5,7 @@ 6.4 CATEGORY="games" 6.5 SHORT_DESC="eduke32 data files" 6.6 MAINTAINER="slaxemulator@gmail.com" 6.7 +LICENSE="GPL2" 6.8 TARBALL="duke3d.grp" 6.9 WEB_SITE="http://www.eduke32.com/" 6.10 WGET_URL="http://mirror.slitaz.org/sources/packages/d/duke3d.grp"
7.1 --- a/egenix-mx-base/receipt Sat Nov 30 20:43:45 2013 +0000 7.2 +++ b/egenix-mx-base/receipt Mon Dec 02 16:43:36 2013 +0000 7.3 @@ -5,9 +5,11 @@ 7.4 CATEGORY="development" 7.5 SHORT_DESC="eGenix.com mx Extension series." 7.6 MAINTAINER="pascal.bellard@slitaz.org" 7.7 +LICENSE="PSL" 7.8 TARBALL="$PACKAGE-$VERSION.tar.gz" 7.9 WEB_SITE="http://www.egenix.com/products/python/mxBase/" 7.10 WGET_URL="http://downloads.egenix.com/python/$TARBALL" 7.11 + 7.12 DEPENDS="python" 7.13 BUILD_DEPENDS="python python-dev" 7.14 7.15 @@ -15,12 +17,11 @@ 7.16 compile_rules() 7.17 { 7.18 cd $src 7.19 - python setup.py install --root=$PWD/_pkg 7.20 + python setup.py install --root=$DESTDIR 7.21 } 7.22 7.23 # Rules to gen a SliTaz package suitable for Tazpkg. 7.24 genpkg_rules() 7.25 { 7.26 - cp -a $_pkg/usr $fs 7.27 + cp -a $install/usr $fs 7.28 } 7.29 -
8.1 --- a/electric-fence/receipt Sat Nov 30 20:43:45 2013 +0000 8.2 +++ b/electric-fence/receipt Mon Dec 02 16:43:36 2013 +0000 8.3 @@ -5,12 +5,14 @@ 8.4 CATEGORY="development" 8.5 SHORT_DESC="Memory allocation debugger" 8.6 MAINTAINER="erjo@slitaz.org" 8.7 -DEPENDS="gdb" 8.8 +LICENSE="GPL2" 8.9 TARBALL="${PACKAGE}_${VERSION}-0.1.tar.gz" 8.10 WEB_SITE="http://perens.com/works/software/" 8.11 WGET_URL="http://perens.com/works/software/ElectricFence/$TARBALL" 8.12 TAGS="debugger" 8.13 8.14 +DEPENDS="gdb" 8.15 + 8.16 # Rules to configure and make the package. 8.17 compile_rules() 8.18 {
9.1 --- a/elfkickers/receipt Sat Nov 30 20:43:45 2013 +0000 9.2 +++ b/elfkickers/receipt Mon Dec 02 16:43:36 2013 +0000 9.3 @@ -6,6 +6,7 @@ 9.4 CATEGORY="system-tools" 9.5 SHORT_DESC="Misc ELF linker format tools." 9.6 MAINTAINER="pascal.bellard@slitaz.org" 9.7 +LICENSE="GPL2" 9.8 TARBALL="$SOURCE-$VERSION.tar.gz" 9.9 WEB_SITE="http://www.muppetlabs.com/~breadbox/software/elfkickers.html" 9.10 WGET_URL="http://www.muppetlabs.com/~breadbox/pub/software//$TARBALL" 9.11 @@ -27,6 +28,6 @@ 9.12 # Rules to gen a SliTaz package suitable for Tazpkg. 9.13 genpkg_rules() 9.14 { 9.15 - cp -a $_pkg/* $fs 9.16 + cp -a $install/* $fs 9.17 } 9.18
10.1 --- a/elilo/receipt Sat Nov 30 20:43:45 2013 +0000 10.2 +++ b/elilo/receipt Mon Dec 02 16:43:36 2013 +0000 10.3 @@ -5,6 +5,7 @@ 10.4 CATEGORY="system-tools" 10.5 SHORT_DESC="The EFI linux boot loader." 10.6 MAINTAINER="pascal.bellard@slitaz.org" 10.7 +LICENSE="GPL2" 10.8 TARBALL="$PACKAGE-$VERSION.tar.gz" 10.9 WEB_SITE="http://elilo.sourceforge.net/" 10.10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
11.1 --- a/emesene/receipt Sat Nov 30 20:43:45 2013 +0000 11.2 +++ b/emesene/receipt Mon Dec 02 16:43:36 2013 +0000 11.3 @@ -5,13 +5,15 @@ 11.4 CATEGORY="network" 11.5 SHORT_DESC="Instant messaging client for Windows Live Messenger (tm) network." 11.6 MAINTAINER="rocky@slitaz.org" 11.7 -DEPENDS="python pygtk pycairo python-pysqlite gst-python" 11.8 -BUILD_DEPENDS="python-dev" 11.9 +LICENSE="GPL2 LGPL2.1" 11.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 11.11 WEB_SITE="http://www.emesene.org" 11.12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 11.13 TAGS="im instant-messaging instant-messenger" 11.14 11.15 +DEPENDS="python pygtk pycairo python-pysqlite gst-python" 11.16 +BUILD_DEPENDS="python-dev" 11.17 + 11.18 # Rules to configure and make the package. 11.19 compile_rules() 11.20 {
12.1 --- a/enca-dev/receipt Sat Nov 30 20:43:45 2013 +0000 12.2 +++ b/enca-dev/receipt Mon Dec 02 16:43:36 2013 +0000 12.3 @@ -5,15 +5,17 @@ 12.4 CATEGORY="development" 12.5 SHORT_DESC="Enca devel files." 12.6 MAINTAINER="pankso@slitaz.org" 12.7 -DEPENDS="enca" 12.8 +LICENSE="GPL2" 12.9 WEB_SITE="http://gitorious.org/enca" 12.10 WANTED="enca" 12.11 12.12 +DEPENDS="enca" 12.13 + 12.14 # Rules to gen a SliTaz package suitable for Tazpkg. 12.15 genpkg_rules() 12.16 { 12.17 mkdir -p $fs/usr/lib 12.18 - cp -a $_pkg/usr/include $fs/usr 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 $install/usr/include $fs/usr 12.22 + cp -a $install/usr/lib/*.*a $fs/usr/lib 12.23 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 12.24 }
13.1 --- a/enca/receipt Sat Nov 30 20:43:45 2013 +0000 13.2 +++ b/enca/receipt Mon Dec 02 16:43:36 2013 +0000 13.3 @@ -5,6 +5,7 @@ 13.4 CATEGORY="x-window" 13.5 SHORT_DESC="Enca is an Extremely Naive Charset Analyser." 13.6 MAINTAINER="pankso@slitaz.org" 13.7 +LICENSE="GPL2" 13.8 TARBALL="$PACKAGE-$VERSION.tar.bz2" 13.9 WEB_SITE="http://gitorious.org/enca" 13.10 WGET_URL="http://dl.cihar.com/enca/$TARBALL" 13.11 @@ -18,14 +19,14 @@ 13.12 --libexecdir=/usr/lib \ 13.13 $CONFIGURE_ARGS && 13.14 make && 13.15 - make DESTDIR=$PWD/_pkg install 13.16 + make DESTDIR=$DESTDIR install 13.17 } 13.18 13.19 # Rules to gen a SliTaz package suitable for Tazpkg. 13.20 genpkg_rules() 13.21 { 13.22 mkdir -p $fs/usr/lib 13.23 - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 13.24 - cp -a $_pkg/usr/lib/enca $fs/usr/lib 13.25 - cp -a $_pkg/usr/bin $fs/usr 13.26 + cp -a $install/usr/lib/*.so* $fs/usr/lib 13.27 + cp -a $install/usr/lib/enca $fs/usr/lib 13.28 + cp -a $install/usr/bin $fs/usr 13.29 }
14.1 --- a/enet/receipt Sat Nov 30 20:43:45 2013 +0000 14.2 +++ b/enet/receipt Mon Dec 02 16:43:36 2013 +0000 14.3 @@ -5,6 +5,7 @@ 14.4 CATEGORY="development" 14.5 SHORT_DESC="relatively thin, simple and robust network communication layer on top of UDP" 14.6 MAINTAINER="devl547@gmail.com" 14.7 +LICENSE="MIT" 14.8 TARBALL="$PACKAGE-$VERSION.tar.gz" 14.9 WEB_SITE="http://enet.bespin.org/" 14.10 WGET_URL="$WEB_SITE/download/$TARBALL" 14.11 @@ -16,13 +17,13 @@ 14.12 ./configure --prefix=/usr --infodir=/usr/share/info \ 14.13 --mandir=/usr/share/man --enable-crc32 $CONFIGURE_ARGS && 14.14 make && 14.15 - make DESTDIR=$PWD/_pkg install 14.16 + make DESTDIR=$DESTDIR install 14.17 } 14.18 14.19 # Rules to gen a SliTaz package suitable for Tazpkg. 14.20 genpkg_rules() 14.21 { 14.22 mkdir -p $fs/usr/lib 14.23 - cp -a $_pkg/usr/lib/*a $fs/usr/lib 14.24 - cp -a $_pkg/usr/include $fs/usr 14.25 + cp -a $install/usr/lib/*a $fs/usr/lib 14.26 + cp -a $install/usr/include $fs/usr 14.27 }
15.1 --- a/enigma/receipt Sat Nov 30 20:43:45 2013 +0000 15.2 +++ b/enigma/receipt Mon Dec 02 16:43:36 2013 +0000 15.3 @@ -6,6 +6,7 @@ 15.4 CATEGORY="games" 15.5 SHORT_DESC="puzzle game similar to Oxyd" 15.6 MAINTAINER="devl547@gmail.com" 15.7 +LICENSE="GPL2" 15.8 TARBALL="$PACKAGE-$VERSION-$REVISION.tar.gz" 15.9 WEB_SITE="http://www.nongnu.org/enigma/" 15.10 WGET_URL="http://download.berlios.de/enigma-game/$TARBALL" 15.11 @@ -31,7 +32,7 @@ 15.12 genpkg_rules() 15.13 { 15.14 mkdir -p $fs/usr/share 15.15 - cp -a $_pkg/usr/bin $fs/usr 15.16 - cp -a $_pkg/usr/lib $fs/usr 15.17 - cp -a $_pkg/usr/share/enigma $fs/usr/share 15.18 + cp -a $install/usr/bin $fs/usr 15.19 + cp -a $install/usr/lib $fs/usr 15.20 + cp -a $install/usr/share/enigma $fs/usr/share 15.21 }
16.1 --- a/erlang/receipt Sat Nov 30 20:43:45 2013 +0000 16.2 +++ b/erlang/receipt Mon Dec 02 16:43:36 2013 +0000 16.3 @@ -5,6 +5,7 @@ 16.4 CATEGORY="development" 16.5 SHORT_DESC="Erlang programming language." 16.6 MAINTAINER="pascal.bellard@slitaz.org" 16.7 +LICENSE="other" 16.8 SOURCE="otp_src" 16.9 TARBALL="${SOURCE}_$VERSION.tar.gz" 16.10 WEB_SITE="http://$PACKAGE.org/" 16.11 @@ -43,5 +44,5 @@ 16.12 # Rules to gen a SliTaz package suitable for Tazpkg. 16.13 genpkg_rules() 16.14 { 16.15 - cp -a $_pkg/usr $fs 16.16 + cp -a $install/usr $fs 16.17 }
17.1 --- a/espeak-dev/receipt Sat Nov 30 20:43:45 2013 +0000 17.2 +++ b/espeak-dev/receipt Mon Dec 02 16:43:36 2013 +0000 17.3 @@ -5,6 +5,7 @@ 17.4 CATEGORY="misc" 17.5 SHORT_DESC="Speech synthesizer devel files." 17.6 MAINTAINER="erjo@slitaz.org" 17.7 +LICENSE="GPL3" 17.8 WANTED="espeak" 17.9 WEB_SITE="http://espeak.sourceforge.net/" 17.10 17.11 @@ -12,7 +13,7 @@ 17.12 genpkg_rules() 17.13 { 17.14 mkdir -p $fs/usr/lib 17.15 - cp -a $_pkg/usr/lib/*.a* $fs/usr/lib 17.16 - cp -a $_pkg/usr/include $fs/usr 17.17 + cp -a $install/usr/lib/*.a* $fs/usr/lib 17.18 + cp -a $install/usr/include $fs/usr 17.19 } 17.20
18.1 --- a/espeak/receipt Sat Nov 30 20:43:45 2013 +0000 18.2 +++ b/espeak/receipt Mon Dec 02 16:43:36 2013 +0000 18.3 @@ -5,13 +5,15 @@ 18.4 CATEGORY="misc" 18.5 SHORT_DESC="Speech synthesizer." 18.6 MAINTAINER="erjo@slitaz.org" 18.7 -DEPENDS="portaudio jack-audio-connection-kit" 18.8 -BUILD_DEPENDS="$DEPENDS portaudio-dev jack-audio-connection-kit-dev" 18.9 +LICENSE="GPL3" 18.10 TARBALL="$PACKAGE-$VERSION-source.zip" 18.11 WEB_SITE="http://espeak.sourceforge.net/" 18.12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 18.13 TAGS="speech synthesis" 18.14 18.15 +DEPENDS="portaudio jack-audio-connection-kit" 18.16 +BUILD_DEPENDS="$DEPENDS portaudio-dev jack-audio-connection-kit-dev" 18.17 + 18.18 # Rules to configure and make the package. 18.19 compile_rules() 18.20 { 18.21 @@ -21,7 +23,7 @@ 18.22 # Using portaudio v19 18.23 cp portaudio19.h portaudio.h 18.24 18.25 - make && make DESTDIR=$src/_pkg install 18.26 + make && make DESTDIR=$DESTDIR install 18.27 } 18.28 18.29 # Rules to gen a SliTaz package suitable for Tazpkg. 18.30 @@ -29,9 +31,9 @@ 18.31 { 18.32 18.33 mkdir -p $fs/usr/lib 18.34 - cp -a $_pkg/usr/bin $fs/usr 18.35 - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 18.36 - cp -a $_pkg/usr/share $fs/usr 18.37 + cp -a $install/usr/bin $fs/usr 18.38 + cp -a $install/usr/lib/*.so* $fs/usr/lib 18.39 + cp -a $install/usr/share $fs/usr 18.40 18.41 # Make symlink 18.42 #cd $fs/usr/lib
19.1 --- a/esterel-scLego/receipt Sat Nov 30 20:43:45 2013 +0000 19.2 +++ b/esterel-scLego/receipt Mon Dec 02 16:43:36 2013 +0000 19.3 @@ -5,23 +5,25 @@ 19.4 CATEGORY="development" 19.5 SHORT_DESC="Esterel langauge tool extension for the Lego MindStorms RCX." 19.6 MAINTAINER="rcx@zoominternet.net" 19.7 -DEPENDS="perl-core" 19.8 -BUILD_DEPENDS="" 19.9 +LICENSE="other" 19.10 TARBALL="$PACKAGE-$VERSION.tgz" 19.11 WEB_SITE="http://www.emn.fr/x-info/lego/" 19.12 WGET_URL="http://users.zoominternet.net/~rcx/$TARBALL" 19.13 19.14 +DEPENDS="perl-core" 19.15 +BUILD_DEPENDS="" 19.16 + 19.17 # Rules to configure and make the package. 19.18 compile_rules() 19.19 { 19.20 - mkdir -p $src/_pkg/usr 19.21 - cp -a $src/bin $src/_pkg/usr 19.22 - cp -a $src/lib $src/_pkg/usr 19.23 + mkdir -p $DESTDIR/usr 19.24 + cp -a $src/bin $DESTDIR/usr 19.25 + cp -a $src/lib $DESTDIR/usr 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 19.32 - cp -a $_pkg/* $fs 19.33 + cp -a $install/* $fs 19.34 }
20.1 --- a/esterel/receipt Sat Nov 30 20:43:45 2013 +0000 20.2 +++ b/esterel/receipt Mon Dec 02 16:43:36 2013 +0000 20.3 @@ -5,24 +5,26 @@ 20.4 CATEGORY="development" 20.5 SHORT_DESC="Esterel langauge tools." 20.6 MAINTAINER="rcx@zoominternet.net" 20.7 -DEPENDS="glibc-base" 20.8 -BUILD_DEPENDS="" 20.9 +LICENSE="other" 20.10 TARBALL="$PACKAGE-$VERSION.tgz" 20.11 WEB_SITE="http://www.emn.fr/x-info/lego/" 20.12 WGET_URL="http://users.zoominternet.net/~rcx/$TARBALL" 20.13 20.14 +DEPENDS="glibc-base" 20.15 +BUILD_DEPENDS="" 20.16 + 20.17 # Rules to configure and make the package. 20.18 compile_rules() 20.19 { 20.20 - mkdir -p $src/_pkg/usr 20.21 - cp -a $src/bin $src/_pkg/usr 20.22 - cp -a $src/include $src/_pkg/usr 20.23 - cp -a $src/share $src/_pkg/usr 20.24 + mkdir -p $DESTDIR/usr 20.25 + cp -a $src/bin $DESTDIR/usr 20.26 + cp -a $src/include $DESTDIR/usr 20.27 + cp -a $src/share $DESTDIR/usr 20.28 } 20.29 20.30 # Rules to gen a SliTaz package suitable for Tazpkg. 20.31 genpkg_rules() 20.32 { 20.33 mkdir -p $fs 20.34 - cp -a $_pkg/* $fs 20.35 + cp -a $install/* $fs 20.36 }
21.1 --- a/etherboot/receipt Sat Nov 30 20:43:45 2013 +0000 21.2 +++ b/etherboot/receipt Mon Dec 02 16:43:36 2013 +0000 21.3 @@ -5,11 +5,13 @@ 21.4 CATEGORY="system-tools" 21.5 SHORT_DESC="Ethernet bootloader for PXE and NBI images." 21.6 MAINTAINER="pascal.bellard@slitaz.org" 21.7 -BUILD_DEPENDS="perl" 21.8 +LICENSE="GPL2" 21.9 TARBALL="$PACKAGE-$VERSION.tar.bz2" 21.10 WEB_SITE="http://www.etherboot.org/" 21.11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 21.12 21.13 +BUILD_DEPENDS="perl" 21.14 + 21.15 # Rules to configure and make the package. 21.16 compile_rules() 21.17 {
22.1 --- a/exif/receipt Sat Nov 30 20:43:45 2013 +0000 22.2 +++ b/exif/receipt Mon Dec 02 16:43:36 2013 +0000 22.3 @@ -5,30 +5,31 @@ 22.4 CATEGORY="graphics" 22.5 SHORT_DESC="Read exif data from images" 22.6 MAINTAINER="sygne@ombres.eu" 22.7 -DEPENDS="libexif popt" 22.8 -BUILD_DEPENDS="libexif libexif-dev popt-dev" 22.9 +LICENSE="LGPL2.1" 22.10 TARBALL="$PACKAGE-$VERSION.tar.bz2" 22.11 WEB_SITE="http://libexif.sourceforge.net/" 22.12 WGET_URL="$SF_MIRROR/libexif/$TARBALL" 22.13 22.14 +DEPENDS="libexif popt" 22.15 +BUILD_DEPENDS="libexif libexif-dev popt-dev" 22.16 + 22.17 # Rules to configure and make the package. 22.18 compile_rules() 22.19 { 22.20 cd $src 22.21 ./configure --prefix=/usr --infodir=/usr/share/info \ 22.22 --mandir=/usr/share/man $CONFIGURE_ARGS && \ 22.23 - make && make DESTDIR=$PWD/_pkg install 22.24 + make && make DESTDIR=$DESTDIR install 22.25 } 22.26 22.27 # Rules to gen a SliTaz package suitable for Tazpkg. 22.28 genpkg_rules() 22.29 { 22.30 mkdir -p $fs/usr 22.31 - cp -a $_pkg/usr/bin $fs/usr 22.32 + cp -a $install/usr/bin $fs/usr 22.33 mkdir -p $fs/usr/share/locale 22.34 for LOCALE in de es fr 22.35 do 22.36 - cp -a -r $_pkg/usr/share/locale/$LOCALE $fs/usr/share/locale 22.37 + cp -a -r $install/usr/share/locale/$LOCALE $fs/usr/share/locale 22.38 done 22.39 } 22.40 -
23.1 --- a/exiftool/receipt Sat Nov 30 20:43:45 2013 +0000 23.2 +++ b/exiftool/receipt Mon Dec 02 16:43:36 2013 +0000 23.3 @@ -5,26 +5,28 @@ 23.4 CATEGORY="system-tools" 23.5 SHORT_DESC="Application for reading, writing and editing meta information in a wide variety of files." 23.6 MAINTAINER="gokhlayeh@slitaz.org" 23.7 -DEPENDS="perl" 23.8 -BUILD_DEPENDS="perl" 23.9 +LICENSE="Artistic" 23.10 SUGGESTED="perl-archive-zip perl-io-compress" 23.11 SOURCE="Image-ExifTool" 23.12 TARBALL="$SOURCE-$VERSION.tar.gz" 23.13 WEB_SITE="http://owl.phy.queensu.ca/~phil/exiftool/" 23.14 WGET_URL="http://owl.phy.queensu.ca/~phil/exiftool/$TARBALL" 23.15 23.16 +DEPENDS="perl" 23.17 +BUILD_DEPENDS="perl" 23.18 + 23.19 # Rules to configure and make the package. 23.20 compile_rules() 23.21 { 23.22 cd $src 23.23 perl Makefile.PL && make && 23.24 - make DESTDIR=$PWD/_pkg install 23.25 + make DESTDIR=$DESTDIR install 23.26 } 23.27 23.28 # Rules to gen a SliTaz package suitable for Tazpkg. 23.29 genpkg_rules() 23.30 { 23.31 - cp -a $_pkg/usr $fs 23.32 + cp -a $install/usr $fs 23.33 rm -rf $fs/usr/share 23.34 } 23.35
24.1 --- a/exiv2-dev/receipt Sat Nov 30 20:43:45 2013 +0000 24.2 +++ b/exiv2-dev/receipt Mon Dec 02 16:43:36 2013 +0000 24.3 @@ -5,15 +5,17 @@ 24.4 CATEGORY="development" 24.5 SHORT_DESC="exiv2 devel files" 24.6 MAINTAINER="jozee@slitaz.org" 24.7 -DEPENDS="exiv2" 24.8 +LICENSE="GPL2" 24.9 WANTED="exiv2" 24.10 WEB_SITE="http://www.exiv2.org/" 24.11 24.12 +DEPENDS="exiv2" 24.13 + 24.14 # Rules to gen a SliTaz package suitable for Tazpkg. 24.15 genpkg_rules() 24.16 { 24.17 mkdir -p $fs/usr/lib 24.18 - cp -a $_pkg/usr/lib/*.a $fs/usr/lib 24.19 - cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 24.20 - cp -a $_pkg/usr/include $fs/usr 24.21 + cp -a $install/usr/lib/*.a $fs/usr/lib 24.22 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 24.23 + cp -a $install/usr/include $fs/usr 24.24 }
25.1 --- a/exiv2/receipt Sat Nov 30 20:43:45 2013 +0000 25.2 +++ b/exiv2/receipt Mon Dec 02 16:43:36 2013 +0000 25.3 @@ -5,12 +5,14 @@ 25.4 CATEGORY="graphics" 25.5 SHORT_DESC="Exif and Iptc metadata manipulation library and tools" 25.6 MAINTAINER="jozee@slitaz.org" 25.7 -DEPENDS="expat zlib gcc-lib-base" 25.8 -BUILD_DEPENDS="gcc-lib-base expat-dev zlib-dev" 25.9 +LICENSE="GPL2" 25.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 25.11 WEB_SITE="http://www.exiv2.org/" 25.12 WGET_URL="$WEB_SITE/$TARBALL" 25.13 25.14 +DEPENDS="expat zlib gcc-lib-base" 25.15 +BUILD_DEPENDS="gcc-lib-base expat-dev zlib-dev" 25.16 + 25.17 # Rules to configure and make the package. 25.18 compile_rules() 25.19 { 25.20 @@ -19,13 +21,13 @@ 25.21 --prefix=/usr \ 25.22 $CONFIGURE_ARGS && 25.23 make && 25.24 - make DESTDIR=$PWD/_pkg install 25.25 + make DESTDIR=$DESTDIR install 25.26 } 25.27 25.28 # Rules to gen a SliTaz package suitable for Tazpkg. 25.29 genpkg_rules() 25.30 { 25.31 mkdir -p $fs/usr/lib 25.32 - cp -a $_pkg/usr/bin $fs/usr 25.33 - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 25.34 + cp -a $install/usr/bin $fs/usr 25.35 + cp -a $install/usr/lib/*.so* $fs/usr/lib 25.36 }
26.1 --- a/expat-dev/receipt Sat Nov 30 20:43:45 2013 +0000 26.2 +++ b/expat-dev/receipt Mon Dec 02 16:43:36 2013 +0000 26.3 @@ -5,6 +5,7 @@ 26.4 CATEGORY="development" 26.5 SHORT_DESC="XML parsing library devel files." 26.6 MAINTAINER="pankso@slitaz.org" 26.7 +LICENSE="MIT" 26.8 WEB_SITE="http://expat.sourceforge.net/" 26.9 WANTED="expat" 26.10 HOST_ARCH="i486 arm" 26.11 @@ -15,6 +16,6 @@ 26.12 genpkg_rules() 26.13 { 26.14 mkdir -p $fs/usr/lib 26.15 - cp -a $install/usr/lib/*.*a $fs/usr/lib 26.16 - cp -a $install/usr/include $fs/usr 26.17 + cp -a $install/usr/lib/*.*a $fs/usr/lib 26.18 + cp -a $install/usr/include $fs/usr 26.19 }
27.1 --- a/expat/receipt Sat Nov 30 20:43:45 2013 +0000 27.2 +++ b/expat/receipt Mon Dec 02 16:43:36 2013 +0000 27.3 @@ -5,6 +5,7 @@ 27.4 CATEGORY="x-window" 27.5 SHORT_DESC="XML parsing library." 27.6 MAINTAINER="pankso@slitaz.org" 27.7 +LICENSE="MIT" 27.8 TARBALL="$PACKAGE-$VERSION.tar.gz" 27.9 WEB_SITE="http://expat.sourceforge.net/" 27.10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
28.1 --- a/expect/receipt Sat Nov 30 20:43:45 2013 +0000 28.2 +++ b/expect/receipt Mon Dec 02 16:43:36 2013 +0000 28.3 @@ -5,6 +5,7 @@ 28.4 CATEGORY="utilities" 28.5 SHORT_DESC="A tool for automating interactive applications." 28.6 MAINTAINER="samuel_trassare@yahoo.com" 28.7 +LICENSE="PublicDomain" 28.8 WEB_SITE="http://expect.sourceforge.net" 28.9 TARBALL="$PACKAGE$VERSION.tar.gz" 28.10 WGET_URL="http://sourceforge.net/projects/$PACKAGE/files/Expect/$VERSION/$TARBALL"
29.1 --- a/expedite/receipt Sat Nov 30 20:43:45 2013 +0000 29.2 +++ b/expedite/receipt Mon Dec 02 16:43:36 2013 +0000 29.3 @@ -5,6 +5,7 @@ 29.4 CATEGORY="graphics" 29.5 SHORT_DESC="Performance and correctness test suite for Evas." 29.6 MAINTAINER="pankso@slitaz.org" 29.7 +LICENSE="BSD" 29.8 TARBALL="$PACKAGE-$VERSION.tar.bz2" 29.9 WEB_SITE="http://www.enlightenment.org/" 29.10 WGET_URL="http://download.enlightenment.org/releases//$TARBALL"
30.1 --- a/faac-dev/receipt Sat Nov 30 20:43:45 2013 +0000 30.2 +++ b/faac-dev/receipt Mon Dec 02 16:43:36 2013 +0000 30.3 @@ -5,15 +5,16 @@ 30.4 CATEGORY="development" 30.5 SHORT_DESC="FAAC is an open source MPEG-4 and MPEG-2 AAC encoder devel files." 30.6 MAINTAINER="paul@slitaz.org" 30.7 -DEPENDS="faac" 30.8 +LICENSE="GPL2" 30.9 WEB_SITE="http://www.audiocoding.com" 30.10 WANTED="faac" 30.11 30.12 +DEPENDS="faac" 30.13 + 30.14 # Rules to gen a SliTaz package suitable for Tazpkg. 30.15 genpkg_rules() 30.16 { 30.17 mkdir -p $fs/usr/lib 30.18 - cp -a $_pkg/usr/include $fs/usr 30.19 - cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 30.20 + cp -a $install/usr/include $fs/usr 30.21 + cp -a $install/usr/lib/*.*a $fs/usr/lib 30.22 } 30.23 -
31.1 --- a/faac/receipt Sat Nov 30 20:43:45 2013 +0000 31.2 +++ b/faac/receipt Mon Dec 02 16:43:36 2013 +0000 31.3 @@ -5,12 +5,14 @@ 31.4 CATEGORY="multimedia" 31.5 SHORT_DESC="FAAC is an open source MPEG-4 and MPEG-2 AAC encoder." 31.6 MAINTAINER="paul@slitaz.org" 31.7 -DEPENDS="gcc-lib-base" 31.8 +LICENSE="GPL2" 31.9 TARBALL="$PACKAGE-$VERSION.tar.gz" 31.10 WEB_SITE="http://www.audiocoding.com" 31.11 WGET_URL="$SF_MIRROR/faac/$TARBALL" 31.12 TAGS="mp4 mpeg encoder" 31.13 31.14 +DEPENDS="gcc-lib-base" 31.15 + 31.16 # Rules to configure and make the package. 31.17 compile_rules() 31.18 { 31.19 @@ -22,14 +24,14 @@ 31.20 --infodir=/usr/share/info \ 31.21 --mandir=/usr/share/man \ 31.22 $CONFIGURE_ARGS && 31.23 - make && make DESTDIR=$PWD/_pkg install 31.24 + make && make DESTDIR=$DESTDIR install 31.25 } 31.26 31.27 # Rules to gen a SliTaz package suitable for Tazpkg. 31.28 genpkg_rules() 31.29 { 31.30 mkdir -p $fs/usr/bin $fs/usr/lib 31.31 - cp -a $_pkg/usr/bin $fs/usr 31.32 - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 31.33 + cp -a $install/usr/bin $fs/usr 31.34 + cp -a $install/usr/lib/*.so* $fs/usr/lib 31.35 } 31.36
32.1 --- a/faad2-dev/receipt Sat Nov 30 20:43:45 2013 +0000 32.2 +++ b/faad2-dev/receipt Mon Dec 02 16:43:36 2013 +0000 32.3 @@ -5,15 +5,16 @@ 32.4 CATEGORY="development" 32.5 SHORT_DESC="FAAD2 is an open source MPEG-4 and MPEG-2 AAC decoder devel files." 32.6 MAINTAINER="slitaz@kacper.se" 32.7 -DEPENDS="faad2" 32.8 +LICENSE="GPL2" 32.9 WEB_SITE="http://www.audiocoding.com" 32.10 WANTED="faad2" 32.11 32.12 +DEPENDS="faad2" 32.13 + 32.14 # Rules to gen a SliTaz package suitable for Tazpkg. 32.15 genpkg_rules() 32.16 { 32.17 mkdir -p $fs/usr/lib 32.18 - cp -a $_pkg/usr/include $fs/usr 32.19 - cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 32.20 + cp -a $install/usr/include $fs/usr 32.21 + cp -a $install/usr/lib/*.*a $fs/usr/lib 32.22 } 32.23 -
33.1 --- a/faad2/receipt Sat Nov 30 20:43:45 2013 +0000 33.2 +++ b/faad2/receipt Mon Dec 02 16:43:36 2013 +0000 33.3 @@ -5,6 +5,7 @@ 33.4 CATEGORY="multimedia" 33.5 SHORT_DESC="FAAD2 is an open source MPEG-4 and MPEG-2 AAC decoder." 33.6 MAINTAINER="slitaz@kacper.se" 33.7 +LICENSE="GPL2" 33.8 TARBALL="$PACKAGE-$VERSION.tar.gz" 33.9 WEB_SITE="http://www.audiocoding.com" 33.10 WGET_URL="$SF_MIRROR/faac/$TARBALL" 33.11 @@ -19,14 +20,14 @@ 33.12 --infodir=/usr/share/info \ 33.13 --mandir=/usr/share/man \ 33.14 $CONFIGURE_ARGS && 33.15 - make && make DESTDIR=$PWD/_pkg install 33.16 + make && make DESTDIR=$DESTDIR install 33.17 } 33.18 33.19 # Rules to gen a SliTaz package suitable for Tazpkg. 33.20 genpkg_rules() 33.21 { 33.22 mkdir -p $fs/usr/lib $fs/usr/bin 33.23 - cp -a $_pkg/usr/bin $fs/usr 33.24 - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 33.25 + cp -a $install/usr/bin $fs/usr 33.26 + cp -a $install/usr/lib/*.so* $fs/usr/lib 33.27 } 33.28
34.1 --- a/fakeroot/receipt Sat Nov 30 20:43:45 2013 +0000 34.2 +++ b/fakeroot/receipt Mon Dec 02 16:43:36 2013 +0000 34.3 @@ -5,6 +5,7 @@ 34.4 CATEGORY="development" 34.5 SHORT_DESC="Gives a fake root environment, useful for building packages as a non-privileged user" 34.6 MAINTAINER="slaxemulator@gmail.com" 34.7 +LICENSE="GPL2" 34.8 TARBALL="${PACKAGE}_${VERSION}.orig.tar.bz2" 34.9 WEB_SITE="http://packages.debian.org/fakeroot" 34.10 WGET_URL="http://ftp.debian.org/debian/pool/main/f/$PACKAGE/$TARBALL" 34.11 @@ -19,14 +20,13 @@ 34.12 --mandir=/usr/share/man \ 34.13 --disable-static \ 34.14 $CONFIGURE_ARGS && 34.15 - make && make DESTDIR=$PWD/_pkg install 34.16 + make && make DESTDIR=$DESTDIR install 34.17 } 34.18 34.19 # Rules to gen a SliTaz package suitable for Tazpkg. 34.20 genpkg_rules() 34.21 { 34.22 mkdir -p $fs/usr/lib 34.23 - cp -a $_pkg/usr/bin $fs/usr 34.24 - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 34.25 + cp -a $install/usr/bin $fs/usr 34.26 + cp -a $install/usr/lib/*.so* $fs/usr/lib 34.27 } 34.28 -
35.1 --- a/fftw-dev/receipt Sat Nov 30 20:43:45 2013 +0000 35.2 +++ b/fftw-dev/receipt Mon Dec 02 16:43:36 2013 +0000 35.3 @@ -4,6 +4,7 @@ 35.4 VERSION="3.2.2" 35.5 CATEGORY="development" 35.6 MAINTAINER="jozee@slitaz.org" 35.7 +LICENSE="GPL2" 35.8 SHORT_DESC="fftw devel files" 35.9 WEB_SITE="http://www.fftw.org/" 35.10 DEPENDS="fftw" 35.11 @@ -13,7 +14,7 @@ 35.12 genpkg_rules() 35.13 { 35.14 mkdir -p $fs/usr/lib 35.15 - cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 35.16 - cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 35.17 - cp -a $_pkg/usr/include $fs/usr 35.18 + cp -a $install/usr/lib/*.*a $fs/usr/lib 35.19 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 35.20 + cp -a $install/usr/include $fs/usr 35.21 }
36.1 --- a/fftw/receipt Sat Nov 30 20:43:45 2013 +0000 36.2 +++ b/fftw/receipt Mon Dec 02 16:43:36 2013 +0000 36.3 @@ -4,6 +4,7 @@ 36.4 VERSION="3.2.2" 36.5 CATEGORY="multimedia" 36.6 MAINTAINER="jozee@slitaz.org" 36.7 +LICENSE="GPL2" 36.8 SHORT_DESC="A library for computing the discrete Fourier transform (DFT)" 36.9 BUILD_DEPENDS="gfortran" 36.10 WEB_SITE="http://www.fftw.org/" 36.11 @@ -41,7 +42,6 @@ 36.12 genpkg_rules() 36.13 { 36.14 mkdir -p $fs/usr/lib $fs/usr/share 36.15 - cp -a $_pkg/usr/bin $fs/usr 36.16 - cp -a $_pkg/usr/lib/*so* $fs/usr/lib/ 36.17 - 36.18 + cp -a $install/usr/bin $fs/usr 36.19 + cp -a $install/usr/lib/*so* $fs/usr/lib/ 36.20 }
37.1 --- a/flac-dev/receipt Sat Nov 30 20:43:45 2013 +0000 37.2 +++ b/flac-dev/receipt Mon Dec 02 16:43:36 2013 +0000 37.3 @@ -5,16 +5,17 @@ 37.4 CATEGORY="development" 37.5 SHORT_DESC="FLAC stands for Free Lossless Audio Codec dev files." 37.6 MAINTAINER="pankso@slitaz.org" 37.7 -DEPENDS="flac" 37.8 +LICENSE="GPL2 LGPL2.1" 37.9 WEB_SITE="http://flac.sourceforge.net/" 37.10 WANTED="flac" 37.11 37.12 +DEPENDS="flac" 37.13 + 37.14 # Rules to gen a SliTaz package suitable for Tazpkg. 37.15 genpkg_rules() 37.16 { 37.17 mkdir -p $fs/usr/lib 37.18 - cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 37.19 - cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 37.20 - cp -a $_pkg/usr/include $fs/usr 37.21 + cp -a $install/usr/lib/*.*a $fs/usr/lib 37.22 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 37.23 + cp -a $install/usr/include $fs/usr 37.24 } 37.25 -
38.1 --- a/flac/receipt Sat Nov 30 20:43:45 2013 +0000 38.2 +++ b/flac/receipt Mon Dec 02 16:43:36 2013 +0000 38.3 @@ -5,13 +5,15 @@ 38.4 CATEGORY="multimedia" 38.5 SHORT_DESC="FLAC stands for Free Lossless Audio Codec." 38.6 MAINTAINER="pankso@slitaz.org" 38.7 +LICENSE="GPL2 LGPL2.1" 38.8 TARBALL="$PACKAGE-$VERSION.tar.gz" 38.9 -DEPENDS="libogg gcc-lib-base" 38.10 -BUILD_DEPENDS="libogg-dev" 38.11 WEB_SITE="http://flac.sourceforge.net/" 38.12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 38.13 TAGS="codec audio" 38.14 38.15 +DEPENDS="libogg gcc-lib-base" 38.16 +BUILD_DEPENDS="libogg-dev" 38.17 + 38.18 # Rules to configure and make the package. 38.19 compile_rules() 38.20 { 38.21 @@ -30,7 +32,7 @@ 38.22 genpkg_rules() 38.23 { 38.24 mkdir -p $fs/usr/lib 38.25 - cp -a $_pkg/usr/bin $fs/usr 38.26 - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 38.27 + cp -a $install/usr/bin $fs/usr 38.28 + cp -a $install/usr/lib/*.so* $fs/usr/lib 38.29 } 38.30
39.1 --- a/flam3-dev/receipt Sat Nov 30 20:43:45 2013 +0000 39.2 +++ b/flam3-dev/receipt Mon Dec 02 16:43:36 2013 +0000 39.3 @@ -5,15 +5,16 @@ 39.4 CATEGORY="development" 39.5 SHORT_DESC="Tools to create/display fractal flames: algorithmically generated images and animations (devel files)" 39.6 MAINTAINER="gokhlayeh@slitaz.org" 39.7 -DEPENDS="flam3" 39.8 +LICENSE="GPL3" 39.9 WANTED="flam3" 39.10 WEB_SITE="http://flam3.com/" 39.11 39.12 +DEPENDS="flam3" 39.13 + 39.14 # Rules to gen a SliTaz package suitable for Tazpkg. 39.15 genpkg_rules() 39.16 { 39.17 mkdir -p $fs/usr 39.18 - cp -a $_pkg/usr/lib $fs/usr 39.19 - cp -a $_pkg/usr/include $fs/usr 39.20 + cp -a $install/usr/lib $fs/usr 39.21 + cp -a $install/usr/include $fs/usr 39.22 } 39.23 -
40.1 --- a/flam3/receipt Sat Nov 30 20:43:45 2013 +0000 40.2 +++ b/flam3/receipt Mon Dec 02 16:43:36 2013 +0000 40.3 @@ -5,12 +5,14 @@ 40.4 CATEGORY="graphics" 40.5 SHORT_DESC="Tools to create/display fractal flames: algorithmically generated images and animations" 40.6 MAINTAINER="gokhlayeh@slitaz.org" 40.7 -DEPENDS="expat libjpeg libpng libxml2" 40.8 -BUILD_DEPENDS="expat-dev jpeg-dev libpng-dev libxml2-dev" 40.9 +LICENSE="GPL3" 40.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 40.11 WEB_SITE="http://flam3.com/" 40.12 WGET_URL="http://flam3.googlecode.com/files/$TARBALL" 40.13 40.14 +DEPENDS="expat libjpeg libpng libxml2" 40.15 +BUILD_DEPENDS="expat-dev jpeg-dev libpng-dev libxml2-dev" 40.16 + 40.17 # Rules to configure and make the package. 40.18 compile_rules() 40.19 { 40.20 @@ -20,15 +22,15 @@ 40.21 --infodir=/usr/share/info \ 40.22 --mandir=/usr/share/man \ 40.23 $CONFIGURE_ARGS && 40.24 - make $MAKEFLAGS && make DESTDIR=$PWD/../_pkg install 40.25 + make $MAKEFLAGS && make DESTDIR=$DESTDIR install 40.26 } 40.27 40.28 # Rules to gen a SliTaz package suitable for Tazpkg. 40.29 genpkg_rules() 40.30 { 40.31 mkdir -p $fs/usr/share 40.32 - cp -a $_pkg/usr/bin $fs/usr/ 40.33 - cp -a $_pkg/usr/share/flam3 $fs/usr/share/ 40.34 + cp -a $install/usr/bin $fs/usr/ 40.35 + cp -a $install/usr/share/flam3 $fs/usr/share/ 40.36 } 40.37 40.38
41.1 --- a/flatpress/receipt Sat Nov 30 20:43:45 2013 +0000 41.2 +++ b/flatpress/receipt Mon Dec 02 16:43:36 2013 +0000 41.3 @@ -5,6 +5,7 @@ 41.4 CATEGORY="network" 41.5 SHORT_DESC="Blog engine without SQL." 41.6 MAINTAINER="pascal.bellard@slitaz.org" 41.7 +LICENSE="GPL2" 41.8 TARBALL="$PACKAGE-$VERSION-sotto-voce.tar.bz2" 41.9 WEB_SITE="http://flatpress.org/home/" 41.10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 41.11 @@ -22,5 +23,5 @@ 41.12 # Rules to gen a SliTaz package suitable for Tazpkg. 41.13 genpkg_rules() 41.14 { 41.15 - cp -a $_pkg/* $fs 41.16 + cp -a $install/* $fs 41.17 }
42.1 --- a/fpm2/receipt Sat Nov 30 20:43:45 2013 +0000 42.2 +++ b/fpm2/receipt Mon Dec 02 16:43:36 2013 +0000 42.3 @@ -4,14 +4,16 @@ 42.4 VERSION="0.76.1" 42.5 CATEGORY="utilities" 42.6 SHORT_DESC="Password manager." 42.7 +MAINTAINER="pankso@slitaz.org" 42.8 +LICENSE="GPL2" 42.9 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 42.10 +WEB_SITE="http://als.regnet.cz/fpm2/" 42.11 +WGET_URL="http://als.regnet.cz/fpm2/download/$TARBALL" 42.12 + 42.13 DEPENDS="expat gtk+ libxml2 xorg-libX11 xorg-libXau xorg-libXcomposite \ 42.14 xorg-libXcursor xorg-libXdmcp xorg-libXext xorg-libXfixes xorg-libXinerama \ 42.15 xorg-libXrandr xorg-libXrender xorg-libXdamage" 42.16 BUILD_DEPENDS="gtk+-dev libxml2-dev" 42.17 -MAINTAINER="pankso@slitaz.org" 42.18 -TARBALL="$PACKAGE-$VERSION.tar.bz2" 42.19 -WEB_SITE="http://als.regnet.cz/fpm2/" 42.20 -WGET_URL="http://als.regnet.cz/fpm2/download/$TARBALL" 42.21 42.22 # Rules to configure and make the package. 42.23 compile_rules() 42.24 @@ -21,12 +23,12 @@ 42.25 --prefix=/usr \ 42.26 --mandir=/usr/share/man && 42.27 make && 42.28 - make DESTDIR=$PWD/_pkg install 42.29 + make DESTDIR=$DESTDIR install 42.30 } 42.31 42.32 # Rules to gen a SliTaz package suitable for Tazpkg. 42.33 genpkg_rules() 42.34 { 42.35 mkdir -p $fs/usr 42.36 - cp -a $_pkg/usr/bin $fs/usr 42.37 + cp -a $install/usr/bin $fs/usr 42.38 }
43.1 --- a/freeimage-dev/receipt Sat Nov 30 20:43:45 2013 +0000 43.2 +++ b/freeimage-dev/receipt Mon Dec 02 16:43:36 2013 +0000 43.3 @@ -5,15 +5,17 @@ 43.4 CATEGORY="development" 43.5 SHORT_DESC="freeimage devel files" 43.6 MAINTAINER="jozee@slitaz.org" 43.7 -DEPENDS="freeimage" 43.8 +LICENSE="GPL2" 43.9 WANTED="freeimage" 43.10 SOURCE="FreeImage" 43.11 WEB_SITE="http://freeimage.sourceforge.net/" 43.12 43.13 +DEPENDS="freeimage" 43.14 + 43.15 # Rules to gen a SliTaz package suitable for Tazpkg. 43.16 genpkg_rules() 43.17 { 43.18 mkdir -p $fs/usr/lib 43.19 - cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 43.20 - cp -a $_pkg/usr/include $fs/usr 43.21 + cp -a $install/usr/lib/*.*a $fs/usr/lib 43.22 + cp -a $install/usr/include $fs/usr 43.23 }
44.1 --- a/freeimage/receipt Sat Nov 30 20:43:45 2013 +0000 44.2 +++ b/freeimage/receipt Mon Dec 02 16:43:36 2013 +0000 44.3 @@ -5,13 +5,15 @@ 44.4 CATEGORY="graphics" 44.5 SHORT_DESC="library to support popular graphics image formats like PNG, BMP, JPEG, TIFF and others" 44.6 MAINTAINER="jozee@slitaz.org" 44.7 -DEPENDS="gcc-lib-base" 44.8 -BUILD_DEPENDS="gcc-lib-base" 44.9 +LICENSE="GPL2" 44.10 SOURCE="FreeImage" 44.11 TARBALL="$SOURCE$VERSION.zip" 44.12 WEB_SITE="http://freeimage.sourceforge.net/" 44.13 WGET_URL="http://downloads.sourceforge.net/$PACKAGE/$TARBALL" 44.14 44.15 +DEPENDS="gcc-lib-base" 44.16 +BUILD_DEPENDS="gcc-lib-base" 44.17 + 44.18 # Rules to configure and make the package. 44.19 compile_rules() 44.20 { 44.21 @@ -33,6 +35,6 @@ 44.22 genpkg_rules() 44.23 { 44.24 mkdir -p $fs/usr/lib 44.25 - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 44.26 + cp -a $install/usr/lib/*.so* $fs/usr/lib 44.27 44.28 }
45.1 --- a/frei0r-plugins-dev/receipt Sat Nov 30 20:43:45 2013 +0000 45.2 +++ b/frei0r-plugins-dev/receipt Mon Dec 02 16:43:36 2013 +0000 45.3 @@ -4,14 +4,16 @@ 45.4 VERSION="1.3" 45.5 CATEGORY="development" 45.6 MAINTAINER="jozee@slitaz.org" 45.7 +LICENSE="GPL2" 45.8 SHORT_DESC="frei0r-plugins devel files" 45.9 WEB_SITE="http://www.piksel.org/frei0r" 45.10 +WANTED="frei0r-plugins" 45.11 + 45.12 DEPENDS="frei0r-plugins" 45.13 -WANTED="frei0r-plugins" 45.14 45.15 # Rules to gen a SliTaz package suitable for Tazpkg. 45.16 genpkg_rules() 45.17 { 45.18 mkdir -p $fs/usr 45.19 - cp -a $_pkg/usr/include $fs/usr 45.20 + cp -a $install/usr/include $fs/usr 45.21 }
46.1 --- a/frei0r-plugins/receipt Sat Nov 30 20:43:45 2013 +0000 46.2 +++ b/frei0r-plugins/receipt Mon Dec 02 16:43:36 2013 +0000 46.3 @@ -4,14 +4,16 @@ 46.4 VERSION="1.3" 46.5 CATEGORY="multimedia" 46.6 MAINTAINER="jozee@slitaz.org" 46.7 +LICENSE="GPL2" 46.8 SHORT_DESC="frei0r is a minimalistic plugin API for video sources and filters." 46.9 -BUILD_DEPENDS="gavl-dev" 46.10 WEB_SITE="http://www.piksel.org/frei0r" 46.11 -DEPENDS="gcc-lib-base gavl" 46.12 TARBALL="$PACKAGE-$VERSION.tar.gz" 46.13 WGET_URL="http://ftp.dyne.org/frei0r/releases/$TARBALL" 46.14 TAGS="multimedia" 46.15 46.16 +DEPENDS="gcc-lib-base gavl" 46.17 +BUILD_DEPENDS="gavl-dev" 46.18 + 46.19 # Rules to configure and make the package. 46.20 46.21 compile_rules() { 46.22 @@ -24,6 +26,6 @@ 46.23 genpkg_rules() 46.24 { 46.25 mkdir -p $fs/usr/lib/frei0r-1 46.26 - cp -a $_pkg/usr/lib/frei0r-1/*so* $fs/usr/lib/frei0r-1 46.27 + cp -a $install/usr/lib/frei0r-1/*so* $fs/usr/lib/frei0r-1 46.28 46.29 }
47.1 --- a/fswebcam/receipt Sat Nov 30 20:43:45 2013 +0000 47.2 +++ b/fswebcam/receipt Mon Dec 02 16:43:36 2013 +0000 47.3 @@ -4,15 +4,17 @@ 47.4 VERSION="20070108" 47.5 CATEGORY="misc" 47.6 MAINTAINER="jozee@slitaz.org" 47.7 +LICENSE="GPL2" 47.8 SHORT_DESC="Tiny and flexible webcam app" 47.9 -BUILD_DEPENDS="$DEPENDS libgd-dev" 47.10 WEB_SITE="http://www.firestorm.cx/fswebcam/" 47.11 -DEPENDS="libgd" 47.12 CONFIG_FILES="etc/fswebcam.conf" 47.13 TARBALL="$PACKAGE-$VERSION.tar.gz" 47.14 WGET_URL="$WEB_SITE/files/$TARBALL" 47.15 TAGS="webcam" 47.16 47.17 +DEPENDS="libgd" 47.18 +BUILD_DEPENDS="$DEPENDS libgd-dev" 47.19 + 47.20 # Rules to configure and make the package. 47.21 47.22 compile_rules() { 47.23 @@ -27,7 +29,7 @@ 47.24 EOT 47.25 ./configure --prefix=/usr && 47.26 make && 47.27 - make DESTDIR=$PWD/_pkg install 47.28 + make DESTDIR=$DESTDIR install 47.29 } 47.30 47.31 # Rules to gen a SliTaz package suitable for Tazpkg. 47.32 @@ -35,5 +37,5 @@ 47.33 { 47.34 mkdir -p $fs/etc $fs/usr 47.35 cp -a stuff/fswebcam.conf $fs/etc/fswebcam.conf 47.36 - cp -a $_pkg/usr/bin $fs/usr 47.37 + cp -a $install/usr/bin $fs/usr 47.38 }
48.1 --- a/funionfs/receipt Sat Nov 30 20:43:45 2013 +0000 48.2 +++ b/funionfs/receipt Mon Dec 02 16:43:36 2013 +0000 48.3 @@ -5,13 +5,15 @@ 48.4 CATEGORY="system-tools" 48.5 SHORT_DESC="Union filesystem implemented with FUSE." 48.6 MAINTAINER="pascal.bellard@slitaz.org" 48.7 -BUILD_DEPENDS="fuse-dev" 48.8 -DEPENDS="fuse" 48.9 +LICENSE="GPL2" 48.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 48.11 WEB_SITE="http://funionfs.apiou.org/" 48.12 WGET_URL="${WEB_SITE}file/$TARBALL" 48.13 TAGS="filesystem" 48.14 48.15 +BUILD_DEPENDS="fuse-dev" 48.16 +DEPENDS="fuse" 48.17 + 48.18 # Rules to configure and make the package. 48.19 compile_rules() 48.20 { 48.21 @@ -28,11 +30,11 @@ 48.22 --libexecdir=/usr/bin --mandir=/usr/share/man \ 48.23 $CONFIGURE_ARGS && 48.24 make && 48.25 - make DESTDIR=$PWD/_pkg install 48.26 + make DESTDIR=$DESTDIR install 48.27 } 48.28 48.29 # Rules to gen a SliTaz package suitable for Tazpkg. 48.30 genpkg_rules() 48.31 { 48.32 - cp -a $_pkg/bin $fs 48.33 + cp -a $install/bin $fs 48.34 }