wok rev 15600
Add some licenses
line diff
1.1 --- a/gc-dev/receipt Thu Dec 05 13:21:20 2013 +0000 1.2 +++ b/gc-dev/receipt Thu Dec 05 15:25:09 2013 +0000 1.3 @@ -5,6 +5,7 @@ 1.4 CATEGORY="development" 1.5 SHORT_DESC="A garbage collector for C and C++ devel files (with libatomic_ops)." 1.6 MAINTAINER="pankso@slitaz.org" 1.7 +LICENSE="MIT GPL" 1.8 WANTED="gc" 1.9 WEB_SITE="http://www.hpl.hp.com/personal/Hans_Boehm/gc/" 1.10
2.1 --- a/gc/receipt Thu Dec 05 13:21:20 2013 +0000 2.2 +++ b/gc/receipt Thu Dec 05 15:25:09 2013 +0000 2.3 @@ -5,6 +5,7 @@ 2.4 CATEGORY="development" 2.5 SHORT_DESC="A garbage collector for C and C++." 2.6 MAINTAINER="pankso@slitaz.org" 2.7 +LICENSE="MIT GPL" 2.8 TARBALL="$PACKAGE-$VERSION.tar.gz" 2.9 WEB_SITE="http://www.hpl.hp.com/personal/Hans_Boehm/gc/" 2.10 WGET_URL="http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/$TARBALL"
3.1 --- a/geany-plugins/receipt Thu Dec 05 13:21:20 2013 +0000 3.2 +++ b/geany-plugins/receipt Thu Dec 05 15:25:09 2013 +0000 3.3 @@ -5,12 +5,14 @@ 3.4 CATEGORY="development" 3.5 SHORT_DESC="Additionnal plugins for Geany." 3.6 MAINTAINER="pankso@slitaz.org" 3.7 -DEPENDS="enchant gtkspell geany lua" 3.8 -BUILD_DEPENDS="gtkspell-dev geany-dev lua-dev intltool libxml2-dev vte-dev " 3.9 +LICENSE="GPL2" 3.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 3.11 WEB_SITE="http://plugins.geany.org/" 3.12 WGET_URL="$WEB_SITE/$PACKAGE/$TARBALL" 3.13 3.14 +DEPENDS="enchant gtkspell geany lua" 3.15 +BUILD_DEPENDS="gtkspell-dev geany-dev lua-dev intltool libxml2-dev vte-dev " 3.16 + 3.17 # Rules to configure and make the package. 3.18 compile_rules() 3.19 {
4.1 --- a/gen-init-cpio/receipt Thu Dec 05 13:21:20 2013 +0000 4.2 +++ b/gen-init-cpio/receipt Thu Dec 05 15:25:09 2013 +0000 4.3 @@ -4,14 +4,16 @@ 4.4 VERSION="2.6.32" 4.5 CATEGORY="base-system" 4.6 MAINTAINER="devel@slitaz.org" 4.7 +LICENSE="GPL2" 4.8 SHORT_DESC="Program to compress initramfs images" 4.9 WEB_SITE="http://www.kernel.org/" 4.10 -DEPENDS="glibc-base" 4.11 -BUILD_DEPENDS="" 4.12 TARBALL="" 4.13 WGET_URL="" 4.14 TAGS="" 4.15 4.16 +DEPENDS="glibc-base" 4.17 +BUILD_DEPENDS="" 4.18 + 4.19 # Rules to configure and make the package. 4.20 4.21 compile_rules()
5.1 --- a/giblib-dev/receipt Thu Dec 05 13:21:20 2013 +0000 5.2 +++ b/giblib-dev/receipt Thu Dec 05 15:25:09 2013 +0000 5.3 @@ -5,14 +5,16 @@ 5.4 CATEGORY="graphics" 5.5 SHORT_DESC="Giblib graphic library development files." 5.6 MAINTAINER="mallory@sweetpeople.org" 5.7 -DEPENDS="giblib" 5.8 +LICENSE="MIT" 5.9 WANTED="giblib" 5.10 WEB_SITE="http://linuxbrit.co.uk/feh/" 5.11 5.12 +DEPENDS="giblib" 5.13 + 5.14 # Rules to gen a SliTaz package suitable for Tazpkg. 5.15 genpkg_rules() 5.16 { 5.17 mkdir -p $fs/usr/include $fs/usr/lib 5.18 - cp -a $_pkg/usr/include $fs/usr 5.19 - cp -a $_pkg/usr/lib/*a $fs/usr/lib 5.20 + cp -a $install/usr/include $fs/usr 5.21 + cp -a $install/usr/lib/*a $fs/usr/lib 5.22 }
6.1 --- a/giblib/receipt Thu Dec 05 13:21:20 2013 +0000 6.2 +++ b/giblib/receipt Thu Dec 05 15:25:09 2013 +0000 6.3 @@ -5,26 +5,28 @@ 6.4 CATEGORY="graphics" 6.5 SHORT_DESC="Giblib graphic library." 6.6 MAINTAINER="mallory@sweetpeople.org" 6.7 -DEPENDS="imlib2 freetype xorg-libX11 xorg-libXau xorg-libXdmcp xorg-libXext" 6.8 -BUILD_DEPENDS="imlib2-dev imlib2 xorg-xproto freetype-dev xorg-libXext-dev" 6.9 +LICENSE="MIT" 6.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 6.11 WEB_SITE="http://linuxbrit.co.uk/feh/" 6.12 WGET_URL="http://linuxbrit.co.uk/downloads/$TARBALL" 6.13 6.14 +DEPENDS="imlib2 freetype xorg-libX11 xorg-libXau xorg-libXdmcp xorg-libXext" 6.15 +BUILD_DEPENDS="imlib2-dev imlib2 xorg-xproto freetype-dev xorg-libXext-dev" 6.16 + 6.17 # Rules to configure and make the package. 6.18 compile_rules() 6.19 { 6.20 cd $src 6.21 ./configure --prefix=/usr $CONFIGURE_ARGS && 6.22 make && 6.23 - make DESTDIR=$PWD/_pkg install 6.24 + make DESTDIR=$DESTDIR install 6.25 } 6.26 6.27 # Rules to gen a SliTaz package suitable for Tazpkg. 6.28 genpkg_rules() 6.29 { 6.30 mkdir -p $fs/usr 6.31 - cp -a $_pkg/usr/bin $fs/usr 6.32 - cp -a $_pkg/usr/lib $fs/usr 6.33 + cp -a $install/usr/bin $fs/usr 6.34 + cp -a $install/usr/lib $fs/usr 6.35 rm -f $fs/usr/lib/*a 6.36 }
7.1 --- a/giflib-dev/receipt Thu Dec 05 13:21:20 2013 +0000 7.2 +++ b/giflib-dev/receipt Thu Dec 05 15:25:09 2013 +0000 7.3 @@ -6,13 +6,15 @@ 7.4 SHORT_DESC="giflib devel files." 7.5 WEB_SITE="http://sourceforge.net/projects/giflib/" 7.6 MAINTAINER="rcx@zoominternet.net" 7.7 +LICENSE="MIT" 7.8 +WANTED="giflib" 7.9 + 7.10 DEPENDS="giflib" 7.11 -WANTED="giflib" 7.12 7.13 # Rules to gen a SliTaz package suitable for Tazpkg. 7.14 genpkg_rules() 7.15 { 7.16 mkdir -p $fs/usr/lib 7.17 - cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 7.18 - cp -a $_pkg/usr/include $fs/usr 7.19 + cp -a $install/usr/lib/*.*a $fs/usr/lib 7.20 + cp -a $install/usr/include $fs/usr 7.21 }
8.1 --- a/giflib/receipt Thu Dec 05 13:21:20 2013 +0000 8.2 +++ b/giflib/receipt Thu Dec 05 15:25:09 2013 +0000 8.3 @@ -5,12 +5,14 @@ 8.4 CATEGORY="graphics" 8.5 SHORT_DESC="A library for processing GIFs." 8.6 MAINTAINER="rcx@zoominternet.net" 8.7 +LICENSE="MIT" 8.8 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 8.9 +WEB_SITE="http://sourceforge.net/projects/giflib/" 8.10 +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 8.11 + 8.12 DEPENDS="glibc-base xorg-libSM xorg-libICE xorg-libX11 xorg-libXau \ 8.13 xorg-libXdmcp" 8.14 BUILD_DEPENDS="util-linux-uuid-dev libtool" 8.15 -TARBALL="$PACKAGE-$VERSION.tar.bz2" 8.16 -WEB_SITE="http://sourceforge.net/projects/giflib/" 8.17 -WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 8.18 8.19 # Rules to configure and make the package. 8.20 compile_rules() 8.21 @@ -34,8 +36,8 @@ 8.22 genpkg_rules() 8.23 { 8.24 mkdir -p $fs/usr 8.25 - cp -a $_pkg/usr/bin $fs/usr 8.26 + cp -a $install/usr/bin $fs/usr 8.27 mkdir -p $fs/usr/lib 8.28 - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 8.29 + cp -a $install/usr/lib/*.so* $fs/usr/lib 8.30 } 8.31
9.1 --- a/git-gui/receipt Thu Dec 05 13:21:20 2013 +0000 9.2 +++ b/git-gui/receipt Thu Dec 05 15:25:09 2013 +0000 9.3 @@ -4,25 +4,27 @@ 9.4 CATEGORY="development" 9.5 SHORT_DESC="Graphical interface for the Git dRCS." 9.6 MAINTAINER="ben@seawolfsanctuary.com" 9.7 -DEPENDS="tk git" 9.8 -BUILD_DEPENDS="$DEPENDS" 9.9 +LICENSE="BSD" 9.10 WEB_SITE="http://www.kernel.org/pub/software/scm/git/docs/git-gui.html" 9.11 WGET_URL="git|http://repo.or.cz/r/git-gui.git" 9.12 BRANCH="gitgui-$VERSION" 9.13 9.14 +DEPENDS="tk git" 9.15 +BUILD_DEPENDS="$DEPENDS" 9.16 + 9.17 # Rules to configure and make the package. 9.18 compile_rules() 9.19 { 9.20 cd $src 9.21 make clean 9.22 - make && make DESTDIR=$PWD/_pkg install 9.23 + make && make DESTDIR=$DESTDIR install 9.24 } 9.25 9.26 # Rules to gen a SliTaz package suitable for Tazpkg. 9.27 genpkg_rules() 9.28 { 9.29 mkdir -p $fs 9.30 - cp -a $_pkg/usr $fs/ 9.31 + cp -a $install/usr $fs/ 9.32 9.33 # Extra icons, .desktop file etc.: 9.34 cp -a $stuff/* $fs/usr
10.1 --- a/glew-dev/receipt Thu Dec 05 13:21:20 2013 +0000 10.2 +++ b/glew-dev/receipt Thu Dec 05 15:25:09 2013 +0000 10.3 @@ -5,6 +5,7 @@ 10.4 CATEGORY="development" 10.5 SHORT_DESC="The OpenGL Extension Wrangler Library. (devel files)" 10.6 MAINTAINER="pascal.bellard@slitaz.org" 10.7 +LICENSE="MIT BSD" 10.8 WEB_SITE="http://glew.sourceforge.net/" 10.9 WANTED="glew" 10.10 10.11 @@ -14,8 +15,8 @@ 10.12 genpkg_rules() 10.13 { 10.14 mkdir -p $fs/usr/lib 10.15 - cp -a $_pkg/usr/include $fs/usr 10.16 - cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 10.17 - cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 10.18 + cp -a $install/usr/include $fs/usr 10.19 + cp -a $install/usr/lib/*.*a $fs/usr/lib 10.20 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 10.21 } 10.22
11.1 --- a/glew/receipt Thu Dec 05 13:21:20 2013 +0000 11.2 +++ b/glew/receipt Thu Dec 05 15:25:09 2013 +0000 11.3 @@ -5,6 +5,7 @@ 11.4 CATEGORY="x-window" 11.5 SHORT_DESC="The OpenGL Extension Wrangler Library." 11.6 MAINTAINER="pascal.bellard@slitaz.org" 11.7 +LICENSE="MIT BSD" 11.8 TARBALL="$PACKAGE-$VERSION.tgz" 11.9 WEB_SITE="http://glew.sourceforge.net/" 11.10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
12.1 --- a/gnuplot/receipt Thu Dec 05 13:21:20 2013 +0000 12.2 +++ b/gnuplot/receipt Thu Dec 05 15:25:09 2013 +0000 12.3 @@ -5,9 +5,11 @@ 12.4 CATEGORY="graphics" 12.5 SHORT_DESC="Command-line driven interactive data and function plotting." 12.6 MAINTAINER="pascal.bellard@slitaz.org" 12.7 +LICENSE="BSD" 12.8 TARBALL="$PACKAGE-$VERSION.tar.gz" 12.9 WEB_SITE="http://www.gnuplot.info/" 12.10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 12.11 + 12.12 DEPENDS="zlib readline ncurses libgd jpeg freetype libpng gcc-lib-base \ 12.13 xorg-libXpm xorg-libX11 xorg-libXau xorg-libXdmcp fontconfig expat wxWidgets \ 12.14 xorg-libXxf86vm" 12.15 @@ -26,14 +28,14 @@ 12.16 --mandir=/usr/share/man \ 12.17 $CONFIGURE_ARGS && 12.18 make && 12.19 - make DESTDIR=$PWD/_pkg install 12.20 + make DESTDIR=$DESTDIR install 12.21 } 12.22 12.23 # Rules to gen a SliTaz package suitable for Tazpkg. 12.24 genpkg_rules() 12.25 { 12.26 mkdir -p $fs/usr/share 12.27 - cp -a $_pkg/usr/bin $fs/usr 12.28 - cp -a $_pkg/usr/lib $fs/usr 12.29 - cp -a $_pkg/usr/share/gnuplot $fs/usr/share 12.30 + cp -a $install/usr/bin $fs/usr 12.31 + cp -a $install/usr/lib $fs/usr 12.32 + cp -a $install/usr/share/gnuplot $fs/usr/share 12.33 }
13.1 --- a/google-apps/receipt Thu Dec 05 13:21:20 2013 +0000 13.2 +++ b/google-apps/receipt Thu Dec 05 15:25:09 2013 +0000 13.3 @@ -5,6 +5,7 @@ 13.4 CATEGORY="network" 13.5 SHORT_DESC="Set of desktop files for Google Web applications." 13.6 MAINTAINER="pankso@slitaz.org" 13.7 +LICENSE="BSD" 13.8 WEB_SITE="http://www.slitaz.org/" 13.9 TAGS="google online-tools" 13.10
14.1 --- a/gperiodic/receipt Thu Dec 05 13:21:20 2013 +0000 14.2 +++ b/gperiodic/receipt Thu Dec 05 15:25:09 2013 +0000 14.3 @@ -5,12 +5,14 @@ 14.4 CATEGORY="misc" 14.5 SHORT_DESC="A periodic table element" 14.6 MAINTAINER="erjo@slitaz.org" 14.7 -DEPENDS="gtk+ xorg-libXdamage" 14.8 -BUILD_DEPENDS="gtk+-dev" 14.9 +LICENSE="GPL2" 14.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 14.11 WEB_SITE="http://www.frantz.fi/software/gperiodic.php" 14.12 WGET_URL="http://www.frantz.fi/software/$TARBALL" 14.13 14.14 +DEPENDS="gtk+ xorg-libXdamage" 14.15 +BUILD_DEPENDS="gtk+-dev" 14.16 + 14.17 # Rules to configure and make the package. 14.18 compile_rules() 14.19 {
15.1 --- a/gpick/receipt Thu Dec 05 13:21:20 2013 +0000 15.2 +++ b/gpick/receipt Thu Dec 05 15:25:09 2013 +0000 15.3 @@ -5,6 +5,7 @@ 15.4 CATEGORY="graphics" 15.5 SHORT_DESC="Advanced color picker written in C++ using GTK+ toolkit" 15.6 MAINTAINER="al.bobylev@gmail.com" 15.7 +LICENSE="BSD" 15.8 WEB_SITE="http://code.google.com/p/gpick/" 15.9 TARBALL="${PACKAGE}_$VERSION.tar.gz" 15.10 WGET_URL="http://$PACKAGE.googlecode.com/files/$TARBALL"
16.1 --- a/graphviz-dev/receipt Thu Dec 05 13:21:20 2013 +0000 16.2 +++ b/graphviz-dev/receipt Thu Dec 05 15:25:09 2013 +0000 16.3 @@ -5,6 +5,7 @@ 16.4 CATEGORY="development" 16.5 SHORT_DESC="Automatic graph drawing development files." 16.6 MAINTAINER="pascal.bellard@slitaz.org" 16.7 +LICENSE="Eclipse" 16.8 WEB_SITE="http://www.graphviz.org/" 16.9 WANTED="graphviz" 16.10 16.11 @@ -12,8 +13,7 @@ 16.12 genpkg_rules() 16.13 { 16.14 mkdir -p $fs/usr/lib/graphviz 16.15 - cp -a $_pkg/usr/lib/*a $fs/usr/lib 16.16 - cp -a $_pkg/usr/lib/graphviz/*.la $fs/usr/lib/graphviz 16.17 - cp -a $_pkg/usr/include $fs/usr 16.18 + cp -a $install/usr/lib/*a $fs/usr/lib 16.19 + cp -a $install/usr/lib/graphviz/*.la $fs/usr/lib/graphviz 16.20 + cp -a $install/usr/include $fs/usr 16.21 } 16.22 -
17.1 --- a/graphviz-doc/receipt Thu Dec 05 13:21:20 2013 +0000 17.2 +++ b/graphviz-doc/receipt Thu Dec 05 15:25:09 2013 +0000 17.3 @@ -5,6 +5,7 @@ 17.4 CATEGORY="development" 17.5 SHORT_DESC="Automatic graph drawing documentation files." 17.6 MAINTAINER="pascal.bellard@slitaz.org" 17.7 +LICENSE="Eclipse" 17.8 WEB_SITE="http://www.graphviz.org/" 17.9 WANTED="graphviz" 17.10 17.11 @@ -12,6 +13,5 @@ 17.12 genpkg_rules() 17.13 { 17.14 mkdir -p $fs/usr/share/graphviz 17.15 - cp -a $_pkg/usr/share/graphviz/doc $fs/usr/share/graphviz 17.16 + cp -a $install/usr/share/graphviz/doc $fs/usr/share/graphviz 17.17 } 17.18 -
18.1 --- a/graphviz/receipt Thu Dec 05 13:21:20 2013 +0000 18.2 +++ b/graphviz/receipt Thu Dec 05 15:25:09 2013 +0000 18.3 @@ -5,6 +5,7 @@ 18.4 CATEGORY="x-window" 18.5 SHORT_DESC="Automatic graph drawing." 18.6 MAINTAINER="pascal.bellard@slitaz.org" 18.7 +LICENSE="Eclipse" 18.8 TARBALL="$PACKAGE-$VERSION.tar.gz" 18.9 WEB_SITE="http://www.graphviz.org/" 18.10 WGET_URL="${WEB_SITE}pub/$PACKAGE/ARCHIVE/$TARBALL" 18.11 @@ -54,20 +55,19 @@ 18.12 --disable-r \ 18.13 --mandir=/usr/share/man $CONFIGURE_ARGS && 18.14 make && 18.15 - make DESTDIR=$PWD/_pkg install 18.16 + make DESTDIR=$DESTDIR install 18.17 } 18.18 18.19 # Rules to gen a SliTaz package suitable for Tazpkg. 18.20 genpkg_rules() 18.21 { 18.22 mkdir -p $fs/usr/lib $fs/usr/share/graphviz 18.23 - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 18.24 - cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib/ 18.25 - cp -a $_pkg/usr/lib/graphviz $fs/usr/lib/ 18.26 + cp -a $install/usr/lib/*.so* $fs/usr/lib 18.27 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib/ 18.28 + cp -a $install/usr/lib/graphviz $fs/usr/lib/ 18.29 rm -f $fs/usr/lib/graphviz/*.la 18.30 - cp -a $_pkg/usr/share/graphviz/lefty $fs/usr/share/graphviz 18.31 - cp -a $_pkg/usr/share/graphviz/smyrna $fs/usr/share/graphviz 18.32 - cp -a $_pkg/usr/share/graphviz/graphs $fs/usr/share/graphviz 18.33 - cp -a $_pkg/usr/bin $fs/usr 18.34 + cp -a $install/usr/share/graphviz/lefty $fs/usr/share/graphviz 18.35 + cp -a $install/usr/share/graphviz/smyrna $fs/usr/share/graphviz 18.36 + cp -a $install/usr/share/graphviz/graphs $fs/usr/share/graphviz 18.37 + cp -a $install/usr/bin $fs/usr 18.38 } 18.39 -
19.1 --- a/gtktetris/receipt Thu Dec 05 13:21:20 2013 +0000 19.2 +++ b/gtktetris/receipt Thu Dec 05 15:25:09 2013 +0000 19.3 @@ -5,11 +5,14 @@ 19.4 CATEGORY="games" 19.5 SHORT_DESC="Simple tetris game using GTK." 19.6 MAINTAINER="pankso@slitaz.org" 19.7 -DEPENDS="gtk+ xorg-libXdamage" 19.8 -BUILD_DEPENDS="gtk+-dev" 19.9 +LICENSE="GPL2" 19.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 19.11 WEB_SITE="http://sourceforge.net/projects/gtktetris/" 19.12 WGET_URL="http://mirror.slitaz.org/sources/packages/g/$TARBALL" 19.13 + 19.14 +DEPENDS="gtk+ xorg-libXdamage" 19.15 +BUILD_DEPENDS="gtk+-dev" 19.16 + 19.17 # Rules to configure and make the package. 19.18 compile_rules() 19.19 {
20.1 --- a/guichan-dev/receipt Thu Dec 05 13:21:20 2013 +0000 20.2 +++ b/guichan-dev/receipt Thu Dec 05 15:25:09 2013 +0000 20.3 @@ -5,6 +5,7 @@ 20.4 CATEGORY="development" 20.5 SHORT_DESC="a portable C++ GUI library designed for games using Allegro, SDL and/or OpenGL" 20.6 MAINTAINER="devl547@gmail.com" 20.7 +LICENSE="BSD" 20.8 WEB_SITE="http://guichan.sourceforge.net/" 20.9 WANTED="guichan" 20.10 20.11 @@ -14,8 +15,7 @@ 20.12 genpkg_rules() 20.13 { 20.14 mkdir -p $fs/usr/lib 20.15 - cp -a $_pkg/usr/lib/*a $fs/usr/lib 20.16 - cp -a $_pkg/usr/include $fs/usr 20.17 - cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 20.18 + cp -a $install/usr/lib/*a $fs/usr/lib 20.19 + cp -a $install/usr/include $fs/usr 20.20 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 20.21 } 20.22 -
21.1 --- a/guichan/receipt Thu Dec 05 13:21:20 2013 +0000 21.2 +++ b/guichan/receipt Thu Dec 05 15:25:09 2013 +0000 21.3 @@ -5,12 +5,14 @@ 21.4 CATEGORY="development" 21.5 SHORT_DESC="a portable C++ GUI library designed for games using Allegro, SDL and/or OpenGL" 21.6 MAINTAINER="devl547@gmail.com" 21.7 -DEPENDS="libsdl libsdl-image" 21.8 -BUILD_DEPENDS="libsdl-dev libsdl-image-dev" 21.9 +LICENSE="BSD" 21.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 21.11 WEB_SITE="http://guichan.sourceforge.net/" 21.12 WGET_URL="http://$PACKAGE.googlecode.com/files/$TARBALL" 21.13 21.14 +DEPENDS="libsdl libsdl-image" 21.15 +BUILD_DEPENDS="libsdl-dev libsdl-image-dev" 21.16 + 21.17 # Rules to configure and make the package. 21.18 compile_rules() 21.19 { 21.20 @@ -18,12 +20,12 @@ 21.21 ./configure --prefix=/usr $CONFIGURE_ARGS \ 21.22 --enable-sdl && 21.23 make && 21.24 - make DESTDIR=$PWD/_pkg install 21.25 + make DESTDIR=$DESTDIR install 21.26 } 21.27 21.28 # Rules to gen a SliTaz package suitable for Tazpkg. 21.29 genpkg_rules() 21.30 { 21.31 mkdir -p $fs/usr/lib 21.32 - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 21.33 + cp -a $install/usr/lib/*.so* $fs/usr/lib 21.34 }
22.1 --- a/gummi/receipt Thu Dec 05 13:21:20 2013 +0000 22.2 +++ b/gummi/receipt Thu Dec 05 15:25:09 2013 +0000 22.3 @@ -5,6 +5,7 @@ 22.4 CATEGORY="office" 22.5 SHORT_DESC="LaTeX editor designed with simplicity in mind." 22.6 MAINTAINER="pankso@slitaz.org" 22.7 +LICENSE="MIT" 22.8 TARBALL="$PACKAGE-$VERSION.tar.gz" 22.9 WEB_SITE="http://dev.midnightcoding.org/projects/gummi" 22.10 WGET_URL="http://dev.midnightcoding.org/attachments/download/239/$TARBALL"
23.1 --- a/gvim/receipt Thu Dec 05 13:21:20 2013 +0000 23.2 +++ b/gvim/receipt Thu Dec 05 15:25:09 2013 +0000 23.3 @@ -5,7 +5,7 @@ 23.4 CATEGORY="development" 23.5 SHORT_DESC="Advanced text editor, with gtk+ GUI" 23.6 MAINTAINER="erjo@slitaz.org" 23.7 -DEPENDS="ncurses gtk+ xorg-libXt xorg-libXau xorg-libXdmcp" 23.8 +LICENSE="other" 23.9 SOURCE="vim" 23.10 TARBALL="$SOURCE-$VERSION.tar.bz2" 23.11 WEB_SITE="http://www.vim.org/" 23.12 @@ -13,6 +13,8 @@ 23.13 CONFIG_FILES="/etc/vim/vimrc" 23.14 TAGS="text-editor" 23.15 23.16 +DEPENDS="ncurses gtk+ xorg-libXt xorg-libXau xorg-libXdmcp" 23.17 + 23.18 # Rules to configure and make the package. 23.19 compile_rules() 23.20 { 23.21 @@ -46,11 +48,11 @@ 23.22 { 23.23 mkdir -p $fs/usr/share/pixmaps $fs/usr/share/applications $fs/etc 23.24 23.25 - cp -a $_pkg/usr/bin $fs/usr 23.26 - cp -a $_pkg/usr/share/vim $fs/usr/share 23.27 + cp -a $install/usr/bin $fs/usr 23.28 + cp -a $install/usr/share/vim $fs/usr/share 23.29 cp -a $src/runtime/vim16x16.png $fs/usr/share/pixmaps/gvim.png 23.30 cp -a stuff/gvim.desktop $fs/usr/share/applications 23.31 - cp -a $_pkg/etc/vim $fs/etc 23.32 + cp -a $install/etc/vim $fs/etc 23.33 } 23.34 23.35 post_install()
24.1 --- a/hal-info/receipt Thu Dec 05 13:21:20 2013 +0000 24.2 +++ b/hal-info/receipt Thu Dec 05 15:25:09 2013 +0000 24.3 @@ -5,12 +5,14 @@ 24.4 CATEGORY="x-window" 24.5 SHORT_DESC="hal sub-package that provides the hardware data and quirks. " 24.6 MAINTAINER="domcox@slitaz.org" 24.7 -DEPENDS="hal hal-extra" 24.8 -BUILD_DEPENDS="hal-dev pkg-config" 24.9 +LICENSE="GPL2 LGPL2.1" 24.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 24.11 WEB_SITE="http://www.freedesktop.org/wiki/Software/hal" 24.12 WGET_URL="http://hal.freedesktop.org/releases/$TARBALL" 24.13 24.14 +DEPENDS="hal hal-extra" 24.15 +BUILD_DEPENDS="hal-dev pkg-config" 24.16 + 24.17 # Rules to configure and make the package. 24.18 compile_rules() 24.19 { 24.20 @@ -25,11 +27,11 @@ 24.21 --disable-recall \ 24.22 $CONFIGURE_ARGS && 24.23 make && 24.24 - make DESTDIR=$PWD/_pkg install 24.25 + make DESTDIR=$DESTDIR install 24.26 } 24.27 24.28 # Rules to gen a SliTaz package suitable for Tazpkg. 24.29 genpkg_rules() 24.30 { 24.31 - cp -a $_pkg/usr $fs/ 24.32 + cp -a $install/usr $fs/ 24.33 }
25.1 --- a/hashalot/receipt Thu Dec 05 13:21:20 2013 +0000 25.2 +++ b/hashalot/receipt Thu Dec 05 15:25:09 2013 +0000 25.3 @@ -5,6 +5,7 @@ 25.4 CATEGORY="system-tools" 25.5 SHORT_DESC="Passphrase to binary key filter." 25.6 MAINTAINER="pascal.bellard@slitaz.org" 25.7 +LICENSE="GPL2" 25.8 TARBALL="$PACKAGE-$VERSION.tar.gz" 25.9 WEB_SITE="http://www.paranoiacs.org/~sluskyb/hacks/hashalot" 25.10 WGET_URL="$WEB_SITE/$TARBALL" 25.11 @@ -15,12 +16,12 @@ 25.12 cd $src 25.13 ./configure --prefix=/usr $CONFIGURE_ARGS && 25.14 make && 25.15 - make DESTDIR=$PWD/_pkg install 25.16 + make DESTDIR=$DESTDIR install 25.17 } 25.18 25.19 # Rules to gen a SliTaz package suitable for Tazpkg. 25.20 genpkg_rules() 25.21 { 25.22 mkdir -p $fs/usr 25.23 - cp -a $_pkg/usr/sbin $fs/usr 25.24 + cp -a $install/usr/sbin $fs/usr 25.25 }
26.1 --- a/hatenarunner/receipt Thu Dec 05 13:21:20 2013 +0000 26.2 +++ b/hatenarunner/receipt Thu Dec 05 15:25:09 2013 +0000 26.3 @@ -5,6 +5,7 @@ 26.4 CATEGORY="games" 26.5 SHORT_DESC="Loderunner game in javascript" 26.6 MAINTAINER="pascal.bellard@slitaz.org" 26.7 +LICENSE="MIT" 26.8 WEB_SITE="http://lodedome.no-ip.com/" 26.9 TARBALL="JavaScript_Hatena.Runner_Satoshi.Ueyama.zip" 26.10 #_WGET_URL="http://lodedome.no-ip.com/download.php?rfname=$TARBALL&request_id=Lode_5BBAB6F85D944A4A5CB7AC12B0BFD18D"
27.1 --- a/hdf5-dev/receipt Thu Dec 05 13:21:20 2013 +0000 27.2 +++ b/hdf5-dev/receipt Thu Dec 05 15:25:09 2013 +0000 27.3 @@ -5,6 +5,7 @@ 27.4 CATEGORY="development" 27.5 SHORT_DESC="a data model, library, and file format for storing and managing data." 27.6 MAINTAINER="pascal.bellard@slitaz.org" 27.7 +LICENSE="BSD" 27.8 WEB_SITE="http://www.hdfgroup.org/HDF5" 27.9 WANTED="hdf5" 27.10
28.1 --- a/hdf5/receipt Thu Dec 05 13:21:20 2013 +0000 28.2 +++ b/hdf5/receipt Thu Dec 05 15:25:09 2013 +0000 28.3 @@ -5,6 +5,7 @@ 28.4 CATEGORY="misc" 28.5 SHORT_DESC="a data model, library, and file format for storing and managing data." 28.6 MAINTAINER="pascal.bellard@slitaz.org" 28.7 +LICENSE="BSD" 28.8 WEB_SITE="http://www.hdfgroup.org/HDF5" 28.9 TARBALL="$PACKAGE-$VERSION.tar.bz2" 28.10 WGET_URL="http://www.hdfgroup.org/ftp/HDF5/current/src/$TARBALL"
29.1 --- a/hicolor-icon-theme/receipt Thu Dec 05 13:21:20 2013 +0000 29.2 +++ b/hicolor-icon-theme/receipt Thu Dec 05 15:25:09 2013 +0000 29.3 @@ -5,6 +5,7 @@ 29.4 CATEGORY="misc" 29.5 SHORT_DESC="Icon theme that all icon themes automatically inherit from." 29.6 MAINTAINER="pankso@slitaz.org" 29.7 +LICENSE="GPL2" 29.8 TARBALL="$PACKAGE-$VERSION.tar.gz" 29.9 WEB_SITE="http://icon-theme.freedesktop.org/wiki/HicolorTheme" 29.10 WGET_URL="http://icon-theme.freedesktop.org/releases/$TARBALL" 29.11 @@ -16,13 +17,13 @@ 29.12 ./configure --prefix=/usr --infodir=/usr/share/info \ 29.13 --mandir=/usr/share/man $CONFIGURE_ARGS 29.14 make 29.15 - make DESTDIR=$PWD/_pkg install 29.16 + make DESTDIR=$DESTDIR install 29.17 } 29.18 29.19 # Rules to gen a SliTaz package suitable for Tazpkg. 29.20 genpkg_rules() 29.21 { 29.22 mkdir -p $fs/usr/share/icons/hicolor 29.23 - cp $_pkg/usr/share/icons/hicolor/index.theme $fs/usr/share/icons/hicolor 29.24 - cp -a $_pkg/usr/share/icons/hicolor/24x24 $fs/usr/share/icons/hicolor 29.25 + cp $install/usr/share/icons/hicolor/index.theme $fs/usr/share/icons/hicolor 29.26 + cp -a $install/usr/share/icons/hicolor/24x24 $fs/usr/share/icons/hicolor 29.27 }
30.1 --- a/hsetroot/receipt Thu Dec 05 13:21:20 2013 +0000 30.2 +++ b/hsetroot/receipt Thu Dec 05 15:25:09 2013 +0000 30.3 @@ -5,14 +5,16 @@ 30.4 CATEGORY="x-window" 30.5 SHORT_DESC="Tool to set desktop wallpaper." 30.6 MAINTAINER="pankso@slitaz.org" 30.7 -DEPENDS="imlib2 libpng freetype xorg-libX11 xorg-libXau xorg-libXdmcp \ 30.8 -xorg-libXext" 30.9 -BUILD_DEPENDS="imlib2-dev libpng-dev" 30.10 +LICENSE="GPL2" 30.11 TARBALL="$PACKAGE-$VERSION.tar.gz" 30.12 WEB_SITE="http://thegraveyard.org/hsetroot.php" 30.13 WGET_URL="http://thegraveyard.org/files/$TARBALL" 30.14 TAGS="wallpaper" 30.15 30.16 +DEPENDS="imlib2 libpng freetype xorg-libX11 xorg-libXau xorg-libXdmcp \ 30.17 +xorg-libXext" 30.18 +BUILD_DEPENDS="imlib2-dev libpng-dev" 30.19 + 30.20 # Rules to configure and make the package. 30.21 compile_rules() 30.22 { 30.23 @@ -21,12 +23,12 @@ 30.24 --prefix=/usr \ 30.25 $CONFIGURE_ARGS && 30.26 make && 30.27 - make DESTDIR=$PWD/_pkg install 30.28 + make DESTDIR=$DESTDIR install 30.29 } 30.30 30.31 # Rules to gen a SliTaz package suitable for Tazpkg. 30.32 genpkg_rules() 30.33 { 30.34 mkdir -p $fs/usr 30.35 - cp -a $_pkg/usr/bin $fs/usr 30.36 + cp -a $install/usr/bin $fs/usr 30.37 }
31.1 --- a/ht/receipt Thu Dec 05 13:21:20 2013 +0000 31.2 +++ b/ht/receipt Thu Dec 05 15:25:09 2013 +0000 31.3 @@ -5,12 +5,14 @@ 31.4 CATEGORY="development" 31.5 SHORT_DESC="File viewer/editor/analyser for text/binary/executable files." 31.6 MAINTAINER="pascal.bellard@slitaz.org" 31.7 +LICENSE="GPL2" 31.8 TARBALL="$PACKAGE-$VERSION.tar.gz" 31.9 WEB_SITE="http://hte.sourceforge.net/" 31.10 WGET_URL="$SF_MIRROR/hte/$TARBALL" 31.11 +TAGS="viewer editor analyser" 31.12 + 31.13 DEPENDS="gcc-lib-base lzo ncurses xorg-libX11 xorg-libXau xorg-libXdmcp" 31.14 BUILD_DEPENDS="lzo-dev ncurses-dev" 31.15 -TAGS="viewer editor analyser" 31.16 31.17 # Rules to configure and make the package. 31.18 compile_rules() 31.19 @@ -21,12 +23,12 @@ 31.20 --mandir=/usr/share/man \ 31.21 $CONFIGURE_ARGS && 31.22 make && 31.23 - make DESTDIR=$PWD/_pkg install 31.24 + 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 - cp -a $_pkg/usr $fs 31.31 + cp -a $install/usr $fs 31.32 } 31.33
32.1 --- a/httpfs-fuse-static/receipt Thu Dec 05 13:21:20 2013 +0000 32.2 +++ b/httpfs-fuse-static/receipt Thu Dec 05 15:25:09 2013 +0000 32.3 @@ -5,11 +5,13 @@ 32.4 CATEGORY="system-tools" 32.5 SHORT_DESC="HTTP Filesystem implemented with FUSE." 32.6 MAINTAINER="pascal.bellard@slitaz.org" 32.7 -DEPENDS="fuse" 32.8 +LICENSE="GPL" 32.9 WEB_SITE="http://httpfs.sourceforge.net/" 32.10 WANTED="httpfs-fuse" 32.11 TAGS="filesystem" 32.12 32.13 +DEPENDS="fuse" 32.14 + 32.15 # Rules to gen a SliTaz package suitable for Tazpkg. 32.16 genpkg_rules() 32.17 {
33.1 --- a/httpfs-fuse/receipt Thu Dec 05 13:21:20 2013 +0000 33.2 +++ b/httpfs-fuse/receipt Thu Dec 05 15:25:09 2013 +0000 33.3 @@ -5,14 +5,16 @@ 33.4 CATEGORY="system-tools" 33.5 SHORT_DESC="HTTP Filesystem implemented with FUSE." 33.6 MAINTAINER="pascal.bellard@slitaz.org" 33.7 -DEPENDS="fuse" 33.8 -BUILD_DEPENDS="fuse-dev" 33.9 +LICENSE="GPL2" 33.10 SOURCE="httpfs_with_static_binaries" 33.11 TARBALL="${SOURCE}_$VERSION.tar.gz" 33.12 WEB_SITE="http://httpfs.sourceforge.net/" 33.13 WGET_URL="$SF_MIRROR/httpfs/$TARBALL" 33.14 TAGS="filesystem" 33.15 33.16 +DEPENDS="fuse" 33.17 +BUILD_DEPENDS="fuse-dev" 33.18 + 33.19 # Rules to configure and make the package. 33.20 compile_rules() 33.21 { 33.22 @@ -27,5 +29,5 @@ 33.23 genpkg_rules() 33.24 { 33.25 mkdir -p $fs/usr 33.26 - cp -a $_pkg/usr/bin $fs/usr 33.27 + cp -a $install/usr/bin $fs/usr 33.28 }
34.1 --- a/httptunnel/receipt Thu Dec 05 13:21:20 2013 +0000 34.2 +++ b/httptunnel/receipt Thu Dec 05 15:25:09 2013 +0000 34.3 @@ -5,6 +5,7 @@ 34.4 CATEGORY="network" 34.5 SHORT_DESC="httptunnel creates a bidirectianal virtual data connection tunnelled in HTTP requests" 34.6 MAINTAINER="slaxemulator@gmail.com" 34.7 +LICENSE="GPL2" 34.8 TARBALL="$PACKAGE-$VERSION.tar.gz" 34.9 WEB_SITE="http://www.nocrew.org/software/httptunnel" 34.10 WGET_URL="$WEB_SITE/$TARBALL" 34.11 @@ -20,6 +21,6 @@ 34.12 genpkg_rules() 34.13 { 34.14 mkdir -p $fs/usr 34.15 - cp -a $_pkg/usr/bin $fs/usr 34.16 + cp -a $install/usr/bin $fs/usr 34.17 } 34.18
35.1 --- a/hubbub-dev/receipt Thu Dec 05 13:21:20 2013 +0000 35.2 +++ b/hubbub-dev/receipt Thu Dec 05 15:25:09 2013 +0000 35.3 @@ -5,6 +5,7 @@ 35.4 CATEGORY="development" 35.5 SHORT_DESC="Hubbub HTML parser devel files." 35.6 MAINTAINER="pankso@slitaz.org" 35.7 +LICENSE="MIT" 35.8 WANTED="hubbub" 35.9 WEB_SITE="http://www.netsurf-browser.org/projects/hubbub/" 35.10 35.11 @@ -14,7 +15,7 @@ 35.12 genpkg_rules() 35.13 { 35.14 mkdir -p $fs/usr/lib 35.15 - cp -a $_pkg/usr/include $fs/usr 35.16 - cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 35.17 - cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 35.18 + cp -a $install/usr/include $fs/usr 35.19 + cp -a $install/usr/lib/*.*a $fs/usr/lib 35.20 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 35.21 }
36.1 --- a/hubbub/receipt Thu Dec 05 13:21:20 2013 +0000 36.2 +++ b/hubbub/receipt Thu Dec 05 15:25:09 2013 +0000 36.3 @@ -5,6 +5,7 @@ 36.4 CATEGORY="system-tools" 36.5 SHORT_DESC="Hubbub is a flexible HTML parser." 36.6 MAINTAINER="pankso@slitaz.org" 36.7 +LICENSE="MIT" 36.8 TARBALL="$PACKAGE-$VERSION.tar.bz2" 36.9 WEB_SITE="http://www.netsurf-browser.org/projects/hubbub/" 36.10 WGET_URL="subversion|svn://svn.netsurf-browser.org/trunk/hubbub"
37.1 --- a/i3-man/receipt Thu Dec 05 13:21:20 2013 +0000 37.2 +++ b/i3-man/receipt Thu Dec 05 15:25:09 2013 +0000 37.3 @@ -5,6 +5,7 @@ 37.4 CATEGORY="x-window" 37.5 SHORT_DESC="i3 tiling window manager man pages" 37.6 MAINTAINER="Yehuda Ringler <ybringler@gmail.com>" 37.7 +LICENSE="BSD" 37.8 WEB_SITE="http://i3wm.org" 37.9 WANTED="i3" 37.10
38.1 --- a/i3/receipt Thu Dec 05 13:21:20 2013 +0000 38.2 +++ b/i3/receipt Thu Dec 05 15:25:09 2013 +0000 38.3 @@ -5,9 +5,11 @@ 38.4 CATEGORY="x-window" 38.5 SHORT_DESC="i3 tiling window manager" 38.6 MAINTAINER="Yehuda Ringler <ybringler@gmail.com>" 38.7 +LICENSE="BSD" 38.8 WEB_SITE="http://i3wm.org" 38.9 TARBALL="$PACKAGE-$VERSION.tar.bz2" 38.10 WGET_URL="$WEB_SITE/downloads/$TARBALL" 38.11 + 38.12 DEPENDS="libxcb xorg-libXcursor xorg-libX11 yajl libev dmenu \ 38.13 startup-notification xcb-util" 38.14 BUILD_DEPENDS="make gcc pkg-config xcb-proto libxcb-dev xcb-util-dev \
39.1 --- a/i3status/receipt Thu Dec 05 13:21:20 2013 +0000 39.2 +++ b/i3status/receipt Thu Dec 05 15:25:09 2013 +0000 39.3 @@ -5,9 +5,11 @@ 39.4 CATEGORY="x-window" 39.5 SHORT_DESC="i3 status bar" 39.6 MAINTAINER="Yehuda Ringler <ybringler@gmail.com>" 39.7 +LICENSE="BSD" 39.8 WEB_SITE="http://i3wm.org/i3status" 39.9 TARBALL="$PACKAGE-$VERSION.tar.bz2" 39.10 WGET_URL="$WEB_SITE/$TARBALL" 39.11 + 39.12 DEPENDS="alsa-lib yajl wireless_tools" 39.13 BUILD_DEPENDS="make gcc alsa-lib-dev dev86 libconfuse wireless_tools-dev yajl" 39.14
40.1 --- a/iasl/receipt Thu Dec 05 13:21:20 2013 +0000 40.2 +++ b/iasl/receipt Thu Dec 05 15:25:09 2013 +0000 40.3 @@ -5,12 +5,14 @@ 40.4 CATEGORY="development" 40.5 SHORT_DESC="Intel ACPI Source Language compiler" 40.6 MAINTAINER="slaxemulator@gmail.com" 40.7 -BUILD_DEPENDS="flex bison" 40.8 +LICENSE="other" 40.9 SOURCE="acpica-unix" 40.10 TARBALL="$SOURCE-$VERSION.tar.gz" 40.11 WEB_SITE="http://acpica.org" 40.12 WGET_URL="$WEB_SITE/download/$TARBALL" 40.13 40.14 +BUILD_DEPENDS="flex bison" 40.15 + 40.16 # Rules to configure and make the package. 40.17 compile_rules() 40.18 {
41.1 --- a/iat/receipt Thu Dec 05 13:21:20 2013 +0000 41.2 +++ b/iat/receipt Thu Dec 05 15:25:09 2013 +0000 41.3 @@ -6,6 +6,7 @@ 41.4 SHORT_DESC="iat (Iso9660 Analyzer Tool) converts many types of CD-ROM \ 41.5 image file formats and converting them into ISO-9660." 41.6 MAINTAINER="chadi.elahmad@gmail.com" 41.7 +LICENSE="GPL2" 41.8 41.9 TARBALL="$PACKAGE-$VERSION-src.tar.bz2" 41.10 WEB_SITE="http://iat.berlios.de/" 41.11 @@ -30,13 +31,12 @@ 41.12 --infodir=/usr/share/info \ 41.13 $CONFIGURE_ARGS && \ 41.14 make && \ 41.15 - make DESTDIR=$PWD/_pkg install 41.16 + make DESTDIR=$DESTDIR install 41.17 } 41.18 41.19 # Rules to gen a SliTaz package suitable for Tazpkg. 41.20 genpkg_rules() 41.21 { 41.22 mkdir -p $fs/usr/bin 41.23 - cp -a $_pkg/usr/bin $fs/usr 41.24 + cp -a $install/usr/bin $fs/usr 41.25 } 41.26 -
42.1 --- a/icinga/receipt Thu Dec 05 13:21:20 2013 +0000 42.2 +++ b/icinga/receipt Thu Dec 05 15:25:09 2013 +0000 42.3 @@ -5,12 +5,14 @@ 42.4 CATEGORY="system-tools" 42.5 SHORT_DESC="Open Source host, service and network monitoring program" 42.6 MAINTAINER="erjo@slitaz.org" 42.7 -DEPENDS="" 42.8 -BUILD_DEPENDS="" 42.9 +LICENSE="GPL2" 42.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 42.11 WEB_SITE="http://www.icinga.org" 42.12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 42.13 42.14 +DEPENDS="" 42.15 +BUILD_DEPENDS="" 42.16 + 42.17 # Rules to configure and make the package. 42.18 compile_rules() 42.19 { 42.20 @@ -46,6 +48,5 @@ 42.21 genpkg_rules() 42.22 { 42.23 mkdir -p $fs/usr/share/icinga 42.24 - cp -a $_pkg/usr/bin $fs/usr 42.25 + cp -a $install/usr/bin $fs/usr 42.26 } 42.27 -
43.1 --- a/icmptx/receipt Thu Dec 05 13:21:20 2013 +0000 43.2 +++ b/icmptx/receipt Thu Dec 05 15:25:09 2013 +0000 43.3 @@ -5,6 +5,7 @@ 43.4 CATEGORY="network" 43.5 SHORT_DESC="Tunnel IP connections using ICMP echo request." 43.6 MAINTAINER="pascal.bellard@slitaz.org" 43.7 +LICENSE="GPL3" 43.8 SOURCE="jakkarth-icmptx-0386ff2" 43.9 TARBALL="$SOURCE.tar.gz" 43.10 WEB_SITE="http://github.com/jakkarth/icmptx"
44.1 --- a/icon-naming-utils/receipt Thu Dec 05 13:21:20 2013 +0000 44.2 +++ b/icon-naming-utils/receipt Thu Dec 05 15:25:09 2013 +0000 44.3 @@ -5,12 +5,14 @@ 44.4 CATEGORY="x-window" 44.5 SHORT_DESC="Perl script used for desktop icon compatibility" 44.6 MAINTAINER="pankso@slitaz.org" 44.7 -DEPENDS="perl perl-xml-simple" 44.8 -BUILD_DEPENDS="perl perl-xml-simple" 44.9 +LICENSE="GPL2" 44.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 44.11 WEB_SITE="http://tango.freedesktop.org/" 44.12 WGET_URL="http://tango.freedesktop.org/releases/$TARBALL" 44.13 44.14 +DEPENDS="perl perl-xml-simple" 44.15 +BUILD_DEPENDS="perl perl-xml-simple" 44.16 + 44.17 # Rules to configure and make the package. 44.18 compile_rules() 44.19 { 44.20 @@ -20,20 +22,20 @@ 44.21 --libexecdir=/usr/lib/icon-naming-utils \ 44.22 $CONFIGURE_ARGS && 44.23 make && 44.24 - make DESTDIR=$PWD/_pkg install 44.25 + make DESTDIR=$DESTDIR install 44.26 } 44.27 44.28 # Rules to gen a SliTaz package suitable for Tazpkg. 44.29 genpkg_rules() 44.30 { 44.31 mkdir -p $fs/usr/share 44.32 - cp -a $_pkg/usr/lib $fs/usr 44.33 - cp -a $_pkg/usr/share/dtds $fs/usr/share 44.34 - cp -a $_pkg/usr/share/$PACKAGE $fs/usr/share 44.35 + cp -a $install/usr/lib $fs/usr 44.36 + cp -a $install/usr/share/dtds $fs/usr/share 44.37 + cp -a $install/usr/share/$PACKAGE $fs/usr/share 44.38 44.39 chmod +x $fs/usr/lib/$PACKAGE/* 44.40 44.41 # For one file we are not going to build a -dev pkg 44.42 - cp -a $_pkg/usr/share/pkgconfig $fs/usr/lib 44.43 + cp -a $install/usr/share/pkgconfig $fs/usr/lib 44.44 } 44.45
45.1 --- a/id3lib-dev/receipt Thu Dec 05 13:21:20 2013 +0000 45.2 +++ b/id3lib-dev/receipt Thu Dec 05 15:25:09 2013 +0000 45.3 @@ -5,6 +5,7 @@ 45.4 CATEGORY="development" 45.5 SHORT_DESC="Devel files for id3lib." 45.6 MAINTAINER="pankso@slitaz.org" 45.7 +LICENSE="GPL2" 45.8 WANTED="id3lib" 45.9 WEB_SITE="http://id3lib.sourceforge.net/" 45.10 45.11 @@ -12,7 +13,6 @@ 45.12 genpkg_rules() 45.13 { 45.14 mkdir -p $fs/usr/lib 45.15 - cp -a $_pkg/usr/include $fs/usr 45.16 - cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 45.17 + cp -a $install/usr/include $fs/usr 45.18 + cp -a $install/usr/lib/*.*a $fs/usr/lib 45.19 } 45.20 -
46.1 --- a/id3lib/receipt Thu Dec 05 13:21:20 2013 +0000 46.2 +++ b/id3lib/receipt Thu Dec 05 15:25:09 2013 +0000 46.3 @@ -5,11 +5,13 @@ 46.4 CATEGORY="multimedia" 46.5 SHORT_DESC="Library to manipulate ID3v1 and ID3v2 tags." 46.6 MAINTAINER="pankso@slitaz.org" 46.7 +LICENSE="GPL2" 46.8 TARBALL="$PACKAGE-$VERSION.tar.gz" 46.9 +WEB_SITE="http://id3lib.sourceforge.net/" 46.10 +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 46.11 + 46.12 DEPENDS="zlib gcc-lib-base" 46.13 BUILD_DEPENDS="zlib-dev" 46.14 -WEB_SITE="http://id3lib.sourceforge.net/" 46.15 -WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 46.16 46.17 # Rules to configure and make the package. 46.18 compile_rules() 46.19 @@ -20,14 +22,13 @@ 46.20 --prefix=/usr \ 46.21 $CONFIGURE_ARGS && 46.22 make && 46.23 - make DESTDIR=$PWD/_pkg install 46.24 + make DESTDIR=$DESTDIR install 46.25 } 46.26 46.27 # Rules to gen a SliTaz package suitable for Tazpkg. 46.28 genpkg_rules() 46.29 { 46.30 mkdir -p $fs/usr/lib 46.31 - cp -a $_pkg/usr/bin $fs/usr 46.32 - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 46.33 + cp -a $install/usr/bin $fs/usr 46.34 + cp -a $install/usr/lib/*.so* $fs/usr/lib 46.35 } 46.36 -
47.1 --- a/idesk/receipt Thu Dec 05 13:21:20 2013 +0000 47.2 +++ b/idesk/receipt Thu Dec 05 15:25:09 2013 +0000 47.3 @@ -5,6 +5,7 @@ 47.4 CATEGORY="x-window" 47.5 SHORT_DESC="IDesk gives users icons on their desktop." 47.6 MAINTAINER="pankso@slitaz.org" 47.7 +LICENSE="BSD" 47.8 TARBALL="$PACKAGE-$VERSION.tar.bz2" 47.9 WEB_SITE="http://idesk.sourceforge.net/" 47.10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
48.1 --- a/iftop/receipt Thu Dec 05 13:21:20 2013 +0000 48.2 +++ b/iftop/receipt Thu Dec 05 15:25:09 2013 +0000 48.3 @@ -5,12 +5,14 @@ 48.4 CATEGORY="system-tools" 48.5 SHORT_DESC="Bandwidth usage on an interface." 48.6 MAINTAINER="pascal.bellard@slitaz.org" 48.7 +LICENSE="GPL2" 48.8 TARBALL="$PACKAGE-$VERSION.tar.gz" 48.9 WEB_SITE="http://ex-parrot.com/~pdw/iftop/" 48.10 WGET_URL="${WEB_SITE}download/$TARBALL" 48.11 +TAGS="network monitor usage" 48.12 + 48.13 BUILD_DEPENDS="libpcap-dev ncurses-dev" 48.14 DEPENDS="libpcap ncurses" 48.15 -TAGS="network monitor usage" 48.16 48.17 # Rules to configure and make the package. 48.18 compile_rules() 48.19 @@ -19,13 +21,13 @@ 48.20 ./configure --prefix=/usr --infodir=/usr/share/info \ 48.21 --mandir=/usr/share/man $CONFIGURE_ARGS 48.22 make 48.23 - make DESTDIR=$PWD/_pkg install 48.24 + make DESTDIR=$DESTDIR install 48.25 } 48.26 48.27 # Rules to gen a SliTaz package suitable for Tazpkg. 48.28 genpkg_rules() 48.29 { 48.30 mkdir -p $fs/usr/ 48.31 - cp -a $_pkg/usr/sbin $fs/usr 48.32 + cp -a $install/usr/sbin $fs/usr 48.33 } 48.34
49.1 --- a/igmpproxy/receipt Thu Dec 05 13:21:20 2013 +0000 49.2 +++ b/igmpproxy/receipt Thu Dec 05 15:25:09 2013 +0000 49.3 @@ -5,6 +5,7 @@ 49.4 CATEGORY="network" 49.5 SHORT_DESC="Simple forwarding of Multicast traffic between networks." 49.6 MAINTAINER="pascal.bellard@slitaz.org" 49.7 +LICENSE="GPL2" 49.8 TARBALL="$PACKAGE-$VERSION.tar.gz" 49.9 WEB_SITE="http://igmpproxy.sourceforge.net/" 49.10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 49.11 @@ -17,14 +18,13 @@ 49.12 --sysconfdir=/etc --mandir=/usr/share/man \ 49.13 $CONFIGURE_ARGS && 49.14 make && 49.15 - make DESTDIR=$PWD/_pkg install 49.16 + make DESTDIR=$DESTDIR install 49.17 } 49.18 49.19 # Rules to gen a SliTaz package suitable for Tazpkg. 49.20 genpkg_rules() 49.21 { 49.22 mkdir -p $fs/usr/ 49.23 - cp -a $_pkg/etc $fs 49.24 - cp -a $_pkg/usr/sbin $fs/usr 49.25 + cp -a $install/etc $fs 49.26 + cp -a $install/usr/sbin $fs/usr 49.27 } 49.28 -
50.1 --- a/ii/receipt Thu Dec 05 13:21:20 2013 +0000 50.2 +++ b/ii/receipt Thu Dec 05 15:25:09 2013 +0000 50.3 @@ -5,6 +5,7 @@ 50.4 CATEGORY="network" 50.5 SHORT_DESC="Minimalist IRC client." 50.6 MAINTAINER="pascal.bellard@slitaz.org" 50.7 +LICENSE="MIT" 50.8 TARBALL="$PACKAGE-$VERSION.tar.gz" 50.9 WEB_SITE="http://tools.suckless.org/ii" 50.10 WGET_URL="http://dl.suckless.org/tools/$TARBALL" 50.11 @@ -22,6 +23,5 @@ 50.12 genpkg_rules() 50.13 { 50.14 mkdir -p $fs/usr 50.15 - cp -a $_pkg/usr/bin $fs/usr 50.16 + cp -a $install/usr/bin $fs/usr 50.17 } 50.18 -
51.1 --- a/iksemel-dev/receipt Thu Dec 05 13:21:20 2013 +0000 51.2 +++ b/iksemel-dev/receipt Thu Dec 05 15:25:09 2013 +0000 51.3 @@ -5,6 +5,7 @@ 51.4 CATEGORY="development" 51.5 SHORT_DESC="XML parser library for Jabber applications." 51.6 MAINTAINER="pascal.bellard@slitaz.org" 51.7 +LICENSE="LGPL2.1" 51.8 WEB_SITE="http://iksemel.jabberstudio.org/" 51.9 WANTED="iksemel" 51.10 51.11 @@ -12,6 +13,6 @@ 51.12 genpkg_rules() 51.13 { 51.14 mkdir -p $fs/usr/lib $fs/usr/share 51.15 - cp -a $_pkg/usr/include $fs/usr 51.16 - cp -a $_pkg/usr/lib/*a $fs/usr/lib 51.17 + cp -a $install/usr/include $fs/usr 51.18 + cp -a $install/usr/lib/*a $fs/usr/lib 51.19 }
52.1 --- a/iksemel/receipt Thu Dec 05 13:21:20 2013 +0000 52.2 +++ b/iksemel/receipt Thu Dec 05 15:25:09 2013 +0000 52.3 @@ -5,6 +5,7 @@ 52.4 CATEGORY="network" 52.5 SHORT_DESC="XML parser library for Jabber applications." 52.6 MAINTAINER="pascal.bellard@slitaz.org" 52.7 +LICENSE="LGPL2.1" 52.8 WEB_SITE="http://iksemel.jabberstudio.org/" 52.9 TARBALL="$PACKAGE-$VERSION.tar.gz" 52.10 WGET_URL="http://jabberstudio.rediris.es/$PACKAGE/$TARBALL" 52.11 @@ -18,15 +19,15 @@ 52.12 ./configure --prefix=/usr --infodir=/usr/share/info \ 52.13 --mandir=/usr/share/man $CONFIGURE_ARGS && 52.14 make && 52.15 - make DESTDIR=$PWD/_pkg install 52.16 + make DESTDIR=$DESTDIR install 52.17 } 52.18 52.19 # Rules to gen a SliTaz package suitable for Tazpkg. 52.20 genpkg_rules() 52.21 { 52.22 mkdir -p $fs/usr/lib 52.23 - cp -a $_pkg/usr/bin $fs/usr 52.24 - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 52.25 - cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 52.26 + cp -a $install/usr/bin $fs/usr 52.27 + cp -a $install/usr/lib/*.so* $fs/usr/lib 52.28 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 52.29 } 52.30
53.1 --- a/ilmbase-dev/receipt Thu Dec 05 13:21:20 2013 +0000 53.2 +++ b/ilmbase-dev/receipt Thu Dec 05 15:25:09 2013 +0000 53.3 @@ -5,6 +5,7 @@ 53.4 CATEGORY="development" 53.5 SHORT_DESC="devel files for ilmbase" 53.6 MAINTAINER="slaxemulator@gmail.com" 53.7 +LICENSE="BSD" 53.8 WEB_SITE="http://www.openexr.org/" 53.9 WANTED="ilmbase" 53.10 53.11 @@ -14,8 +15,7 @@ 53.12 genpkg_rules() 53.13 { 53.14 mkdir -p $fs/usr/lib 53.15 - cp -a $_pkg/usr/include $fs/usr 53.16 - cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 53.17 - cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 53.18 + cp -a $install/usr/include $fs/usr 53.19 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 53.20 + cp -a $install/usr/lib/*.*a $fs/usr/lib 53.21 } 53.22 -
54.1 --- a/ilmbase/receipt Thu Dec 05 13:21:20 2013 +0000 54.2 +++ b/ilmbase/receipt Thu Dec 05 15:25:09 2013 +0000 54.3 @@ -5,6 +5,7 @@ 54.4 CATEGORY="x-window" 54.5 SHORT_DESC="IlmThread is a thread abstraction library for use with OpenEXR" 54.6 MAINTAINER="slaxemulator@gmail.com" 54.7 +LICENSE="BSD" 54.8 TARBALL="$PACKAGE-$VERSION.tar.gz" 54.9 WEB_SITE="http://www.openexr.org" 54.10 WGET_URL="http://savannah.nongnu.org/download/openexr/$TARBALL" 54.11 @@ -21,6 +22,5 @@ 54.12 genpkg_rules() 54.13 { 54.14 mkdir -p $fs/usr/lib 54.15 - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 54.16 + cp -a $install/usr/lib/*.so* $fs/usr/lib 54.17 } 54.18 -
55.1 --- a/imagemagick-dev/receipt Thu Dec 05 13:21:20 2013 +0000 55.2 +++ b/imagemagick-dev/receipt Thu Dec 05 15:25:09 2013 +0000 55.3 @@ -5,11 +5,13 @@ 55.4 CATEGORY="development" 55.5 SHORT_DESC="ImagesMagick devel files." 55.6 MAINTAINER="pankso@slitaz.org" 55.7 +LICENSE="Apache" 55.8 SOURCE="ImageMagick" 55.9 +WANTED="imagemagick" 55.10 +WEB_SITE="http://www.imagemagick.org/" 55.11 + 55.12 DEPENDS="imagemagick jpeg-dev ilmbase-dev openexr-dev libpng-dev tiff-dev \ 55.13 libxml2-dev lcms-dev graphviz-dev fftw-dev util-linux-uuid-dev pkg-config" 55.14 -WANTED="imagemagick" 55.15 -WEB_SITE="http://www.imagemagick.org/" 55.16 55.17 # Rules to gen a SliTaz package suitable for Tazpkg. 55.18 genpkg_rules() 55.19 @@ -19,4 +21,3 @@ 55.20 cp -a $install/usr/lib/*.*a $fs/usr/lib 55.21 cp -a $install/usr/lib/pkgconfig $fs/usr/lib 55.22 } 55.23 -
56.1 --- a/imagemagick/receipt Thu Dec 05 13:21:20 2013 +0000 56.2 +++ b/imagemagick/receipt Thu Dec 05 15:25:09 2013 +0000 56.3 @@ -6,6 +6,7 @@ 56.4 CATEGORY="graphics" 56.5 SHORT_DESC="Images manipulation programs." 56.6 MAINTAINER="pankso@slitaz.org" 56.7 +LICENSE="Apache" 56.8 SOURCE="ImageMagick" 56.9 TARBALL="$SOURCE-$VERSION.tar.xz" 56.10 WEB_SITE="http://www.imagemagick.org/"
57.1 --- a/indent/receipt Thu Dec 05 13:21:20 2013 +0000 57.2 +++ b/indent/receipt Thu Dec 05 15:25:09 2013 +0000 57.3 @@ -5,6 +5,7 @@ 57.4 CATEGORY="utilities" 57.5 SHORT_DESC="A tool for formatting C code." 57.6 MAINTAINER="liupeng <hipeng@yahoo.com>" 57.7 +LICENSE="GPL3" 57.8 TARBALL="$PACKAGE-$VERSION.tar.gz" 57.9 WEB_SITE="http://www.gnu.org/software/indent/" 57.10 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" 57.11 @@ -20,6 +21,5 @@ 57.12 genpkg_rules() 57.13 { 57.14 mkdir -p $fs/usr/bin 57.15 - cp -a $_pkg/usr/bin/indent $fs/usr/bin 57.16 + cp -a $install/usr/bin/indent $fs/usr/bin 57.17 } 57.18 -
58.1 --- a/iniparser-dev/receipt Thu Dec 05 13:21:20 2013 +0000 58.2 +++ b/iniparser-dev/receipt Thu Dec 05 15:25:09 2013 +0000 58.3 @@ -5,6 +5,7 @@ 58.4 CATEGORY="development" 58.5 SHORT_DESC="Iniparser development files" 58.6 MAINTAINER="erjo@slitaz.org" 58.7 +LICENSE="MIT" 58.8 WEB_SITE="http://ndevilla.free.fr/iniparser/" 58.9 WANTED="iniparser" 58.10
59.1 --- a/iniparser/receipt Thu Dec 05 13:21:20 2013 +0000 59.2 +++ b/iniparser/receipt Thu Dec 05 15:25:09 2013 +0000 59.3 @@ -5,6 +5,7 @@ 59.4 CATEGORY="system-tools" 59.5 SHORT_DESC="Free stand-alone ini file parsing library." 59.6 MAINTAINER="erjo@slitaz.org" 59.7 +LICENSE="MIT" 59.8 WEB_SITE="http://ndevilla.free.fr/iniparser/" 59.9 TARBALL="$PACKAGE-$VERSION.tar.gz" 59.10 WGET_URL="http://ndevilla.free.fr/iniparser/$TARBALL"
60.1 --- a/intel2gas/receipt Thu Dec 05 13:21:20 2013 +0000 60.2 +++ b/intel2gas/receipt Thu Dec 05 15:25:09 2013 +0000 60.3 @@ -5,9 +5,11 @@ 60.4 CATEGORY="development" 60.5 SHORT_DESC="Convert assembler source file for NASM/MASM/TASM to GAS." 60.6 MAINTAINER="pascal.bellard@slitaz.org" 60.7 +LICENSE="GPL2" 60.8 TARBALL="$PACKAGE-$VERSION.tar.gz" 60.9 WEB_SITE="http://www.niksula.cs.hut.fi/~mtiihone/intel2gas/" 60.10 WGET_URL="${WEB_SITE}$TARBALL" 60.11 + 60.12 DEPENDS="gcc-lib-base" 60.13 60.14 # Rules to configure and make the package. 60.15 @@ -21,12 +23,12 @@ 60.16 --mandir=/usr/share/man \ 60.17 $CONFIGURE_ARGS && 60.18 make && 60.19 - make DESTDIR=$PWD/_pkg install 60.20 + make DESTDIR=$DESTDIR install 60.21 } 60.22 60.23 # Rules to gen a SliTaz package suitable for Tazpkg. 60.24 genpkg_rules() 60.25 { 60.26 - cp -a $_pkg/usr $fs 60.27 + cp -a $install/usr $fs 60.28 } 60.29
61.1 --- a/ipcalc/receipt Thu Dec 05 13:21:20 2013 +0000 61.2 +++ b/ipcalc/receipt Thu Dec 05 15:25:09 2013 +0000 61.3 @@ -5,6 +5,7 @@ 61.4 CATEGORY="network" 61.5 SHORT_DESC="IP Calculator." 61.6 MAINTAINER="paul@slitaz.org" 61.7 +LICENSE="GPL2" 61.8 WEB_SITE="http://jodies.de/ipcalc" 61.9 TARBALL="$PACKAGE-$VERSION.tar.gz" 61.10 WGET_URL="http://jodies.de/ipcalc-archive/$TARBALL"
62.1 --- a/iperf/receipt Thu Dec 05 13:21:20 2013 +0000 62.2 +++ b/iperf/receipt Thu Dec 05 15:25:09 2013 +0000 62.3 @@ -5,6 +5,7 @@ 62.4 CATEGORY="network" 62.5 SHORT_DESC="Measure network performance." 62.6 MAINTAINER="pascal.bellard@slitaz.org" 62.7 +LICENSE="BSD" 62.8 TARBALL="$PACKAGE-$VERSION-source.tar.gz" 62.9 WEB_SITE="http://iperf.fr/" 62.10 WGET_URL="${WEB_SITE}download/${PACKAGE}_$VERSION/$TARBALL"
63.1 --- a/iptraf/receipt Thu Dec 05 13:21:20 2013 +0000 63.2 +++ b/iptraf/receipt Thu Dec 05 15:25:09 2013 +0000 63.3 @@ -5,9 +5,11 @@ 63.4 CATEGORY="network" 63.5 SHORT_DESC="IP Network Monitoring Software." 63.6 MAINTAINER="pascal.bellard@slitaz.org" 63.7 +LICENSE="GPL2" 63.8 TARBALL="$PACKAGE-$VERSION.tar.gz" 63.9 WEB_SITE="http://$PACKAGE.seul.org/" 63.10 WGET_URL="ftp://$PACKAGE.seul.org/pub/$PACKAGE/$TARBALL" 63.11 + 63.12 DEPENDS="ncurses" 63.13 BUILD_DEPENDS="ncurses-dev" 63.14
64.1 --- a/iron-linux/receipt Thu Dec 05 13:21:20 2013 +0000 64.2 +++ b/iron-linux/receipt Thu Dec 05 15:25:09 2013 +0000 64.3 @@ -5,11 +5,13 @@ 64.4 CATEGORY="network" 64.5 SHORT_DESC="A secure web browser based on Chromium." 64.6 MAINTAINER="paul@slitaz.org" 64.7 -DEPENDS="nss libfirefox GConf cups libjpeg62 libffi" # may need updating? 64.8 +LICENSE="BSD" 64.9 TARBALL="$PACKAGE-$VERSION.tar.gz" 64.10 WEB_SITE="http://www.srware.net/en/software_srware_iron.php" 64.11 WGET_URL="http://www.srware.net/downloads/$PACKAGE.tar.gz" 64.12 64.13 +DEPENDS="nss libfirefox GConf cups libjpeg62 libffi" # may need updating? 64.14 + 64.15 # Rules to configure and make the package. 64.16 compile_rules() 64.17 {
65.1 --- a/itaka/receipt Thu Dec 05 13:21:20 2013 +0000 65.2 +++ b/itaka/receipt Thu Dec 05 15:25:09 2013 +0000 65.3 @@ -5,25 +5,26 @@ 65.4 CATEGORY="network" 65.5 SHORT_DESC="Itaka on-demand screenshot server. Start server and let client connect via http" 65.6 MAINTAINER="pankso@slitaz.org" 65.7 -DEPENDS="pygtk twisted" 65.8 +LICENSE="GPL2" 65.9 TARBALL="$PACKAGE-$VERSION.tar.bz2" 65.10 WEB_SITE="http://itaka.jardinpresente.com.ar/" 65.11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 65.12 TAGS="screenshot" 65.13 65.14 +DEPENDS="pygtk twisted" 65.15 + 65.16 # Rules to configure and make the package. 65.17 compile_rules() 65.18 { 65.19 cd $src 65.20 - make PREFIX=$PWD/_pkg/usr 65.21 + make PREFIX=$DESTDIR/usr 65.22 } 65.23 65.24 # Rules to gen a SliTaz package suitable for Tazpkg. 65.25 genpkg_rules() 65.26 { 65.27 mkdir -p $fs/usr/share 65.28 - cp -a $_pkg/usr/bin $fs/usr 65.29 - cp -a $_pkg/usr/lib $fs/usr 65.30 - cp -a $_pkg/usr/share/itaka $fs/usr/share 65.31 + cp -a $install/usr/bin $fs/usr 65.32 + cp -a $install/usr/lib $fs/usr 65.33 + cp -a $install/usr/share/itaka $fs/usr/share 65.34 } 65.35 -
66.1 --- a/iw/receipt Thu Dec 05 13:21:20 2013 +0000 66.2 +++ b/iw/receipt Thu Dec 05 15:25:09 2013 +0000 66.3 @@ -5,6 +5,7 @@ 66.4 CATEGORY="network" 66.5 SHORT_DESC="Wireless configuration tool." 66.6 MAINTAINER="pascal.bellard@slitaz.org" 66.7 +LICENSE="MIT" 66.8 TARBALL="$PACKAGE-$VERSION.tar.bz2" 66.9 WEB_SITE="http://wireless.kernel.org/en/users/Documentation/iw" 66.10 WGET_URL="http://wireless.kernel.org/download/$PACKAGE/$TARBALL"
67.1 --- a/jpeg/receipt Thu Dec 05 13:21:20 2013 +0000 67.2 +++ b/jpeg/receipt Thu Dec 05 15:25:09 2013 +0000 67.3 @@ -5,12 +5,14 @@ 67.4 CATEGORY="x-window" 67.5 SHORT_DESC="JPEG image programs." 67.6 MAINTAINER="pankso@slitaz.org" 67.7 -DEPENDS="libjpeg" 67.8 +LICENSE="MIT" 67.9 WEB_SITE="http://www.ijg.org/" 67.10 TARBALL="jpegsrc.v${VERSION}.tar.gz" 67.11 WGET_URL="http://www.ijg.org/files/$TARBALL" 67.12 TAGS="jpeg jpg" 67.13 67.14 +DEPENDS="libjpeg" 67.15 + 67.16 # Rules to configure and make the package. 67.17 compile_rules() 67.18 { 67.19 @@ -25,5 +27,5 @@ 67.20 genpkg_rules() 67.21 { 67.22 mkdir -p $fs/usr 67.23 - cp -a $_pkg/usr/bin $fs/usr 67.24 + cp -a $install/usr/bin $fs/usr 67.25 }
68.1 --- a/libjpeg/receipt Thu Dec 05 13:21:20 2013 +0000 68.2 +++ b/libjpeg/receipt Thu Dec 05 15:25:09 2013 +0000 68.3 @@ -5,6 +5,7 @@ 68.4 CATEGORY="x-window" 68.5 SHORT_DESC="JPEG image libs." 68.6 MAINTAINER="pankso@slitaz.org" 68.7 +LICENSE="MIT" 68.8 WEB_SITE="http://www.ijg.org/" 68.9 WANTED="jpeg" 68.10 TAGS="jpeg jpg" 68.11 @@ -13,5 +14,5 @@ 68.12 genpkg_rules() 68.13 { 68.14 mkdir -p $fs/usr/lib 68.15 - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 68.16 + cp -a $install/usr/lib/*.so* $fs/usr/lib 68.17 }
69.1 --- a/libjpeg62/receipt Thu Dec 05 13:21:20 2013 +0000 69.2 +++ b/libjpeg62/receipt Thu Dec 05 15:25:09 2013 +0000 69.3 @@ -3,6 +3,7 @@ 69.4 CATEGORY="x-window" 69.5 SHORT_DESC="JPEG shared libs." 69.6 MAINTAINER="paul@slitaz.org" 69.7 +LICENSE="MIT" 69.8 WEB_SITE="http://www.ijg.org/" 69.9 TARBALL="libjpeg6b_6b.orig.tar.gz" 69.10 WGET_URL="ftp://ftp.debian.org/debian/pool/main/libj/libjpeg6b/$TARBALL"
70.1 --- a/libsasl-modules/receipt Thu Dec 05 13:21:20 2013 +0000 70.2 +++ b/libsasl-modules/receipt Thu Dec 05 15:25:09 2013 +0000 70.3 @@ -5,11 +5,13 @@ 70.4 CATEGORY="system-tools" 70.5 SHORT_DESC="SASL library modules." 70.6 MAINTAINER="pascal.bellard@slitaz.org" 70.7 -DEPENDS="libsasl libkrb5 libcomerr3 libcrypto libdb" 70.8 +LICENSE="BSD" 70.9 PROVIDE="libsasl-without-ldap" 70.10 WEB_SITE="http://cyrusimap.web.cmu.edu/" 70.11 WANTED="cyrus-sasl" 70.12 70.13 +DEPENDS="libsasl libkrb5 libcomerr3 libcrypto libdb" 70.14 + 70.15 # Rules to gen a SliTaz package suitable for Tazpkg. 70.16 genpkg_rules() 70.17 {
71.1 --- a/libsasl-without-ldap/receipt Thu Dec 05 13:21:20 2013 +0000 71.2 +++ b/libsasl-without-ldap/receipt Thu Dec 05 15:25:09 2013 +0000 71.3 @@ -5,12 +5,14 @@ 71.4 CATEGORY="system-tools" 71.5 SHORT_DESC="Cyrus Simple Authentication Service Layer (SASL) library." 71.6 MAINTAINER="pascal.bellard@slitaz.org" 71.7 +LICENSE="BSD" 71.8 SOURCE="cyrus-sasl" 71.9 TARBALL="$SOURCE-$VERSION.tar.gz" 71.10 +WEB_SITE="http://cyrusimap.web.cmu.edu/" 71.11 +WGET_URL="ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/$TARBALL" 71.12 + 71.13 DEPENDS="db openssl" 71.14 BUILD_DEPENDS="db-dev openssl-dev" 71.15 -WEB_SITE="http://cyrusimap.web.cmu.edu/" 71.16 -WGET_URL="ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/$TARBALL" 71.17 71.18 # Rules to configure and make the package. 71.19 compile_rules() 71.20 @@ -24,12 +26,12 @@ 71.21 --disable-otp --enable-plain \ 71.22 --mandir=/usr/share/man $CONFIGURE_ARGS && 71.23 make -j1 && 71.24 - make -j1 DESTDIR=$PWD/_pkg install 71.25 + make -j1 DESTDIR=$DESTDIR install 71.26 } 71.27 71.28 71.29 # Rules to gen a SliTaz package suitable for Tazpkg. 71.30 genpkg_rules() 71.31 { 71.32 - cp -a $_pkg/* $fs 71.33 + cp -a $install/* $fs 71.34 } 71.35 \ No newline at end of file
72.1 --- a/libsasl/receipt Thu Dec 05 13:21:20 2013 +0000 72.2 +++ b/libsasl/receipt Thu Dec 05 15:25:09 2013 +0000 72.3 @@ -5,6 +5,7 @@ 72.4 CATEGORY="system-tools" 72.5 SHORT_DESC="SASL library." 72.6 MAINTAINER="pascal.bellard@slitaz.org" 72.7 +LICENSE="BSD" 72.8 WEB_SITE="http://cyrusimap.web.cmu.edu/" 72.9 WANTED="cyrus-sasl" 72.10
73.1 --- a/libwrap-dev/receipt Thu Dec 05 13:21:20 2013 +0000 73.2 +++ b/libwrap-dev/receipt Thu Dec 05 15:25:09 2013 +0000 73.3 @@ -5,6 +5,7 @@ 73.4 CATEGORY="development" 73.5 SHORT_DESC="Wietse Venema's network logger devel files." 73.6 MAINTAINER="erjo@slitaz.org" 73.7 +LICENSE="BSD" 73.8 WANTED="libwrap" 73.9 WEB_SITE="ftp://ftp.porcupine.org/pub/security/index.html" 73.10
74.1 --- a/libwrap/receipt Thu Dec 05 13:21:20 2013 +0000 74.2 +++ b/libwrap/receipt Thu Dec 05 15:25:09 2013 +0000 74.3 @@ -5,6 +5,7 @@ 74.4 CATEGORY="system-tools" 74.5 SHORT_DESC="Wietse Venema's network logger." 74.6 MAINTAINER="erjo@slitaz.org" 74.7 +LICENSE="BSD" 74.8 SOURCE="tcp_wrappers" 74.9 TARBALL="${SOURCE}_${VERSION}.tar.gz" 74.10 WEB_SITE="ftp://ftp.porcupine.org/pub/security/index.html"
75.1 --- a/opencc-dev/receipt Thu Dec 05 13:21:20 2013 +0000 75.2 +++ b/opencc-dev/receipt Thu Dec 05 15:25:09 2013 +0000 75.3 @@ -5,6 +5,7 @@ 75.4 CATEGORY="development" 75.5 SHORT_DESC="Development files for OpenCC" 75.6 MAINTAINER="liupeng <hipeng@yahoo.com>" 75.7 +LICENSE="Apache" 75.8 WEB_SITE="http://code.google.com/p/opencc/" 75.9 WANTED="opencc" 75.10 75.11 @@ -14,7 +15,7 @@ 75.12 genpkg_rules() 75.13 { 75.14 mkdir -p $fs/usr/lib/pkgconfig/ 75.15 - cp -a $_pkg/usr/include $fs/usr 75.16 - cp -a $_pkg/usr/lib/*.so $fs/usr/lib/ 75.17 - cp -a $_pkg/usr/lib/pkgconfig/*.pc $fs/usr/lib/pkgconfig/ 75.18 + cp -a $install/usr/include $fs/usr 75.19 + cp -a $install/usr/lib/*.so $fs/usr/lib/ 75.20 + cp -a $install/usr/lib/pkgconfig/*.pc $fs/usr/lib/pkgconfig/ 75.21 }
76.1 --- a/opencc-tools/receipt Thu Dec 05 13:21:20 2013 +0000 76.2 +++ b/opencc-tools/receipt Thu Dec 05 15:25:09 2013 +0000 76.3 @@ -5,13 +5,15 @@ 76.4 CATEGORY="utilities" 76.5 SHORT_DESC="Command line tools for OpenCC" 76.6 MAINTAINER="liupeng <hipeng@yahoo.com>" 76.7 -DEPENDS="opencc" 76.8 +LICENSE="Apache" 76.9 WEB_SITE="http://code.google.com/p/opencc/" 76.10 WANTED="opencc" 76.11 76.12 +DEPENDS="opencc" 76.13 + 76.14 # Rules to gen a SliTaz package suitable for Tazpkg. 76.15 genpkg_rules() 76.16 { 76.17 mkdir -p $fs/usr 76.18 - cp -a $_pkg/usr/bin $fs/usr 76.19 + cp -a $install/usr/bin $fs/usr 76.20 }
77.1 --- a/opencc/receipt Thu Dec 05 13:21:20 2013 +0000 77.2 +++ b/opencc/receipt Thu Dec 05 15:25:09 2013 +0000 77.3 @@ -5,12 +5,14 @@ 77.4 CATEGORY="misc" 77.5 SHORT_DESC="Libraries for Simplified-Traditional Chinese Conversion" 77.6 MAINTAINER="liupeng <hipeng@yahoo.com>" 77.7 -DEPENDS="" 77.8 -BUILD_DEPENDS="cmake gettext" 77.9 +LICENSE="Apache" 77.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 77.11 WEB_SITE="http://code.google.com/p/opencc/" 77.12 WGET_URL="http://opencc.googlecode.com/files/$TARBALL" 77.13 77.14 +DEPENDS="" 77.15 +BUILD_DEPENDS="cmake gettext" 77.16 + 77.17 # Rules to configure and make the package. 77.18 compile_rules() 77.19 { 77.20 @@ -26,6 +28,6 @@ 77.21 genpkg_rules() 77.22 { 77.23 mkdir -p $fs/usr/lib/ $fs/usr/share/ 77.24 - cp -a $_pkg/usr/lib/lib*.so.* $fs/usr/lib/ 77.25 - cp -a $_pkg/usr/share/opencc/ $fs/usr/share/ 77.26 + cp -a $install/usr/lib/lib*.so.* $fs/usr/lib/ 77.27 + cp -a $install/usr/share/opencc/ $fs/usr/share/ 77.28 }
78.1 --- a/openmotif-demo/receipt Thu Dec 05 13:21:20 2013 +0000 78.2 +++ b/openmotif-demo/receipt Thu Dec 05 15:25:09 2013 +0000 78.3 @@ -5,15 +5,15 @@ 78.4 CATEGORY="non-free" 78.5 SHORT_DESC="source code version of Motif under a public license, demo files." 78.6 MAINTAINER="pascal.bellard@slitaz.org" 78.7 +LICENSE="other" 78.8 WEB_SITE="http://www.motifzone.org/" 78.9 WANTED="openmotif" 78.10 + 78.11 DEPENDS="openmotif openmotif-dev" 78.12 78.13 # Rules to gen a SliTaz package suitable for Tazpkg. 78.14 genpkg_rules() 78.15 { 78.16 mkdir -p $fs/usr/share 78.17 - cp -a $_pkg/usr/share/Xm $fs/usr/share 78.18 + cp -a $install/usr/share/Xm $fs/usr/share 78.19 } 78.20 - 78.21 -
79.1 --- a/openmotif-dev/receipt Thu Dec 05 13:21:20 2013 +0000 79.2 +++ b/openmotif-dev/receipt Thu Dec 05 15:25:09 2013 +0000 79.3 @@ -5,17 +5,17 @@ 79.4 CATEGORY="non-free" 79.5 SHORT_DESC="source code version of Motif under a public license, development files." 79.6 MAINTAINER="pascal.bellard@slitaz.org" 79.7 -DEPENDS="openmotif util-linux-uuid" 79.8 +LICENSE="other" 79.9 WEB_SITE="http://www.motifzone.org/" 79.10 WANTED="openmotif" 79.11 79.12 +DEPENDS="openmotif util-linux-uuid" 79.13 + 79.14 # Rules to gen a SliTaz package suitable for Tazpkg. 79.15 genpkg_rules() 79.16 { 79.17 mkdir -p $fs/usr/lib $fs/usr/bin 79.18 - cp -a $_pkg/usr/lib/*a $fs/usr/lib 79.19 - cp -a $_pkg/usr/bin/uil $fs/usr/bin 79.20 - cp -a $_pkg/usr/include $fs/usr 79.21 + cp -a $install/usr/lib/*a $fs/usr/lib 79.22 + cp -a $install/usr/bin/uil $fs/usr/bin 79.23 + cp -a $install/usr/include $fs/usr 79.24 } 79.25 - 79.26 -
80.1 --- a/openmotif-man/receipt Thu Dec 05 13:21:20 2013 +0000 80.2 +++ b/openmotif-man/receipt Thu Dec 05 15:25:09 2013 +0000 80.3 @@ -5,6 +5,7 @@ 80.4 CATEGORY="non-free" 80.5 SHORT_DESC="source code version of Motif under a public license, manual pages." 80.6 MAINTAINER="pascal.bellard@slitaz.org" 80.7 +LICENSE="other" 80.8 WEB_SITE="http://www.motifzone.org/" 80.9 WANTED="openmotif" 80.10 80.11 @@ -12,7 +13,5 @@ 80.12 genpkg_rules() 80.13 { 80.14 mkdir -p $fs/usr/share 80.15 - cp -a $_pkg/usr/share/man $fs/usr/share 80.16 + cp -a $install/usr/share/man $fs/usr/share 80.17 } 80.18 - 80.19 -
81.1 --- a/openmotif/receipt Thu Dec 05 13:21:20 2013 +0000 81.2 +++ b/openmotif/receipt Thu Dec 05 15:25:09 2013 +0000 81.3 @@ -5,9 +5,11 @@ 81.4 CATEGORY="non-free" 81.5 SHORT_DESC="source code version of Motif under a public license." 81.6 MAINTAINER="pascal.bellard@slitaz.org" 81.7 +LICENSE="other" 81.8 TARBALL="$PACKAGE-$VERSION.tar.gz" 81.9 WEB_SITE="http://www.motifzone.org/" 81.10 WGET_URL="${WEB_SITE}files/public_downloads/$PACKAGE/${VERSION%.*}/$VERSION/$TARBALL" 81.11 + 81.12 DEPENDS="xorg fontconfig expat freetype jpeg libpng xorg-libXp xorg-libXft" 81.13 BUILD_DEPENDS="xorg-dev-proto xorg-libXmu xorg-libXft-dev xorg-libXrender-dev \ 81.14 xorg-xbitmaps fontconfig-dev freetype-dev jpeg-dev libpng-dev xorg-libXt-dev \
82.1 --- a/ratpoison/receipt Thu Dec 05 13:21:20 2013 +0000 82.2 +++ b/ratpoison/receipt Thu Dec 05 15:25:09 2013 +0000 82.3 @@ -5,11 +5,13 @@ 82.4 CATEGORY="x-window" 82.5 SHORT_DESC="Ratpoison is an extremely light-weightWM using only keyboard." 82.6 MAINTAINER="gokhlayeh@slitaz.org" 82.7 -DEPENDS="microperl xorg-libXtst xorg-libXinerama" 82.8 +LICENSE="GPL2" 82.9 TARBALL="$PACKAGE-$VERSION.tar.gz" 82.10 WEB_SITE="http://www.nongnu.org/ratpoison/" 82.11 WGET_URL="http://savannah.nongnu.org/download/$PACKAGE/$TARBALL" 82.12 82.13 +DEPENDS="microperl xorg-libXtst xorg-libXinerama" 82.14 + 82.15 # Rules to configure and make the package. 82.16 compile_rules() 82.17 { 82.18 @@ -21,7 +23,6 @@ 82.19 genpkg_rules() 82.20 { 82.21 mkdir -p $fs/usr/share 82.22 - cp -a $_pkg/usr/bin $fs/usr 82.23 - cp -a $_pkg/usr/share/ratpoison $fs/usr/share 82.24 + cp -a $install/usr/bin $fs/usr 82.25 + cp -a $install/usr/share/ratpoison $fs/usr/share 82.26 } 82.27 -
83.1 --- a/readom/receipt Thu Dec 05 13:21:20 2013 +0000 83.2 +++ b/readom/receipt Thu Dec 05 15:25:09 2013 +0000 83.3 @@ -5,6 +5,7 @@ 83.4 CATEGORY="utilities" 83.5 SHORT_DESC="readom as readcd for use with graveman" 83.6 MAINTAINER="allan316@gmail.com" 83.7 +LICENSE="GPL2" 83.8 WEB_SITE="http://www.cdrkit.org/" 83.9 WANTED="cdrkit" 83.10 83.11 @@ -12,7 +13,7 @@ 83.12 genpkg_rules() 83.13 { 83.14 mkdir -p $fs/usr/bin 83.15 - cp $_pkg/usr/bin/readom $fs/usr/bin 83.16 + cp $install/usr/bin/readom $fs/usr/bin 83.17 83.18 # Make symlinks for cdrtools compatibility 83.19 cd $fs/usr/bin
84.1 --- a/reaver/receipt Thu Dec 05 13:21:20 2013 +0000 84.2 +++ b/reaver/receipt Thu Dec 05 15:25:09 2013 +0000 84.3 @@ -5,6 +5,7 @@ 84.4 CATEGORY="network" 84.5 SHORT_DESC="Brute force attack against Wifi Protected Setup." 84.6 MAINTAINER="pascal.bellard@slitaz.org" 84.7 +LICENSE="GPL2" 84.8 WEB_SITE="http://code.google.com/p/reaver-wps/" 84.9 TARBALL="$PACKAGE-$VERSION.tar.gz" 84.10 WGET_URL="http://reaver-wps.googlecode.com/files/$TARBALL"
85.1 --- a/recorder/receipt Thu Dec 05 13:21:20 2013 +0000 85.2 +++ b/recorder/receipt Thu Dec 05 15:25:09 2013 +0000 85.3 @@ -5,25 +5,27 @@ 85.4 CATEGORY="utilities" 85.5 SHORT_DESC="A simple GTK+ disc burner" 85.6 MAINTAINER="devl547@gmail.com" 85.7 +LICENSE="GPL3" 85.8 TARBALL="$PACKAGE-$VERSION.tar.bz2" 85.9 +WEB_SITE="http://code.google.com/p/recorder/" 85.10 +WGET_URL="http://recorder.googlecode.com/files/$TARBALL" 85.11 + 85.12 DEPENDS="pygtk coreutils cdrkit dvd+rw-tools" 85.13 BUILD_DEPENDS="pygtk-dev" 85.14 -WEB_SITE="http://code.google.com/p/recorder/" 85.15 -WGET_URL="http://recorder.googlecode.com/files/$TARBALL" 85.16 85.17 # Rules to configure and make the package. 85.18 compile_rules() 85.19 { 85.20 cd $src 85.21 cp $stuff/Makefile Makefile 85.22 - make DESTDIR=$PWD/_pkg install 85.23 + make DESTDIR=$DESTDIR install 85.24 } 85.25 85.26 # Rules to gen a SliTaz package suitable for Tazpkg. 85.27 genpkg_rules() 85.28 { 85.29 mkdir -p $fs/usr 85.30 - cp -a $_pkg/usr/bin $fs/usr/ 85.31 - cp -a $_pkg/usr/share $fs/usr/ 85.32 + cp -a $install/usr/bin $fs/usr/ 85.33 + cp -a $install/usr/share $fs/usr/ 85.34 } 85.35
86.1 --- a/recordmydesktop/receipt Thu Dec 05 13:21:20 2013 +0000 86.2 +++ b/recordmydesktop/receipt Thu Dec 05 15:25:09 2013 +0000 86.3 @@ -5,16 +5,18 @@ 86.4 CATEGORY="misc" 86.5 SHORT_DESC="Desktop recording software" 86.6 MAINTAINER="allan316@gmail.com" 86.7 +LICENSE="GPL2" 86.8 +TARBALL="$PACKAGE-$VERSION.tar.gz" 86.9 +WEB_SITE="http://recordmydesktop.sourceforge.net" 86.10 +WGET_URL="http://nchc.dl.sourceforge.net/sourceforge/$PACKAGE/$TARBALL" 86.11 +TAGS="desktop" 86.12 + 86.13 BUILD_DEPENDS="alsa-lib-dev xorg-libX11-dev xorg-libICE-dev xorg-libSM-dev \ 86.14 xorg-libXext-dev xorg-libXdamage-dev xorg-libXfixes-dev libogg libogg-dev \ 86.15 libvorbis libvorbis-dev libtheora-dev zlib-dev xorg-xextproto xorg-libXfixes-dev \ 86.16 xorg-fixesproto xorg-damageproto" 86.17 DEPENDS="libtheora alsa-lib xorg-libICE xorg-libSM xorg-libX11 xorg-libXau \ 86.18 xorg-libXdamage xorg-libXdmcp xorg-libXext xorg-libXfixes zlib" 86.19 -TARBALL="$PACKAGE-$VERSION.tar.gz" 86.20 -WEB_SITE="http://recordmydesktop.sourceforge.net" 86.21 -WGET_URL="http://nchc.dl.sourceforge.net/sourceforge/$PACKAGE/$TARBALL" 86.22 -TAGS="desktop" 86.23 86.24 # Rules to configure and make the package. 86.25 compile_rules() 86.26 @@ -25,13 +27,13 @@ 86.27 ./configure --prefix=/usr --infodir=/usr/share/info \ 86.28 --mandir=/usr/share/man $CONFIGURE_ARGS && 86.29 make && 86.30 - make DESTDIR=$PWD/_pkg install 86.31 + make DESTDIR=$DESTDIR install 86.32 } 86.33 86.34 # Rules to gen a SliTaz package suitable for Tazpkg. 86.35 genpkg_rules() 86.36 { 86.37 mkdir -p $fs/usr 86.38 - cp -a $_pkg/usr/bin $fs/usr 86.39 + cp -a $install/usr/bin $fs/usr 86.40 } 86.41
87.1 --- a/rfkill/receipt Thu Dec 05 13:21:20 2013 +0000 87.2 +++ b/rfkill/receipt Thu Dec 05 15:25:09 2013 +0000 87.3 @@ -5,6 +5,7 @@ 87.4 CATEGORY="system-tools" 87.5 SHORT_DESC="Utility to query the state of the rfkill switches" 87.6 MAINTAINER="slaxemulator@gmail.com" 87.7 +LICENSE="MIT" 87.8 TARBALL="$PACKAGE-$VERSION.tar.bz2" 87.9 WEB_SITE="http://linuxwireless.org/en/users/Documentation/rfkill" 87.10 WGET_URL="http://wireless.kernel.org/download/$PACKAGE/$TARBALL" 87.11 @@ -18,12 +19,12 @@ 87.12 sed -i 's/-m 755 -t/-m 755 rfkill/' Makefile 87.13 sed -i 's/man8\/ rfkill\.8\.gz/man8\//' Makefile 87.14 sed -i 's/-m 644 -t/-m 644 rfkill.8.gz/' Makefile 87.15 - make && make DESTDIR=$PWD/_pkg install 87.16 + make && make DESTDIR=$DESTDIR install 87.17 } 87.18 87.19 # Rules to gen a SliTaz package suitable for Tazpkg. 87.20 genpkg_rules() 87.21 { 87.22 mkdir -p $fs/usr 87.23 - cp -a $_pkg/usr/sbin $fs/usr 87.24 + cp -a $install/usr/sbin $fs/usr 87.25 }
88.1 --- a/rox-default-icons/receipt Thu Dec 05 13:21:20 2013 +0000 88.2 +++ b/rox-default-icons/receipt Thu Dec 05 15:25:09 2013 +0000 88.3 @@ -5,24 +5,26 @@ 88.4 CATEGORY="misc" 88.5 SHORT_DESC="default icons for rox-filer." 88.6 MAINTAINER="sygne@ombres.eu" 88.7 -DEPENDS="rox-filer" 88.8 -BUILD_DEPENDS="" 88.9 +LICENSE="GPL2" 88.10 SOURCE="rox-filer" 88.11 TARBALL="$SOURCE-$VERSION.tar.bz2" 88.12 WEB_SITE="http://roscidus.com/desktop/" 88.13 WGET_URL="http://downloads.sourceforge.net/rox/$TARBALL" 88.14 88.15 +DEPENDS="rox-filer" 88.16 +BUILD_DEPENDS="" 88.17 + 88.18 # Rules to configure and make the package. 88.19 compile_rules() 88.20 { 88.21 - mkdir -p $src/_pkg/rox-default-icons 88.22 - cp -a $src/ROX-Filer/ROX/* $src/_pkg/rox-default-icons/ 88.23 + mkdir -p $DESTDIR/rox-default-icons 88.24 + cp -a $src/ROX-Filer/ROX/* $DESTDIR/rox-default-icons/ 88.25 } 88.26 88.27 # Rules to gen a SliTaz package suitable for Tazpkg. 88.28 genpkg_rules() 88.29 { 88.30 mkdir -p $fs/usr/share/icons 88.31 - cp -r $_pkg/* $fs/usr/share/icons/ 88.32 + cp -r $install/* $fs/usr/share/icons/ 88.33 } 88.34
89.1 --- a/rox-filer-locales/receipt Thu Dec 05 13:21:20 2013 +0000 89.2 +++ b/rox-filer-locales/receipt Thu Dec 05 15:25:09 2013 +0000 89.3 @@ -5,19 +5,21 @@ 89.4 CATEGORY="system-tools" 89.5 SHORT_DESC="locales for the rox-filer." 89.6 MAINTAINER="sygne@ombres.eu" 89.7 -DEPENDS="rox-filer" 89.8 -BUILD_DEPENDS="" 89.9 +LICENSE="GPL2" 89.10 SOURCE="rox-filer" 89.11 TARBALL="$SOURCE-$VERSION.tar.bz2" 89.12 WEB_SITE="http://roscidus.com/desktop/" 89.13 WGET_URL="http://downloads.sourceforge.net/rox/$TARBALL" 89.14 89.15 +DEPENDS="rox-filer" 89.16 +BUILD_DEPENDS="" 89.17 + 89.18 # Rules to configure and make the package. 89.19 compile_rules() 89.20 { 89.21 89.22 - mkdir -p $src/_pkg 89.23 - cp -r $src/ROX-Filer/Messages $src/_pkg/ 89.24 + mkdir -p $DESTDIR 89.25 + cp -r $src/ROX-Filer/Messages $DESTDIR/ 89.26 89.27 } 89.28 89.29 @@ -25,7 +27,7 @@ 89.30 genpkg_rules() 89.31 { 89.32 mkdir -p $fs/usr/share/rox-filer 89.33 - cp -r $_pkg/* $fs/usr/share/rox-filer/ 89.34 + cp -r $install/* $fs/usr/share/rox-filer/ 89.35 89.36 strip -s $fs/usr/share/rox-filer/* || true 89.37 }
90.1 --- a/rox-filer/receipt Thu Dec 05 13:21:20 2013 +0000 90.2 +++ b/rox-filer/receipt Thu Dec 05 15:25:09 2013 +0000 90.3 @@ -5,6 +5,7 @@ 90.4 CATEGORY="system-tools" 90.5 SHORT_DESC="user friendly filer." 90.6 MAINTAINER="sygne@ombres.eu" 90.7 +LICENSE="GPL2" 90.8 TARBALL="$PACKAGE-$VERSION.tar.bz2" 90.9 WEB_SITE="http://roscidus.com/desktop/" 90.10 WGET_URL="http://downloads.sourceforge.net/rox/$TARBALL" 90.11 @@ -25,32 +26,32 @@ 90.12 # If missing dep compile will block on a read. 90.13 echo -e "\t" | $src/ROX-Filer/AppRun --compile 90.14 echo "mkdir" 90.15 - mkdir $src/_pkg 90.16 - cp $src/ROX-Filer/ROX-Filer $src/_pkg/rox-filer 90.17 - cp $src/ROX-Filer/.DirIcon $src/_pkg/ 90.18 + mkdir $DESTDIR 90.19 + cp $src/ROX-Filer/ROX-Filer $DESTDIR/rox-filer 90.20 + cp $src/ROX-Filer/.DirIcon $DESTDIR/ 90.21 90.22 - mkdir $src/_pkg/Messages 90.23 + mkdir $DESTDIR/Messages 90.24 for locale in de es fr it 90.25 do 90.26 - cp -r $src/ROX-Filer/Messages/$locale $src/_pkg/Messages 90.27 + cp -r $src/ROX-Filer/Messages/$locale $DESTDIR/Messages 90.28 done 90.29 90.30 - cp -r $src/ROX-Filer/images $src/_pkg/ 90.31 + cp -r $src/ROX-Filer/images $DESTDIR/ 90.32 90.33 - mkdir $src/_pkg/Help 90.34 - cp $src/ROX-Filer/Help/*.html $src/_pkg/Help/ 90.35 - cp $src/ROX-Filer/style.css $src/_pkg/ 90.36 + mkdir $DESTDIR/Help 90.37 + cp $src/ROX-Filer/Help/*.html $DESTDIR/Help/ 90.38 + cp $src/ROX-Filer/style.css $DESTDIR/ 90.39 90.40 - cp $src/ROX-Filer/Options.xml $src/_pkg/ 90.41 - cp $src/ROX-Filer/Templates.glade $src/_pkg/ 90.42 + cp $src/ROX-Filer/Options.xml $DESTDIR/ 90.43 + cp $src/ROX-Filer/Templates.glade $DESTDIR/ 90.44 } 90.45 90.46 # Rules to gen a SliTaz package suitable for Tazpkg. 90.47 genpkg_rules() 90.48 { 90.49 mkdir -p $fs/usr/share/rox-filer 90.50 - cp -r $_pkg/* $fs/usr/share/rox-filer/ 90.51 - cp $_pkg/.DirIcon $fs/usr/share/rox-filer/ 90.52 + cp -r $install/* $fs/usr/share/rox-filer/ 90.53 + cp $install/.DirIcon $fs/usr/share/rox-filer/ 90.54 90.55 mkdir -p $fs/usr/bin 90.56 cp -r $stuff/rox-filer $fs/usr/bin/
91.1 --- a/tacacs+/receipt Thu Dec 05 13:21:20 2013 +0000 91.2 +++ b/tacacs+/receipt Thu Dec 05 15:25:09 2013 +0000 91.3 @@ -5,6 +5,7 @@ 91.4 CATEGORY="misc" 91.5 SHORT_DESC="authentication server for cisco devices" 91.6 MAINTAINER="allan316@gmail.com" 91.7 +LICENSE="MIT" 91.8 TARBALL="$PACKAGE-$VERSION.tar.gz" 91.9 WEB_SITE="http://www.shrubbery.net" 91.10 WGET_URL="ftp://ftp.shrubbery.net/pub/tac_plus/$TARBALL"
92.1 --- a/talloc-dev/receipt Thu Dec 05 13:21:20 2013 +0000 92.2 +++ b/talloc-dev/receipt Thu Dec 05 15:25:09 2013 +0000 92.3 @@ -5,9 +5,11 @@ 92.4 CATEGORY="development" 92.5 SHORT_DESC="Hierarchical pool based memory allocator with destructors (devel files)." 92.6 MAINTAINER="slaxemulator@gmail.com" 92.7 +LICENSE="LGPL" 92.8 WEB_SITE="http://talloc.samba.org/" 92.9 +WANTED="talloc" 92.10 + 92.11 DEPENDS="talloc pkg-config" 92.12 -WANTED="talloc" 92.13 92.14 # Rules to gen a SliTaz package suitable for Tazpkg. 92.15 genpkg_rules()
93.1 --- a/talloc-python/receipt Thu Dec 05 13:21:20 2013 +0000 93.2 +++ b/talloc-python/receipt Thu Dec 05 15:25:09 2013 +0000 93.3 @@ -5,10 +5,12 @@ 93.4 CATEGORY="development" 93.5 SHORT_DESC="Python bindings for talloc" 93.6 MAINTAINER="slaxemulator@gmail.com" 93.7 -DEPENDS="talloc python" 93.8 +LICENSE="LGPL" 93.9 WEB_SITE="http://talloc.samba.org/" 93.10 WANTED="talloc" 93.11 93.12 +DEPENDS="talloc python" 93.13 + 93.14 # Rules to gen a SliTaz package suitable for Tazpkg. 93.15 genpkg_rules() 93.16 {
94.1 --- a/talloc/receipt Thu Dec 05 13:21:20 2013 +0000 94.2 +++ b/talloc/receipt Thu Dec 05 15:25:09 2013 +0000 94.3 @@ -5,13 +5,15 @@ 94.4 CATEGORY="system-tools" 94.5 SHORT_DESC="Hierarchical pool based memory allocator with destructors." 94.6 MAINTAINER="slaxemulator@gmail.com" 94.7 -DEPENDS="glibc-base" 94.8 -BUILD_DEPENDS="python-dev" 94.9 +LICENSE="LGPL" 94.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 94.11 WEB_SITE="http://talloc.samba.org/" 94.12 WGET_URL="http://samba.org/ftp/$PACKAGE/$TARBALL" 94.13 CROSS="bug: must use --cross-compile and --cross-execute=" 94.14 94.15 +DEPENDS="glibc-base" 94.16 +BUILD_DEPENDS="python-dev" 94.17 + 94.18 # Rules to configure and make the package. 94.19 compile_rules() 94.20 {
95.1 --- a/task/receipt Thu Dec 05 13:21:20 2013 +0000 95.2 +++ b/task/receipt Thu Dec 05 15:25:09 2013 +0000 95.3 @@ -5,13 +5,15 @@ 95.4 CATEGORY="utilities" 95.5 SHORT_DESC="Task is an open source, command line, TODO list manager." 95.6 MAINTAINER="paul@slitaz.org" 95.7 -DEPENDS="ncurses gcc-lib-base" 95.8 -BUILD_DEPENDS="ncurses-dev cmake" 95.9 +LICENSE="MIT" 95.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 95.11 WEB_SITE="http://taskwarrior.org" 95.12 WGET_URL="http://www.taskwarrior.org/download/$TARBALL" 95.13 TAGS="office todo" 95.14 95.15 +DEPENDS="ncurses gcc-lib-base" 95.16 +BUILD_DEPENDS="ncurses-dev cmake" 95.17 + 95.18 # Rules to configure and make the package. 95.19 compile_rules() 95.20 {
96.1 --- a/tcl-dev/receipt Thu Dec 05 13:21:20 2013 +0000 96.2 +++ b/tcl-dev/receipt Thu Dec 05 15:25:09 2013 +0000 96.3 @@ -5,16 +5,17 @@ 96.4 CATEGORY="development" 96.5 SHORT_DESC="The Tool Command Language dev files" 96.6 MAINTAINER="erjo@slitaz.org" 96.7 -DEPENDS="tcl" 96.8 +LICENSE="BSD" 96.9 WANTED="tcl" 96.10 WEB_SITE="http://tcl.sourceforge.net/" 96.11 96.12 +DEPENDS="tcl" 96.13 + 96.14 # Rules to gen a SliTaz package suitable for Tazpkg. 96.15 genpkg_rules() 96.16 { 96.17 mkdir -p $fs/usr/lib 96.18 - cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 96.19 - cp -a $_pkg/usr/lib/tclConfig.sh $fs/usr/lib 96.20 - cp -a $_pkg/usr/include $fs/usr 96.21 + cp -a $install/usr/lib/*.*a $fs/usr/lib 96.22 + cp -a $install/usr/lib/tclConfig.sh $fs/usr/lib 96.23 + cp -a $install/usr/include $fs/usr 96.24 } 96.25 -
97.1 --- a/tcl/receipt Thu Dec 05 13:21:20 2013 +0000 97.2 +++ b/tcl/receipt Thu Dec 05 15:25:09 2013 +0000 97.3 @@ -5,6 +5,7 @@ 97.4 CATEGORY="development" 97.5 SHORT_DESC="The Tool Command Language" 97.6 MAINTAINER="erjo@slitaz.org" 97.7 +LICENSE="BSD" 97.8 TARBALL="${PACKAGE}${VERSION}-src.tar.gz" 97.9 WEB_SITE="http://tcl.sourceforge.net/" 97.10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 97.11 @@ -26,8 +27,8 @@ 97.12 genpkg_rules() 97.13 { 97.14 mkdir -p $fs/usr/lib 97.15 - cp -a $_pkg/usr/lib/tcl8* $fs/usr/lib 97.16 - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 97.17 - cp -a $_pkg/usr/bin $fs/usr 97.18 + cp -a $install/usr/lib/tcl8* $fs/usr/lib 97.19 + cp -a $install/usr/lib/*.so* $fs/usr/lib 97.20 + cp -a $install/usr/bin $fs/usr 97.21 ln -sf tclsh8.5 $fs/usr/bin/tclsh 97.22 }
98.1 --- a/tcllib/receipt Thu Dec 05 13:21:20 2013 +0000 98.2 +++ b/tcllib/receipt Thu Dec 05 15:25:09 2013 +0000 98.3 @@ -5,12 +5,14 @@ 98.4 CATEGORY="development" 98.5 SHORT_DESC="Tcl-only library of standard routines for Tcl." 98.6 MAINTAINER="paul@slitaz.org" 98.7 -DEPENDS="tcl" 98.8 -BUILD_DEPENDS="tcl" 98.9 +LICENSE="BSD" 98.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 98.11 WEB_SITE="http://sourceforge.net/projects/tcllib/" 98.12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 98.13 98.14 +DEPENDS="tcl" 98.15 +BUILD_DEPENDS="tcl" 98.16 + 98.17 # Rules to configure and make the package. 98.18 compile_rules() 98.19 { 98.20 @@ -20,14 +22,13 @@ 98.21 --infodir=/usr/share/info \ 98.22 --mandir=/usr/share/man \ 98.23 $CONFIGURE_ARGS && 98.24 - make DESTDIR=$PWD/_pkg install 98.25 + make DESTDIR=$DESTDIR install 98.26 } 98.27 98.28 # Rules to gen a SliTaz package suitable for Tazpkg. 98.29 genpkg_rules() 98.30 { 98.31 mkdir -p $fs/usr/lib 98.32 - cp -a $_pkg/usr/bin $fs/usr 98.33 - cp -a $_pkg/usr/lib/* $fs/usr/lib 98.34 + cp -a $install/usr/bin $fs/usr 98.35 + cp -a $install/usr/lib/* $fs/usr/lib 98.36 } 98.37 -
99.1 --- a/tcpreplay/receipt Thu Dec 05 13:21:20 2013 +0000 99.2 +++ b/tcpreplay/receipt Thu Dec 05 15:25:09 2013 +0000 99.3 @@ -5,6 +5,7 @@ 99.4 CATEGORY="network" 99.5 SHORT_DESC="Test network with libpcap captured traffic." 99.6 MAINTAINER="pascal.bellard@slitaz.org" 99.7 +LICENSE="BSD" 99.8 TARBALL="$PACKAGE-$VERSION.tar.gz" 99.9 WEB_SITE="http://tcpreplay.synfin.net/" 99.10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
100.1 --- a/tcsh/receipt Thu Dec 05 13:21:20 2013 +0000 100.2 +++ b/tcsh/receipt Thu Dec 05 15:25:09 2013 +0000 100.3 @@ -5,6 +5,7 @@ 100.4 CATEGORY="system-tools" 100.5 SHORT_DESC="Enhanced, compatible Berkeley UNIX C shell." 100.6 MAINTAINER="samuel_trassare@yahoo.com" 100.7 +LICENSE="BSD" 100.8 WEB_SITE="http://www.tsch.org/Welcome" 100.9 TARBALL="$PACKAGE-$VERSION.tar.gz" 100.10 WGET_URL="ftp://ftp.astron.com/pub/$PACKAGE/$TARBALL"
101.1 --- a/tiff-apps/receipt Thu Dec 05 13:21:20 2013 +0000 101.2 +++ b/tiff-apps/receipt Thu Dec 05 15:25:09 2013 +0000 101.3 @@ -5,10 +5,12 @@ 101.4 CATEGORY="x-window" 101.5 SHORT_DESC="TIFF images manipulation cli applications. (Check tiff for libs)." 101.6 MAINTAINER="pankso@slitaz.org" 101.7 -DEPENDS="jpeg zlib tiff" 101.8 +LICENSE="MIT" 101.9 WANTED="tiff" 101.10 WEB_SITE="http://www.remotesensing.org/libtiff/" 101.11 101.12 +DEPENDS="jpeg zlib tiff" 101.13 + 101.14 # Rules to gen a SliTaz package suitable for Tazpkg. 101.15 genpkg_rules() 101.16 {
102.1 --- a/tiff-dev/receipt Thu Dec 05 13:21:20 2013 +0000 102.2 +++ b/tiff-dev/receipt Thu Dec 05 15:25:09 2013 +0000 102.3 @@ -5,10 +5,12 @@ 102.4 CATEGORY="development" 102.5 SHORT_DESC="TIFF images libs devel files. (Check tiff-apps for utilities)." 102.6 MAINTAINER="pankso@slitaz.org" 102.7 -DEPENDS="tiff jbigkit" 102.8 +LICENSE="MIT" 102.9 WANTED="tiff" 102.10 WEB_SITE="http://www.remotesensing.org/libtiff/" 102.11 102.12 +DEPENDS="tiff jbigkit" 102.13 + 102.14 # Rules to gen a SliTaz package suitable for Tazpkg. 102.15 genpkg_rules() 102.16 {
103.1 --- a/tiff/receipt Thu Dec 05 13:21:20 2013 +0000 103.2 +++ b/tiff/receipt Thu Dec 05 15:25:09 2013 +0000 103.3 @@ -5,11 +5,13 @@ 103.4 CATEGORY="x-window" 103.5 SHORT_DESC="TIFF images libs. (Check tiff-apps for utilities)." 103.6 MAINTAINER="pankso@slitaz.org" 103.7 +LICENSE="MIT" 103.8 TARBALL="$PACKAGE-$VERSION.tar.gz" 103.9 +WEB_SITE="http://www.remotesensing.org/libtiff/" 103.10 +WGET_URL="ftp://ftp.remotesensing.org/pub/libtiff/$TARBALL" 103.11 + 103.12 DEPENDS="jpeg zlib gcc-lib-base" 103.13 BUILD_DEPENDS="jpeg-dev zlib-dev" 103.14 -WEB_SITE="http://www.remotesensing.org/libtiff/" 103.15 -WGET_URL="ftp://ftp.remotesensing.org/pub/libtiff/$TARBALL" 103.16 103.17 # Rules to configure and make the package. 103.18 compile_rules()
104.1 --- a/tk-dev/receipt Thu Dec 05 13:21:20 2013 +0000 104.2 +++ b/tk-dev/receipt Thu Dec 05 15:25:09 2013 +0000 104.3 @@ -5,11 +5,13 @@ 104.4 CATEGORY="development" 104.5 SHORT_DESC="The TCL gui toolkit dev files" 104.6 MAINTAINER="erjo@slitaz.org" 104.7 -DEPENDS="tcl tk" 104.8 +LICENSE="BSD" 104.9 SOURCE="tk" 104.10 WEB_SITE="http://tcl.sourceforge.net/" 104.11 WANTED="tk" 104.12 104.13 +DEPENDS="tcl tk" 104.14 + 104.15 # Rules to gen a SliTaz package suitable for Tazpkg. 104.16 genpkg_rules() 104.17 {
105.1 --- a/tk/receipt Thu Dec 05 13:21:20 2013 +0000 105.2 +++ b/tk/receipt Thu Dec 05 15:25:09 2013 +0000 105.3 @@ -5,14 +5,16 @@ 105.4 CATEGORY="development" 105.5 SHORT_DESC="The TCL gui toolkit" 105.6 MAINTAINER="erjo@slitaz.org" 105.7 -DEPENDS="tcl expat fontconfig freetype xorg-libX11 xorg-libXau xorg-libXdmcp \ 105.8 -xorg-libXft xorg-libXrender zlib xorg-libXss" 105.9 -BUILD_DEPENDS="tcl-dev xorg-libX11-dev" 105.10 +LICENSE="BSD" 105.11 TARBALL="${PACKAGE}${VERSION}-src.tar.gz" 105.12 WEB_SITE="http://tcl.sourceforge.net/" 105.13 WGET_URL="$SF_MIRROR/tcl/$TARBALL" 105.14 TAGS="programming language" 105.15 105.16 +DEPENDS="tcl expat fontconfig freetype xorg-libX11 xorg-libXau xorg-libXdmcp \ 105.17 +xorg-libXft xorg-libXrender zlib xorg-libXss" 105.18 +BUILD_DEPENDS="tcl-dev xorg-libX11-dev" 105.19 + 105.20 # Rules to configure and make the package. 105.21 compile_rules() 105.22 {
106.1 --- a/twisted/receipt Thu Dec 05 13:21:20 2013 +0000 106.2 +++ b/twisted/receipt Thu Dec 05 15:25:09 2013 +0000 106.3 @@ -5,10 +5,12 @@ 106.4 CATEGORY="network" 106.5 SHORT_DESC="Event-driven networking for internet applications." 106.6 MAINTAINER="pascal.bellard@slitaz.org" 106.7 +LICENSE="GPL2" 106.8 SOURCE="Twisted" 106.9 TARBALL="$SOURCE-$VERSION.tar.bz2" 106.10 WEB_SITE="http://twistedmatrix.com/trac/" 106.11 WGET_URL="http://twistedmatrix.com/Releases/Twisted/${VERSION%.*}/$TARBALL" 106.12 + 106.13 DEPENDS="python zopeinterface" 106.14 BUILD_DEPENDS="python python-dev" 106.15 106.16 @@ -22,6 +24,6 @@ 106.17 # Rules to gen a SliTaz package suitable for Tazpkg. 106.18 genpkg_rules() 106.19 { 106.20 - cp -a $_pkg/usr $fs 106.21 + cp -a $install/usr $fs 106.22 } 106.23
107.1 --- a/tyrian/receipt Thu Dec 05 13:21:20 2013 +0000 107.2 +++ b/tyrian/receipt Thu Dec 05 15:25:09 2013 +0000 107.3 @@ -10,6 +10,8 @@ 107.4 WEB_SITE="http://code.google.com/p/opentyrian/" 107.5 WGET_URL="https://sites.google.com/a/camanis.net/opentyrian/tyrian/$TARBALL" 107.6 107.7 +LICENSE="other" 107.8 + 107.9 # Rules to configure and make the package. 107.10 compile_rules() 107.11 {