wok-6.x rev 15482
Add some licenses
line diff
1.1 --- a/balance/receipt Sun Nov 10 15:03:57 2013 +0000 1.2 +++ b/balance/receipt Sun Nov 10 17:13:06 2013 +0000 1.3 @@ -5,6 +5,7 @@ 1.4 CATEGORY="system-tools" 1.5 SHORT_DESC="Generic tcp proxy with round robin load balancing and failover." 1.6 MAINTAINER="pascal.bellard@slitaz.org" 1.7 +LICENSE="GPL2" 1.8 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.9 WEB_SITE="http://www.inlab.de/balance.html" 1.10 WGET_URL="http://www.inlab.de/balance-3.42.tar.gz" 1.11 @@ -14,15 +15,15 @@ 1.12 compile_rules() 1.13 { 1.14 cd $src 1.15 - mkdir -p _pkg/usr/sbin _pkg/usr/man/man1 2> /dev/null 1.16 + mkdir -p $DESTDIR/usr/sbin $DESTDIR/usr/man/man1 2> /dev/null 1.17 make && 1.18 - make DESTDIR=$PWD/_pkg install 1.19 + make DESTDIR=$DESTDIR install 1.20 } 1.21 1.22 # Rules to gen a SliTaz package suitable for Tazpkg. 1.23 genpkg_rules() 1.24 { 1.25 mkdir -p $fs/usr 1.26 - cp -a $_pkg/usr/sbin $fs/usr 1.27 + cp -a $install/usr/sbin $fs/usr 1.28 } 1.29
2.1 --- a/bazaar-tools/receipt Sun Nov 10 15:03:57 2013 +0000 2.2 +++ b/bazaar-tools/receipt Sun Nov 10 17:13:06 2013 +0000 2.3 @@ -5,12 +5,14 @@ 2.4 CATEGORY="development" 2.5 SHORT_DESC="Useful collection of utilities (all plugins, right now) for bazaar." 2.6 MAINTAINER="slaxemulator@gmail.com" 2.7 -DEPENDS="bazaar python" 2.8 +LICENSE="GPL2" 2.9 SOURCE="bzrtools" 2.10 TARBALL="$SOURCE-$VERSION.tar.gz" 2.11 WEB_SITE="http://bazaar-vcs.org/BzrTools" 2.12 WGET_URL="http://launchpad.net/$SOURCE/stable/$VERSION/+download/$TARBALL" 2.13 2.14 +DEPENDS="bazaar python" 2.15 + 2.16 # Rules to configure and make the package. 2.17 compile_rules() 2.18 { 2.19 @@ -22,6 +24,6 @@ 2.20 genpkg_rules() 2.21 { 2.22 mkdir -p $fs/usr 2.23 - cp -a $_pkg/usr/lib $fs/usr 2.24 + cp -a $install/usr/lib $fs/usr 2.25 } 2.26
3.1 --- a/bchunk/receipt Sun Nov 10 15:03:57 2013 +0000 3.2 +++ b/bchunk/receipt Sun Nov 10 17:13:06 2013 +0000 3.3 @@ -5,6 +5,7 @@ 3.4 CATEGORY="misc" 3.5 SHORT_DESC="Converts a CD image in a '.bin / .cue' format to '.iso'." 3.6 MAINTAINER="pascal.bellard@slitaz.org" 3.7 +LICENSE="GPL2" 3.8 TARBALL="$PACKAGE-$VERSION.tar.gz" 3.9 WEB_SITE="http://he.fi/$PACKAGE" 3.10 WGET_URL="$WEB_SITE/$TARBALL"
4.1 --- a/beecrypt-dev/receipt Sun Nov 10 15:03:57 2013 +0000 4.2 +++ b/beecrypt-dev/receipt Sun Nov 10 17:13:06 2013 +0000 4.3 @@ -5,6 +5,7 @@ 4.4 CATEGORY="development" 4.5 SHORT_DESC="Cryptography Library dev files" 4.6 MAINTAINER="erjo@slitaz.org" 4.7 +LICENSE="GPL2 LGPL2.1" 4.8 WANTED="beecrypt" 4.9 WEB_SITE="http://beecrypt.sourceforge.net/" 4.10 4.11 @@ -12,8 +13,8 @@ 4.12 genpkg_rules() 4.13 { 4.14 mkdir -p $fs/usr/lib 4.15 - cp -a $_pkg/usr/include $fs/usr 4.16 - cp -a $_pkg/usr/lib $fs/usr 4.17 + cp -a $install/usr/include $fs/usr 4.18 + cp -a $install/usr/lib $fs/usr 4.19 # Deleting unnecessary file 4.20 find $fs/ -name "*.so*" -exec rm -f {} \; 4.21 }
5.1 --- a/beecrypt/receipt Sun Nov 10 15:03:57 2013 +0000 5.2 +++ b/beecrypt/receipt Sun Nov 10 17:13:06 2013 +0000 5.3 @@ -5,27 +5,29 @@ 5.4 CATEGORY="system-tools" 5.5 SHORT_DESC="Cryptography Library" 5.6 MAINTAINER="erjo@slitaz.org" 5.7 -DEPENDS="gcc-lib-base" 5.8 -BUILD_DEPENDS="python-dev" 5.9 +LICENSE="GPL2 LGPL2.1" 5.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 5.11 WEB_SITE="http://beecrypt.sourceforge.net/" 5.12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 5.13 TAGS="cryptography toolkit" 5.14 5.15 +DEPENDS="gcc-lib-base" 5.16 +BUILD_DEPENDS="python-dev" 5.17 + 5.18 # Rules to configure and make the package. 5.19 compile_rules() 5.20 { 5.21 cd $src 5.22 ./configure --prefix=/usr --without-cplusplus $CONFIGURE_ARGS && 5.23 make && 5.24 - make DESTDIR=$PWD/_pkg install 5.25 + make DESTDIR=$DESTDIR install 5.26 } 5.27 5.28 # Rules to gen a SliTaz package suitable for Tazpkg. 5.29 genpkg_rules() 5.30 { 5.31 mkdir -p $fs/usr/lib 5.32 - cp -a $_pkg/usr/lib $fs/usr 5.33 + cp -a $install/usr/lib $fs/usr 5.34 # Deleting unnecessary file 5.35 find $fs/ -name "*.*a" -exec rm -f {} \; 5.36 }
6.1 --- a/beep/receipt Sun Nov 10 15:03:57 2013 +0000 6.2 +++ b/beep/receipt Sun Nov 10 17:13:06 2013 +0000 6.3 @@ -5,6 +5,7 @@ 6.4 CATEGORY="system-tools" 6.5 SHORT_DESC="Advanced pc-speaker beeper." 6.6 MAINTAINER="pascal.bellard@slitaz.org" 6.7 +LICENSE="GPL2" 6.8 TARBALL="$PACKAGE-$VERSION.tar.gz" 6.9 WEB_SITE="http://www.johnath.com/beep/README" 6.10 WGET_URL="http://www.johnath.com/beep/$TARBALL"
7.1 --- a/blas/receipt Sun Nov 10 15:03:57 2013 +0000 7.2 +++ b/blas/receipt Sun Nov 10 17:13:06 2013 +0000 7.3 @@ -5,6 +5,7 @@ 7.4 CATEGORY="misc" 7.5 SHORT_DESC="Basic Linear Algebra Subprograms" 7.6 MAINTAINER="slaxemulator@gmail.com" 7.7 +LICENSE="BSD" 7.8 SOURCE="lapack" 7.9 TARBALL="$SOURCE-$VERSION.tgz" 7.10 WEB_SITE="http://www.netlib.org/lapack"
8.1 --- a/bmpanel2/receipt Sun Nov 10 15:03:57 2013 +0000 8.2 +++ b/bmpanel2/receipt Sun Nov 10 17:13:06 2013 +0000 8.3 @@ -4,6 +4,7 @@ 8.4 VERSION="2.1pre1" 8.5 CATEGORY="misc" 8.6 MAINTAINER="jozee@slitaz.org" 8.7 +LICENSE="MIT" 8.8 SHORT_DESC="Nice NETWM-compatible panel for X11" 8.9 WEB_SITE="http://bmpanel2.googlecode.com/" 8.10 TARBALL="$PACKAGE-$VERSION.tar.gz"
9.1 --- a/bmpanel2cfg/receipt Sun Nov 10 15:03:57 2013 +0000 9.2 +++ b/bmpanel2cfg/receipt Sun Nov 10 17:13:06 2013 +0000 9.3 @@ -4,17 +4,18 @@ 9.4 VERSION="2.1pre1" 9.5 CATEGORY="misc" 9.6 MAINTAINER="jozee@slitaz.org" 9.7 +LICENSE="MIT" 9.8 SHORT_DESC="bmpanel2 configurator" 9.9 WEB_SITE="http://bmpanel2.googlecode.com/" 9.10 -DEPENDS="pygtk" 9.11 WANTED="bmpanel2" 9.12 TAGS="window-manager wm panel" 9.13 9.14 +DEPENDS="pygtk" 9.15 9.16 # Rules to gen a SliTaz package suitable for Tazpkg. 9.17 genpkg_rules() 9.18 { 9.19 mkdir -p $fs/usr/lib $fs/usr/bin 9.20 - cp -a $_pkg/usr/bin/$PACKAGE $fs/usr/bin 9.21 - cp -a $_pkg/usr/lib/python* $fs/usr/lib 9.22 + cp -a $install/usr/bin/$PACKAGE $fs/usr/bin 9.23 + cp -a $install/usr/lib/python* $fs/usr/lib 9.24 }
10.1 --- a/libnet-dev/receipt Sun Nov 10 15:03:57 2013 +0000 10.2 +++ b/libnet-dev/receipt Sun Nov 10 17:13:06 2013 +0000 10.3 @@ -5,6 +5,7 @@ 10.4 CATEGORY="development" 10.5 SHORT_DESC="devel files for libnet" 10.6 MAINTAINER="slaxemulator@gmail.com" 10.7 +LICENSE="BSD" 10.8 WEB_SITE="http://sourceforge.net/projects/libnet-dev/" 10.9 WANTED="libnet" 10.10
11.1 --- a/libnet/receipt Sun Nov 10 15:03:57 2013 +0000 11.2 +++ b/libnet/receipt Sun Nov 10 17:13:06 2013 +0000 11.3 @@ -5,6 +5,7 @@ 11.4 CATEGORY="network" 11.5 SHORT_DESC="A library which provides API for commonly used low-level net functions." 11.6 MAINTAINER="slaxemulator@gmail.com" 11.7 +LICENSE="BSD" 11.8 TARBALL="$PACKAGE-$VERSION.tar.gz" 11.9 WEB_SITE="http://sourceforge.net/projects/libnet-dev/" 11.10 WGET_URL="$SF_MIRROR/$PACKAGE-dev/$TARBALL"
12.1 --- a/libnfnetlink-dev/receipt Sun Nov 10 15:03:57 2013 +0000 12.2 +++ b/libnfnetlink-dev/receipt Sun Nov 10 17:13:06 2013 +0000 12.3 @@ -5,6 +5,7 @@ 12.4 CATEGORY="development" 12.5 SHORT_DESC="devl files for libnfnetlink" 12.6 MAINTAINER="pascal.bellard@slitaz.org" 12.7 +LICENSE="GPL2" 12.8 WEB_SITE="http://www.netfilter.org/projects/$PACKAGE/" 12.9 WANTED="libnfnetlink" 12.10 12.11 @@ -14,7 +15,7 @@ 12.12 genpkg_rules() 12.13 { 12.14 mkdir -p $fs/usr/lib 12.15 - cp -a $_pkg/usr/include $fs/usr 12.16 - cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 12.17 - cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 12.18 + cp -a $install/usr/include $fs/usr 12.19 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 12.20 + cp -a $install/usr/lib/*.*a $fs/usr/lib 12.21 }
13.1 --- a/libnfnetlink/receipt Sun Nov 10 15:03:57 2013 +0000 13.2 +++ b/libnfnetlink/receipt Sun Nov 10 17:13:06 2013 +0000 13.3 @@ -5,6 +5,7 @@ 13.4 CATEGORY="network" 13.5 SHORT_DESC="Low-level library for netfilter related kernel/userspace communication." 13.6 MAINTAINER="pascal.bellard@slitaz.org" 13.7 +LICENSE="GPL2" 13.8 TARBALL="$PACKAGE-$VERSION.tar.bz2" 13.9 WEB_SITE="http://www.netfilter.org/projects/$PACKAGE/" 13.10 WGET_URL="${WEB_SITE}files/$TARBALL" 13.11 @@ -22,5 +23,5 @@ 13.12 genpkg_rules() 13.13 { 13.14 mkdir -p $fs/usr/lib 13.15 - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 13.16 + cp -a $install/usr/lib/*.so* $fs/usr/lib 13.17 }
14.1 --- a/libnjb-dev/receipt Sun Nov 10 15:03:57 2013 +0000 14.2 +++ b/libnjb-dev/receipt Sun Nov 10 17:13:06 2013 +0000 14.3 @@ -5,17 +5,19 @@ 14.4 CATEGORY="development" 14.5 SHORT_DESC="C library and API for communicating with the Creative Nomad JukeBox and Dell DJ devel files" 14.6 MAINTAINER="keupont@no-log.org" 14.7 -DEPENDS="libnjb libusb zlib" 14.8 +LICENSE="BSD" 14.9 WANTED="libnjb" 14.10 WEB_SITE="http://libnjb.sourceforge.net/" 14.11 14.12 +DEPENDS="libnjb libusb zlib" 14.13 + 14.14 # Rules to gen a SliTaz package suitable for Tazpkg. 14.15 genpkg_rules() 14.16 { 14.17 mkdir -p $fs/usr/lib 14.18 - cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 14.19 - cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 14.20 - cp -a $_pkg/usr/include $fs/usr 14.21 - cp -a $_pkg/usr/bin $fs/usr 14.22 + cp -a $install/usr/lib/*.*a $fs/usr/lib 14.23 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 14.24 + cp -a $install/usr/include $fs/usr 14.25 + cp -a $install/usr/bin $fs/usr 14.26 } 14.27
15.1 --- a/libnjb/receipt Sun Nov 10 15:03:57 2013 +0000 15.2 +++ b/libnjb/receipt Sun Nov 10 17:13:06 2013 +0000 15.3 @@ -5,12 +5,14 @@ 15.4 CATEGORY="system-tools" 15.5 SHORT_DESC="C library and API for communicating with the Creative Nomad JukeBox and Dell DJ" 15.6 MAINTAINER="keupont@no-log.org" 15.7 -DEPENDS="libusb-compat" 15.8 -BUILD_DEPENDS="libusb-compat libusb-compat-dev libusb-dev" 15.9 +LICENSE="BSD" 15.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 15.11 WEB_SITE="http://libnjb.sourceforge.net/" 15.12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 15.13 15.14 +DEPENDS="libusb-compat" 15.15 +BUILD_DEPENDS="libusb-compat libusb-compat-dev libusb-dev" 15.16 + 15.17 # Rules to configure and make the package. 15.18 compile_rules() 15.19 { 15.20 @@ -22,6 +24,6 @@ 15.21 genpkg_rules() 15.22 { 15.23 mkdir -p $fs/usr/lib 15.24 - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 15.25 + cp -a $install/usr/lib/*.so* $fs/usr/lib 15.26 } 15.27
16.1 --- a/libnsgif-dev/receipt Sun Nov 10 15:03:57 2013 +0000 16.2 +++ b/libnsgif-dev/receipt Sun Nov 10 17:13:06 2013 +0000 16.3 @@ -5,6 +5,7 @@ 16.4 CATEGORY="development" 16.5 SHORT_DESC="The libnsgif devel files." 16.6 MAINTAINER="pankso@slitaz.org" 16.7 +LICENSE="MIT" 16.8 WANTED="libnsgif" 16.9 WEB_SITE="http://www.netsurf-browser.org/projects/libnsgif/" 16.10
17.1 --- a/libnsgif/receipt Sun Nov 10 15:03:57 2013 +0000 17.2 +++ b/libnsgif/receipt Sun Nov 10 17:13:06 2013 +0000 17.3 @@ -5,6 +5,7 @@ 17.4 CATEGORY="system-tools" 17.5 SHORT_DESC="Libnsgif is a decoding library for the GIF image file format." 17.6 MAINTAINER="pankso@slitaz.org" 17.7 +LICENSE="MIT" 17.8 TARBALL="$PACKAGE-$VERSION.tar.bz2" 17.9 WEB_SITE="http://www.netsurf-browser.org/projects/libnsgif/" 17.10 WGET_URL="subversion|svn://svn.netsurf-browser.org/trunk/libnsgif"
18.1 --- a/libogg-dev/receipt Sun Nov 10 15:03:57 2013 +0000 18.2 +++ b/libogg-dev/receipt Sun Nov 10 17:13:06 2013 +0000 18.3 @@ -5,16 +5,18 @@ 18.4 CATEGORY="development" 18.5 SHORT_DESC="OGG library devel files from Xiph.org project." 18.6 MAINTAINER="pankso@slitaz.org" 18.7 -DEPENDS="libogg" 18.8 +LICENSE="BSD" 18.9 WANTED="libogg" 18.10 WEB_SITE="http://www.xiph.org/" 18.11 18.12 +DEPENDS="libogg" 18.13 + 18.14 # Rules to gen a SliTaz package suitable for Tazpkg. 18.15 genpkg_rules() 18.16 { 18.17 mkdir -p $fs/usr/lib $fs/usr/share 18.18 - cp -a $_pkg/usr/include $fs/usr 18.19 - cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 18.20 - cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 18.21 - cp -a $_pkg/usr/share/aclocal $fs/usr/share 18.22 + cp -a $install/usr/include $fs/usr 18.23 + cp -a $install/usr/lib/*.*a $fs/usr/lib 18.24 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 18.25 + cp -a $install/usr/share/aclocal $fs/usr/share 18.26 }
19.1 --- a/libogg/receipt Sun Nov 10 15:03:57 2013 +0000 19.2 +++ b/libogg/receipt Sun Nov 10 17:13:06 2013 +0000 19.3 @@ -5,11 +5,13 @@ 19.4 CATEGORY="multimedia" 19.5 SHORT_DESC="OGG library from Xiph.org project." 19.6 MAINTAINER="pankso@slitaz.org" 19.7 -DEPENDS="glibc-base" 19.8 +LICENSE="BSD" 19.9 TARBALL="$PACKAGE-$VERSION.tar.xz" 19.10 WEB_SITE="http://www.xiph.org/" 19.11 WGET_URL="http://downloads.xiph.org/releases/ogg/$TARBALL" 19.12 19.13 +DEPENDS="glibc-base" 19.14 + 19.15 # Rules to configure and make the package. 19.16 compile_rules() 19.17 { 19.18 @@ -17,13 +19,13 @@ 19.19 ./configure --prefix=/usr --infodir=/usr/share/info \ 19.20 --mandir=/usr/share/man $CONFIGURE_ARGS 19.21 make 19.22 - make -j1 DESTDIR=$PWD/_pkg install 19.23 + make -j1 DESTDIR=$DESTDIR install 19.24 } 19.25 19.26 # Rules to gen a SliTaz package suitable for Tazpkg. 19.27 genpkg_rules() 19.28 { 19.29 mkdir -p $fs/usr/lib 19.30 - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 19.31 + cp -a $install/usr/lib/*.so* $fs/usr/lib 19.32 } 19.33
20.1 --- a/libparserutils-dev/receipt Sun Nov 10 15:03:57 2013 +0000 20.2 +++ b/libparserutils-dev/receipt Sun Nov 10 17:13:06 2013 +0000 20.3 @@ -5,6 +5,7 @@ 20.4 CATEGORY="development" 20.5 SHORT_DESC="The libparserutils devel files." 20.6 MAINTAINER="pankso@slitaz.org" 20.7 +LICENSE="MIT" 20.8 WANTED="libparserutils" 20.9 WEB_SITE="http://www.netsurf-browser.org/projects/libparserutils/" 20.10 20.11 @@ -12,7 +13,7 @@ 20.12 genpkg_rules() 20.13 { 20.14 mkdir -p $fs/usr/lib 20.15 - cp -a $_pkg/usr/include $fs/usr 20.16 - cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 20.17 - cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 20.18 + cp -a $install/usr/include $fs/usr 20.19 + cp -a $install/usr/lib/*.*a $fs/usr/lib 20.20 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 20.21 }
21.1 --- a/libparserutils/receipt Sun Nov 10 15:03:57 2013 +0000 21.2 +++ b/libparserutils/receipt Sun Nov 10 17:13:06 2013 +0000 21.3 @@ -5,6 +5,7 @@ 21.4 CATEGORY="system-tools" 21.5 SHORT_DESC="Various pieces of functionality that are useful for parsers." 21.6 MAINTAINER="pankso@slitaz.org" 21.7 +LICENSE="MIT" 21.8 WEB_SITE="http://www.netsurf-browser.org/projects/libparserutils/" 21.9 WGET_URL="subversion|svn://svn.netsurf-browser.org/trunk/libparserutils" 21.10 BRANCH="$VERSION"
22.1 --- a/libplayer-dev/receipt Sun Nov 10 15:03:57 2013 +0000 22.2 +++ b/libplayer-dev/receipt Sun Nov 10 17:13:06 2013 +0000 22.3 @@ -5,16 +5,18 @@ 22.4 CATEGORY="multimedia" 22.5 SHORT_DESC="A tiny media scanner API. " 22.6 MAINTAINER="pankso@slitaz.org" 22.7 +LICENSE="LGPL2.1" 22.8 WANTED="libplayer" 22.9 +WEB_SITE="http://libplayer.geexbox.org/" 22.10 + 22.11 DEPENDS="libplayer" 22.12 -WEB_SITE="http://libplayer.geexbox.org/" 22.13 22.14 # Rules to gen a SliTaz package suitable for Tazpkg. 22.15 genpkg_rules() 22.16 { 22.17 mkdir -p $fs/usr/lib 22.18 - cp -a $_pkg/usr/bin $fs/usr 22.19 - cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 22.20 - cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 22.21 - cp -a $_pkg/usr/include $fs/usr 22.22 + cp -a $install/usr/bin $fs/usr 22.23 + cp -a $install/usr/lib/*.*a $fs/usr/lib 22.24 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 22.25 + cp -a $install/usr/include $fs/usr 22.26 }
23.1 --- a/libplayer/receipt Sun Nov 10 15:03:57 2013 +0000 23.2 +++ b/libplayer/receipt Sun Nov 10 17:13:06 2013 +0000 23.3 @@ -6,6 +6,7 @@ 23.4 SHORT_DESC="A multimedia A/V abstraction layer API." 23.5 DEPENDS="xine-lib mplayer" 23.6 MAINTAINER="pankso@slitaz.org" 23.7 +LICENSE="LGPL2.1" 23.8 TARBALL="$PACKAGE-$VERSION.tar.bz2" 23.9 WEB_SITE="http://libplayer.geexbox.org/" 23.10 WGET_URL="http://libplayer.geexbox.org/releases/$TARBALL" 23.11 @@ -26,6 +27,6 @@ 23.12 genpkg_rules() 23.13 { 23.14 mkdir -p $fs/usr/lib 23.15 - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 23.16 - cp -a $_pkg/usr/bin $fs/usr 23.17 + cp -a $install/usr/lib/*.so* $fs/usr/lib 23.18 + cp -a $install/usr/bin $fs/usr 23.19 }
24.1 --- a/libpthread-stubs-dev/receipt Sun Nov 10 15:03:57 2013 +0000 24.2 +++ b/libpthread-stubs-dev/receipt Sun Nov 10 17:13:06 2013 +0000 24.3 @@ -5,17 +5,18 @@ 24.4 CATEGORY="development" 24.5 SHORT_DESC="Weak aliases for pthread functions development files" 24.6 MAINTAINER="erjo@slitaz.org" 24.7 +LICENSE="MIT" 24.8 TARBALL="$PACKAGE-$VERSION.tar.bz2" 24.9 WANTED="libpthread-stubs" 24.10 +WEB_SITE="http://xcb.freedesktop.org" 24.11 + 24.12 DEPENDS="libpthread-stubs" 24.13 BUILD_DEPENDS="" 24.14 -WEB_SITE="http://xcb.freedesktop.org" 24.15 - 24.16 24.17 # Rules to gen a SliTaz package suitable for Tazpkg. 24.18 genpkg_rules() 24.19 { 24.20 mkdir -p $fs/usr/lib 24.21 - cp -a $_pkg/usr/lib/*.la $fs/usr/lib 24.22 - cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 24.23 + cp -a $install/usr/lib/*.la $fs/usr/lib 24.24 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 24.25 }
25.1 --- a/libpthread-stubs/receipt Sun Nov 10 15:03:57 2013 +0000 25.2 +++ b/libpthread-stubs/receipt Sun Nov 10 17:13:06 2013 +0000 25.3 @@ -5,11 +5,13 @@ 25.4 CATEGORY="x-window" 25.5 SHORT_DESC="Weak aliases for pthread functions." 25.6 MAINTAINER="pascal.bellard@slitaz.org" 25.7 +LICENSE="MIT" 25.8 TARBALL="$PACKAGE-$VERSION.tar.bz2" 25.9 +WEB_SITE="http://xcb.freedesktop.org" 25.10 +WGET_URL="$WEB_SITE/dist/$TARBALL" 25.11 + 25.12 DEPENDS="glibc-base" 25.13 BUILD_DEPENDS="gcc" 25.14 -WEB_SITE="http://xcb.freedesktop.org" 25.15 -WGET_URL="$WEB_SITE/dist/$TARBALL" 25.16 25.17 # Rules to configure and make the package. 25.18 compile_rules() 25.19 @@ -22,6 +24,6 @@ 25.20 genpkg_rules() 25.21 { 25.22 mkdir -p $fs/usr/lib 25.23 - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 25.24 + cp -a $install/usr/lib/*.so* $fs/usr/lib 25.25 } 25.26
26.1 --- a/libraw-dev/receipt Sun Nov 10 15:03:57 2013 +0000 26.2 +++ b/libraw-dev/receipt Sun Nov 10 17:13:06 2013 +0000 26.3 @@ -5,6 +5,7 @@ 26.4 CATEGORY="development" 26.5 SHORT_DESC="devel files for libraw" 26.6 MAINTAINER="slaxemulator@gmail.com" 26.7 +LICENSE="LGPL2.1" 26.8 WEB_SITE="http://www.libraw.org/" 26.9 WANTED="libraw" 26.10
27.1 --- a/libraw/receipt Sun Nov 10 15:03:57 2013 +0000 27.2 +++ b/libraw/receipt Sun Nov 10 17:13:06 2013 +0000 27.3 @@ -5,6 +5,7 @@ 27.4 CATEGORY="multimedia" 27.5 SHORT_DESC="A library for reading RAW files obtained from digital photo cameras (CRW/CR2, NEF, RAF, DNG, and others)" 27.6 MAINTAINER="slaxemulator@gmail.com" 27.7 +LICENSE="LGPL2.1" 27.8 WEB_SITE="http://www.libraw.org/" 27.9 SOURCE="LibRaw" 27.10 TARBALL="$SOURCE-$VERSION.tar.gz"
28.1 --- a/libraw1394-dev/receipt Sun Nov 10 15:03:57 2013 +0000 28.2 +++ b/libraw1394-dev/receipt Sun Nov 10 17:13:06 2013 +0000 28.3 @@ -5,16 +5,18 @@ 28.4 CATEGORY="development" 28.5 SHORT_DESC="IEEE 1394 static library and devel files." 28.6 MAINTAINER="pankso@slitaz.org" 28.7 -DEPENDS="libraw1394" 28.8 +LICENSE="LGPL2.1" 28.9 WANTED="libraw1394" 28.10 WEB_SITE="http://www.linux1394.org/" 28.11 28.12 +DEPENDS="libraw1394" 28.13 + 28.14 # Rules to gen a SliTaz package suitable for Tazpkg. 28.15 genpkg_rules() 28.16 { 28.17 mkdir -p $fs/usr/lib 28.18 - cp -a $_pkg/usr/include $fs/usr 28.19 - cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 28.20 - cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 28.21 + cp -a $install/usr/include $fs/usr 28.22 + cp -a $install/usr/lib/*.*a $fs/usr/lib 28.23 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 28.24 } 28.25
29.1 --- a/libraw1394/receipt Sun Nov 10 15:03:57 2013 +0000 29.2 +++ b/libraw1394/receipt Sun Nov 10 17:13:06 2013 +0000 29.3 @@ -5,6 +5,7 @@ 29.4 CATEGORY="system-tools" 29.5 SHORT_DESC="IEEE 1394 is a standard defining a high speed serial bus." 29.6 MAINTAINER="pankso@slitaz.org" 29.7 +LICENSE="LGPL2.1" 29.8 TARBALL="$PACKAGE-$VERSION.tar.gz" 29.9 WEB_SITE="http://www.linux1394.org/" 29.10 WGET_URL="http://www.kernel.org/pub/linux/libs/ieee1394/$TARBALL" 29.11 @@ -18,15 +19,15 @@ 29.12 --mandir=/usr/share/man \ 29.13 $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/lib $fs/dev 29.23 - cp -a $_pkg/usr/bin $fs/usr 29.24 - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 29.25 + cp -a $install/usr/bin $fs/usr 29.26 + cp -a $install/usr/lib/*.so* $fs/usr/lib 29.27 # Dev node 29.28 mknod -m 0666 $fs/dev/raw1394 c 171 0 29.29 chown root.root $fs/dev/raw1394
30.1 --- a/libsctp-dev/receipt Sun Nov 10 15:03:57 2013 +0000 30.2 +++ b/libsctp-dev/receipt Sun Nov 10 17:13:06 2013 +0000 30.3 @@ -5,6 +5,7 @@ 30.4 CATEGORY="development" 30.5 SHORT_DESC="Stream Control Transmission Protocol developement libraries." 30.6 MAINTAINER="pascal.bellard@slitaz.org" 30.7 +LICENSE="GPL2 LGPL2.1" 30.8 WEB_SITE="http://lksctp.sourceforge.net/" 30.9 WANTED="sctp-tools" 30.10 30.11 @@ -12,8 +13,8 @@ 30.12 genpkg_rules() 30.13 { 30.14 mkdir -p $fs/usr/lib/lksctp-tools 30.15 - cp -a $_pkg/usr/include $fs/usr 30.16 - cp -a $_pkg/usr/lib/libsctp.*a $fs/usr/lib 30.17 - cp -a $_pkg/usr/lib/lksctp-tools/*a $fs/usr/lib/lksctp-tools 30.18 + cp -a $install/usr/include $fs/usr 30.19 + cp -a $install/usr/lib/libsctp.*a $fs/usr/lib 30.20 + cp -a $install/usr/lib/lksctp-tools/*a $fs/usr/lib/lksctp-tools 30.21 } 30.22
31.1 --- a/libsctp/receipt Sun Nov 10 15:03:57 2013 +0000 31.2 +++ b/libsctp/receipt Sun Nov 10 17:13:06 2013 +0000 31.3 @@ -5,14 +5,14 @@ 31.4 CATEGORY="network" 31.5 SHORT_DESC="Stream Control Transmission Protocol libraries." 31.6 MAINTAINER="pascal.bellard@slitaz.org" 31.7 +LICENSE="GPL2 LGPL2.1" 31.8 WEB_SITE="http://lksctp.sourceforge.net/" 31.9 WANTED="sctp-tools" 31.10 31.11 - 31.12 # Rules to gen a SliTaz package suitable for Tazpkg. 31.13 genpkg_rules() 31.14 { 31.15 mkdir -p $fs/usr/lib 31.16 - cp -a $_pkg/usr/lib/libsctp.so* $fs/usr/lib 31.17 + cp -a $install/usr/lib/libsctp.so* $fs/usr/lib 31.18 } 31.19
32.1 --- a/libshout-dev/receipt Sun Nov 10 15:03:57 2013 +0000 32.2 +++ b/libshout-dev/receipt Sun Nov 10 17:13:06 2013 +0000 32.3 @@ -5,16 +5,18 @@ 32.4 CATEGORY="development" 32.5 SHORT_DESC="libshout development files" 32.6 MAINTAINER="slaxemulator@gmail.com" 32.7 -DEPENDS="libshout" 32.8 +LICENSE="GPL2" 32.9 WANTED="libshout" 32.10 WEB_SITE="http://www.icecast.org/" 32.11 32.12 +DEPENDS="libshout" 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 $fs/usr/share 32.18 - cp -a $_pkg/usr/include $fs/usr 32.19 - cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 32.20 - cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 32.21 + cp -a $install/usr/include $fs/usr 32.22 + cp -a $install/usr/lib/*.*a $fs/usr/lib 32.23 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 32.24 } 32.25
33.1 --- a/libshout/receipt Sun Nov 10 15:03:57 2013 +0000 33.2 +++ b/libshout/receipt Sun Nov 10 17:13:06 2013 +0000 33.3 @@ -5,12 +5,14 @@ 33.4 CATEGORY="multimedia" 33.5 SHORT_DESC="Library for accessing a shoutcast/icecast server." 33.6 MAINTAINER="slaxemulator@gmail.com" 33.7 -DEPENDS="libvorbis libtheora speex" 33.8 -BUILD_DEPENDS="libvorbis-dev libtheora-dev speex-dev libogg-dev" 33.9 +LICENSE="GPL2" 33.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 33.11 WEB_SITE="http://www.icecast.org/" 33.12 WGET_URL="http://downloads.xiph.org/releases/$PACKAGE/$TARBALL" 33.13 33.14 +DEPENDS="libvorbis libtheora speex" 33.15 +BUILD_DEPENDS="libvorbis-dev libtheora-dev speex-dev libogg-dev" 33.16 + 33.17 # Rules to configure and make the package. 33.18 compile_rules() 33.19 { 33.20 @@ -22,6 +24,6 @@ 33.21 genpkg_rules() 33.22 { 33.23 mkdir -p $fs/usr/lib 33.24 - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 33.25 + cp -a $install/usr/lib/*.so* $fs/usr/lib 33.26 } 33.27
34.1 --- a/libsigsegv/receipt Sun Nov 10 15:03:57 2013 +0000 34.2 +++ b/libsigsegv/receipt Sun Nov 10 17:13:06 2013 +0000 34.3 @@ -5,11 +5,13 @@ 34.4 CATEGORY="development" 34.5 SHORT_DESC="Library for handling page faults in user mode." 34.6 MAINTAINER="paul@slitaz.org" 34.7 -DEPENDS="" 34.8 +LICENSE="GPL2" 34.9 TARBALL="$PACKAGE-$VERSION.tar.gz" 34.10 WEB_SITE="http://www.gnu.org/software/libsigsegv/" 34.11 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" 34.12 34.13 +DEPENDS="" 34.14 + 34.15 # Rules to configure and make the package. 34.16 compile_rules() 34.17 { 34.18 @@ -19,14 +21,14 @@ 34.19 --infodir=/usr/share/info \ 34.20 --mandir=/usr/share/man \ 34.21 $CONFIGURE_ARGS && 34.22 - make && make DESTDIR=$PWD/_pkg install 34.23 + make && make DESTDIR=$DESTDIR install 34.24 } 34.25 34.26 # Rules to gen a SliTaz package suitable for Tazpkg. 34.27 genpkg_rules() 34.28 { 34.29 mkdir -p $fs/usr/lib 34.30 - cp -a $_pkg/usr/lib $fs/usr 34.31 - cp -a $_pkg/usr/include $fs/usr 34.32 + cp -a $install/usr/lib $fs/usr 34.33 + cp -a $install/usr/include $fs/usr 34.34 } 34.35
35.1 --- a/libsndfile-dev/receipt Sun Nov 10 15:03:57 2013 +0000 35.2 +++ b/libsndfile-dev/receipt Sun Nov 10 17:13:06 2013 +0000 35.3 @@ -5,15 +5,17 @@ 35.4 CATEGORY="development" 35.5 SHORT_DESC="libsndfile devel files" 35.6 MAINTAINER="jozee@slitaz.org" 35.7 -DEPENDS="libsndfile" 35.8 +LICENSE="LGPL2.1" 35.9 WANTED="libsndfile" 35.10 WEB_SITE="http://www.mega-nerd.com/libsndfile/" 35.11 35.12 +DEPENDS="libsndfile" 35.13 + 35.14 # Rules to gen a SliTaz package suitable for Tazpkg. 35.15 genpkg_rules() 35.16 { 35.17 mkdir -p $fs/usr/lib 35.18 - cp -a $_pkg/usr/include $fs/usr 35.19 - cp -a $_pkg/usr/lib/*.*a $fs/usr/lib/ 35.20 - cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 35.21 + cp -a $install/usr/include $fs/usr 35.22 + cp -a $install/usr/lib/*.*a $fs/usr/lib/ 35.23 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 35.24 }
36.1 --- a/libsndfile/receipt Sun Nov 10 15:03:57 2013 +0000 36.2 +++ b/libsndfile/receipt Sun Nov 10 17:13:06 2013 +0000 36.3 @@ -5,25 +5,26 @@ 36.4 CATEGORY="multimedia" 36.5 SHORT_DESC="A C library for reading and writing files containing sampled sound" 36.6 MAINTAINER="jozee@slitaz.org" 36.7 -DEPENDS="alsa-lib flac libvorbis" 36.8 -BUILD_DEPENDS="alsa-lib alsa-lib-dev flac-dev" 36.9 +LICENSE="LGPL2.1" 36.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 36.11 WEB_SITE="http://www.mega-nerd.com/libsndfile/" 36.12 WGET_URL="$WEB_SITE/files/$TARBALL" 36.13 36.14 +DEPENDS="alsa-lib flac libvorbis" 36.15 +BUILD_DEPENDS="alsa-lib alsa-lib-dev flac-dev" 36.16 + 36.17 # Rules to configure and make the package. 36.18 compile_rules() 36.19 { 36.20 cd $src 36.21 ./configure --prefix=/usr --disable-sqlite $CONFIGURE_ARGS && 36.22 make && 36.23 - make DESTDIR=$PWD/_pkg install 36.24 + make DESTDIR=$DESTDIR install 36.25 } 36.26 36.27 # Rules to gen a SliTaz package suitable for Tazpkg. 36.28 genpkg_rules() 36.29 { 36.30 mkdir -p $fs/usr/lib 36.31 - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 36.32 - 36.33 + cp -a $install/usr/lib/*.so* $fs/usr/lib 36.34 }
37.1 --- a/libsqlite/receipt Sun Nov 10 15:03:57 2013 +0000 37.2 +++ b/libsqlite/receipt Sun Nov 10 17:13:06 2013 +0000 37.3 @@ -6,6 +6,7 @@ 37.4 CATEGORY="office" 37.5 SHORT_DESC="Small SQL database engine." 37.6 MAINTAINER="erjo@slitaz.org" 37.7 +LICENSE="PublicDomain" 37.8 WEB_SITE="http://www.sqlite.org/" 37.9 WANTED="sqlite" 37.10
38.1 --- a/libsvn/receipt Sun Nov 10 15:03:57 2013 +0000 38.2 +++ b/libsvn/receipt Sun Nov 10 17:13:06 2013 +0000 38.3 @@ -5,10 +5,12 @@ 38.4 CATEGORY="system-tools" 38.5 SHORT_DESC="Subversion Source Code Management access" 38.6 MAINTAINER="lehswe@gmail.com" 38.7 +LICENSE="Apache" 38.8 +WANTED="subversion" 38.9 +WEB_SITE="http://subversion.tigris.org" 38.10 + 38.11 DEPENDS="apr libsasl libssl libkrb5 util-linux-uuid expat zlib neon libsqlite \ 38.12 libgnutls libcomerr libcomerr3" 38.13 -WANTED="subversion" 38.14 -WEB_SITE="http://subversion.tigris.org" 38.15 38.16 # Rules to gen a SliTaz package suitable for Tazpkg. 38.17 genpkg_rules()
39.1 --- a/libtar-dev/receipt Sun Nov 10 15:03:57 2013 +0000 39.2 +++ b/libtar-dev/receipt Sun Nov 10 17:13:06 2013 +0000 39.3 @@ -5,15 +5,17 @@ 39.4 CATEGORY="development" 39.5 SHORT_DESC="devel files for libtar" 39.6 MAINTAINER="slaxemulator@gmail.com" 39.7 -DEPENDS="libtar" 39.8 +LICENSE="BSD" 39.9 WEB_SITE="http://www.feep.net/libtar/" 39.10 WANTED="libtar" 39.11 39.12 +DEPENDS="libtar" 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/include $fs/usr 39.19 - cp -a $_pkg/usr/lib $fs/usr 39.20 + cp -a $install/usr/include $fs/usr 39.21 + cp -a $install/usr/lib $fs/usr 39.22 } 39.23
40.1 --- a/libtar/receipt Sun Nov 10 15:03:57 2013 +0000 40.2 +++ b/libtar/receipt Sun Nov 10 17:13:06 2013 +0000 40.3 @@ -5,12 +5,14 @@ 40.4 CATEGORY="development" 40.5 SHORT_DESC="C library for manipulating POSIX tar files." 40.6 MAINTAINER="slaxemulator@gmail.com" 40.7 -DEPENDS="zlib" 40.8 -BUILD_DEPENDS="zlib-dev" 40.9 +LICENSE="BSD" 40.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 40.11 WEB_SITE="http://www.feep.net/libtar/" 40.12 WGET_URL="ftp://ftp.feep.net/pub/software/$PACKAGE/$TARBALL" 40.13 40.14 +DEPENDS="zlib" 40.15 +BUILD_DEPENDS="zlib-dev" 40.16 + 40.17 # Rules to configure and make the package. 40.18 compile_rules() 40.19 { 40.20 @@ -20,13 +22,13 @@ 40.21 --infodir=/usr/share/info \ 40.22 --mandir=/usr/share/man \ 40.23 $CONFIGURE_ARGS && 40.24 - make && make DESTDIR=$PWD/_pkg install 40.25 + make && 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 40.32 - cp -a $_pkg/usr/bin $fs/usr 40.33 + cp -a $install/usr/bin $fs/usr 40.34 } 40.35
41.1 --- a/libtasn1-dev/receipt Sun Nov 10 15:03:57 2013 +0000 41.2 +++ b/libtasn1-dev/receipt Sun Nov 10 17:13:06 2013 +0000 41.3 @@ -5,15 +5,17 @@ 41.4 CATEGORY="development" 41.5 SHORT_DESC="The libtasn1 devel files." 41.6 MAINTAINER="pankso@slitaz.org" 41.7 +LICENSE="GPL3 LGPL2.1" 41.8 WANTED="libtasn1" 41.9 +WEB_SITE="http://www.gnu.org/software/libtasn1/" 41.10 + 41.11 DEPENDS="libtasn1" 41.12 -WEB_SITE="http://www.gnu.org/software/libtasn1/" 41.13 41.14 # Rules to gen a SliTaz package suitable for Tazpkg. 41.15 genpkg_rules() 41.16 { 41.17 mkdir -p $fs/usr/lib 41.18 - cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 41.19 - cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 41.20 - cp -a $_pkg/usr/include $fs/usr 41.21 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 41.22 + cp -a $install/usr/lib/*.*a $fs/usr/lib 41.23 + cp -a $install/usr/include $fs/usr 41.24 }
42.1 --- a/libtasn1/receipt Sun Nov 10 15:03:57 2013 +0000 42.2 +++ b/libtasn1/receipt Sun Nov 10 17:13:06 2013 +0000 42.3 @@ -5,6 +5,7 @@ 42.4 CATEGORY="security" 42.5 SHORT_DESC="ASN.1 library." 42.6 MAINTAINER="pankso@slitaz.org" 42.7 +LICENSE="GPL3 LGPL2.1" 42.8 TARBALL="$PACKAGE-$VERSION.tar.gz" 42.9 WEB_SITE="http://www.gnu.org/software/libtasn1/" 42.10 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" 42.11 @@ -24,6 +25,6 @@ 42.12 genpkg_rules() 42.13 { 42.14 mkdir -p $fs/usr/lib 42.15 - cp -a $_pkg/usr/bin $fs/usr 42.16 - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 42.17 + cp -a $install/usr/bin $fs/usr 42.18 + cp -a $install/usr/lib/*.so* $fs/usr/lib 42.19 }
43.1 --- a/libtaz/receipt Sun Nov 10 15:03:57 2013 +0000 43.2 +++ b/libtaz/receipt Sun Nov 10 17:13:06 2013 +0000 43.3 @@ -5,6 +5,7 @@ 43.4 CATEGORY="base-system" 43.5 SHORT_DESC="Slitaz generic library." 43.6 MAINTAINER="gokhlayeh@slitaz.org" 43.7 +LICENSE="BSD" 43.8 WEB_SITE="http://www.slitaz.org/" 43.9 # Download directly from hg, because this package is needed when 43.10 # cooking toolchain. (mercurial is not available at this time)
44.1 --- a/libtheora-dev/receipt Sun Nov 10 15:03:57 2013 +0000 44.2 +++ b/libtheora-dev/receipt Sun Nov 10 17:13:06 2013 +0000 44.3 @@ -5,16 +5,18 @@ 44.4 CATEGORY="development" 44.5 SHORT_DESC="Thera video devel files." 44.6 MAINTAINER="pankso@slitaz.org" 44.7 -DEPENDS="libtheora" 44.8 +LICENSE="BSD" 44.9 WANTED="libtheora" 44.10 WEB_SITE="http://www.theora.org/" 44.11 44.12 +DEPENDS="libtheora" 44.13 + 44.14 # Rules to gen a SliTaz package suitable for Tazpkg. 44.15 genpkg_rules() 44.16 { 44.17 mkdir -p $fs/usr/lib 44.18 - cp -a $_pkg/usr/include $fs/usr 44.19 - cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 44.20 - cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 44.21 + cp -a $install/usr/include $fs/usr 44.22 + cp -a $install/usr/lib/*.*a $fs/usr/lib 44.23 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 44.24 } 44.25
45.1 --- a/libtheora-enc/receipt Sun Nov 10 15:03:57 2013 +0000 45.2 +++ b/libtheora-enc/receipt Sun Nov 10 17:13:06 2013 +0000 45.3 @@ -5,14 +5,16 @@ 45.4 CATEGORY="multimedia" 45.5 SHORT_DESC="Thera video encoding/decoding library." 45.6 MAINTAINER="pankso@slitaz.org" 45.7 -DEPENDS="libogg" 45.8 +LICENSE="BSD" 45.9 WANTED="libtheora" 45.10 WEB_SITE="http://www.theora.org/" 45.11 45.12 +DEPENDS="libogg" 45.13 + 45.14 # Rules to gen a SliTaz package suitable for Tazpkg. 45.15 genpkg_rules() 45.16 { 45.17 mkdir -p $fs/usr/lib 45.18 - cp -a $_pkg/usr/lib/libtheoradec.so* $fs/usr/lib 45.19 - cp -a $_pkg/usr/lib/libtheoraenc.so* $fs/usr/lib 45.20 + cp -a $install/usr/lib/libtheoradec.so* $fs/usr/lib 45.21 + cp -a $install/usr/lib/libtheoraenc.so* $fs/usr/lib 45.22 }
46.1 --- a/libtheora/receipt Sun Nov 10 15:03:57 2013 +0000 46.2 +++ b/libtheora/receipt Sun Nov 10 17:13:06 2013 +0000 46.3 @@ -5,12 +5,14 @@ 46.4 CATEGORY="multimedia" 46.5 SHORT_DESC="Theora video codec and tools." 46.6 MAINTAINER="pankso@slitaz.org" 46.7 -DEPENDS="libogg libvorbis" 46.8 -BUILD_DEPENDS="libogg-dev libvorbis-dev" 46.9 +LICENSE="BSD" 46.10 TARBALL="$PACKAGE-$VERSION.tar.bz2" 46.11 WEB_SITE="http://www.theora.org/" 46.12 WGET_URL="http://downloads.xiph.org/releases/theora/$TARBALL" 46.13 46.14 +DEPENDS="libogg libvorbis" 46.15 +BUILD_DEPENDS="libogg-dev libvorbis-dev" 46.16 + 46.17 # Rules to configure and make the package. 46.18 compile_rules() 46.19 { 46.20 @@ -20,7 +22,7 @@ 46.21 --mandir=/usr/share/man \ 46.22 $CONFIGURE_ARGS 46.23 make 46.24 - make DESTDIR=$PWD/_pkg install 46.25 + make DESTDIR=$DESTDIR install 46.26 } 46.27 46.28 # Rules to gen a SliTaz package suitable for Tazpkg.
47.1 --- a/libtirpc-dev/receipt Sun Nov 10 15:03:57 2013 +0000 47.2 +++ b/libtirpc-dev/receipt Sun Nov 10 17:13:06 2013 +0000 47.3 @@ -5,14 +5,16 @@ 47.4 CATEGORY="development" 47.5 SHORT_DESC="Transport-Independent RPC library, development files." 47.6 MAINTAINER="pascal.bellard@slitaz.org" 47.7 +LICENSE="BSD" 47.8 WEB_SITE="http://libtirpc.sourceforge.net/" 47.9 WANTED="libtirpc" 47.10 + 47.11 DEPENDS="libtirpc" 47.12 47.13 # Rules to gen a SliTaz package suitable for Tazpkg. 47.14 genpkg_rules() 47.15 { 47.16 mkdir -p $fs/usr/lib 47.17 - cp -a $_pkg/usr/lib/*a $fs/usr/lib 47.18 - cp -a $_pkg/usr/include $fs/usr 47.19 + cp -a $install/usr/lib/*a $fs/usr/lib 47.20 + cp -a $install/usr/include $fs/usr 47.21 }
48.1 --- a/libtirpc/receipt Sun Nov 10 15:03:57 2013 +0000 48.2 +++ b/libtirpc/receipt Sun Nov 10 17:13:06 2013 +0000 48.3 @@ -5,6 +5,7 @@ 48.4 CATEGORY="system-tools" 48.5 SHORT_DESC="Transport-Independent RPC library." 48.6 MAINTAINER="pascal.bellard@slitaz.org" 48.7 +LICENSE="BSD" 48.8 TARBALL="$PACKAGE-$VERSION.tar.bz2" 48.9 WEB_SITE="http://libtirpc.sourceforge.net/" 48.10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 48.11 @@ -17,14 +18,14 @@ 48.12 --mandir=/usr/share/man \ 48.13 $CONFIGURE_ARGS && 48.14 make && 48.15 - make DESTDIR=$PWD/_pkg install 48.16 + make DESTDIR=$DESTDIR install 48.17 } 48.18 48.19 # Rules to gen a SliTaz package suitable for Tazpkg. 48.20 genpkg_rules() 48.21 { 48.22 mkdir -p $fs/usr/lib 48.23 - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 48.24 - cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 48.25 - cp -a $_pkg/etc $fs 48.26 + cp -a $install/usr/lib/*.so* $fs/usr/lib 48.27 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 48.28 + cp -a $install/etc $fs 48.29 }
49.1 --- a/libtorrent-rasterbar-dev/receipt Sun Nov 10 15:03:57 2013 +0000 49.2 +++ b/libtorrent-rasterbar-dev/receipt Sun Nov 10 17:13:06 2013 +0000 49.3 @@ -5,10 +5,12 @@ 49.4 CATEGORY="development" 49.5 SHORT_DESC="devel files for libtorrent-rasterbar" 49.6 MAINTAINER="slaxemulator@gmail.com" 49.7 -DEPENDS="libtorrent-rasterbar libboost-math-dev libboost-thread-dev libboost-filesystem-dev zlib-dev" 49.8 +LICENSE="BSD" 49.9 WEB_SITE="http://www.rasterbar.com/products/libtorrent/" 49.10 WANTED="libtorrent-rasterbar" 49.11 49.12 +DEPENDS="libtorrent-rasterbar libboost-math-dev libboost-thread-dev libboost-filesystem-dev zlib-dev" 49.13 + 49.14 # Rules to gen a SliTaz package suitable for Tazpkg. 49.15 genpkg_rules() 49.16 {
50.1 --- a/libtorrent-rasterbar/receipt Sun Nov 10 15:03:57 2013 +0000 50.2 +++ b/libtorrent-rasterbar/receipt Sun Nov 10 17:13:06 2013 +0000 50.3 @@ -5,12 +5,14 @@ 50.4 CATEGORY="development" 50.5 SHORT_DESC="A C++ library that aims to be a good alternative to all the other bittorrent implementations around" 50.6 MAINTAINER="slaxemulator@gmail.com" 50.7 -DEPENDS="libboost-thread libboost-math libboost-filesystem libboost-python openssl python" 50.8 -BUILD_DEPENDS="libboost-thread-dev libboost-math-dev libboost-filesystem-dev libboost-python-dev openssl-dev zlib-dev python-dev" 50.9 +LICENSE="BSD" 50.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 50.11 WEB_SITE="http://www.rasterbar.com/products/libtorrent/" 50.12 WGET_URL="http://libtorrent.googlecode.com/files/$TARBALL" 50.13 50.14 +DEPENDS="libboost-thread libboost-math libboost-filesystem libboost-python openssl python" 50.15 +BUILD_DEPENDS="libboost-thread-dev libboost-math-dev libboost-filesystem-dev libboost-python-dev openssl-dev zlib-dev python-dev" 50.16 + 50.17 # Rules to configure and make the package. 50.18 compile_rules() 50.19 {
51.1 --- a/libupnp-dev/receipt Sun Nov 10 15:03:57 2013 +0000 51.2 +++ b/libupnp-dev/receipt Sun Nov 10 17:13:06 2013 +0000 51.3 @@ -5,15 +5,17 @@ 51.4 CATEGORY="development" 51.5 SHORT_DESC="LibUpnP devel files." 51.6 MAINTAINER="pankso@slitaz.org" 51.7 -DEPENDS="libupnp" 51.8 +LICENSE="BSD" 51.9 WANTED="libupnp" 51.10 WEB_SITE="http://pupnp.sourceforge.net/" 51.11 51.12 +DEPENDS="libupnp" 51.13 + 51.14 # Rules to gen a SliTaz package suitable for Tazpkg. 51.15 genpkg_rules() 51.16 { 51.17 mkdir -p $fs/usr/lib 51.18 - cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 51.19 - cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 51.20 - cp -a $_pkg/usr/include $fs/usr 51.21 + cp -a $install/usr/lib/*.*a $fs/usr/lib 51.22 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 51.23 + cp -a $install/usr/include $fs/usr 51.24 }
52.1 --- a/libupnp/receipt Sun Nov 10 15:03:57 2013 +0000 52.2 +++ b/libupnp/receipt Sun Nov 10 17:13:06 2013 +0000 52.3 @@ -5,12 +5,14 @@ 52.4 CATEGORY="network" 52.5 SHORT_DESC="The portable Universal Plug and Play (UPnP)." 52.6 MAINTAINER="pankso@slitaz.org" 52.7 -DEPENDS="libxml2" 52.8 -BUILD_DEPENDS="libxml2-dev libpthread-stubs" 52.9 +LICENSE="BSD" 52.10 TARBALL="$PACKAGE-$VERSION.tar.bz2" 52.11 WEB_SITE="http://pupnp.sourceforge.net/" 52.12 WGET_URL="$SF_MIRROR/pupnp/$TARBALL" 52.13 52.14 +DEPENDS="libxml2" 52.15 +BUILD_DEPENDS="libxml2-dev libpthread-stubs" 52.16 + 52.17 # Rules to configure and make the package. 52.18 compile_rules() 52.19 { 52.20 @@ -26,5 +28,5 @@ 52.21 genpkg_rules() 52.22 { 52.23 mkdir -p $fs/usr/lib 52.24 - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 52.25 + cp -a $install/usr/lib/*.so* $fs/usr/lib 52.26 }
53.1 --- a/libusb-compat-dev/receipt Sun Nov 10 15:03:57 2013 +0000 53.2 +++ b/libusb-compat-dev/receipt Sun Nov 10 17:13:06 2013 +0000 53.3 @@ -5,6 +5,7 @@ 53.4 CATEGORY="development" 53.5 SHORT_DESC="USB accedd library devel files." 53.6 MAINTAINER="pankso@slitaz.org" 53.7 +LICENSE="LGPL2.1" 53.8 WANTED="libusb-compat" 53.9 WEB_SITE="http://libusb.sourceforge.net/" 53.10 53.11 @@ -12,9 +13,9 @@ 53.12 genpkg_rules() 53.13 { 53.14 mkdir -p $fs/usr/lib 53.15 - cp -a $_pkg/usr/bin $fs/usr 53.16 - cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 53.17 - cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 53.18 - cp -a $_pkg/usr/include $fs/usr 53.19 + cp -a $install/usr/bin $fs/usr 53.20 + cp -a $install/usr/lib/*.*a $fs/usr/lib 53.21 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 53.22 + cp -a $install/usr/include $fs/usr 53.23 } 53.24
54.1 --- a/libusb-compat/receipt Sun Nov 10 15:03:57 2013 +0000 54.2 +++ b/libusb-compat/receipt Sun Nov 10 17:13:06 2013 +0000 54.3 @@ -5,6 +5,7 @@ 54.4 CATEGORY="system-tools" 54.5 SHORT_DESC="Compatibility layer to converts libusb 0.1 calls into 1.0 equivalents." 54.6 MAINTAINER="pankso@slitaz.org" 54.7 +LICENSE="LGPL2.1" 54.8 TARBALL="$PACKAGE-$VERSION.tar.bz2" 54.9 WEB_SITE="http://libusb.sourceforge.net/" 54.10 WGET_URL="$SF_MIRROR/libusb/$TARBALL" 54.11 @@ -20,13 +21,13 @@ 54.12 --prefix=/usr \ 54.13 $CONFIGURE_ARGS && 54.14 make && 54.15 - make DESTDIR=$PWD/_pkg install 54.16 + make DESTDIR=$DESTDIR install 54.17 } 54.18 54.19 # Rules to gen a SliTaz package suitable for Tazpkg. 54.20 genpkg_rules() 54.21 { 54.22 mkdir -p $fs/usr/lib 54.23 - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 54.24 + cp -a $install/usr/lib/*.so* $fs/usr/lib 54.25 } 54.26
55.1 --- a/libusb-dev/receipt Sun Nov 10 15:03:57 2013 +0000 55.2 +++ b/libusb-dev/receipt Sun Nov 10 17:13:06 2013 +0000 55.3 @@ -5,16 +5,18 @@ 55.4 CATEGORY="development" 55.5 SHORT_DESC="USB accedd library devel files." 55.6 MAINTAINER="pankso@slitaz.org" 55.7 -DEPENDS="libusb libusb-compat-dev" 55.8 +LICENSE="LGPL2.1" 55.9 WANTED="libusb" 55.10 WEB_SITE="http://libusb.sourceforge.net/" 55.11 55.12 +DEPENDS="libusb libusb-compat-dev" 55.13 + 55.14 # Rules to gen a SliTaz package suitable for Tazpkg. 55.15 genpkg_rules() 55.16 { 55.17 mkdir -p $fs/usr/lib 55.18 - cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 55.19 - cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 55.20 - cp -a $_pkg/usr/include $fs/usr 55.21 + cp -a $install/usr/lib/*.*a $fs/usr/lib 55.22 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 55.23 + cp -a $install/usr/include $fs/usr 55.24 } 55.25
56.1 --- a/libusb/receipt Sun Nov 10 15:03:57 2013 +0000 56.2 +++ b/libusb/receipt Sun Nov 10 17:13:06 2013 +0000 56.3 @@ -5,6 +5,7 @@ 56.4 CATEGORY="system-tools" 56.5 SHORT_DESC="USB accedd library." 56.6 MAINTAINER="pankso@slitaz.org" 56.7 +LICENSE="LGPL2.1" 56.8 TARBALL="$PACKAGE-$VERSION.tar.bz2" 56.9 WEB_SITE="http://libusb.sourceforge.net/" 56.10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 56.11 @@ -17,13 +18,13 @@ 56.12 --prefix=/usr \ 56.13 $CONFIGURE_ARGS && 56.14 make && 56.15 - make DESTDIR=$PWD/_pkg install 56.16 + make DESTDIR=$DESTDIR install 56.17 } 56.18 56.19 # Rules to gen a SliTaz package suitable for Tazpkg. 56.20 genpkg_rules() 56.21 { 56.22 mkdir -p $fs/usr/lib 56.23 - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 56.24 + cp -a $install/usr/lib/*.so* $fs/usr/lib 56.25 } 56.26
57.1 --- a/libvpx-dev/receipt Sun Nov 10 15:03:57 2013 +0000 57.2 +++ b/libvpx-dev/receipt Sun Nov 10 17:13:06 2013 +0000 57.3 @@ -5,6 +5,7 @@ 57.4 CATEGORY="development" 57.5 SHORT_DESC="devel files for libvpx" 57.6 MAINTAINER="slaxemulator@gmail.com" 57.7 +LICENSE="BSD" 57.8 WEB_SITE="http://www.webproject.org/" 57.9 DEPENDS="libvpx" 57.10 WANTED="libvpx"
58.1 --- a/libvpx/receipt Sun Nov 10 15:03:57 2013 +0000 58.2 +++ b/libvpx/receipt Sun Nov 10 17:13:06 2013 +0000 58.3 @@ -5,6 +5,7 @@ 58.4 CATEGORY="multimedia" 58.5 SHORT_DESC="The VP8 Codec SDK" 58.6 MAINTAINER="slaxemulator@gmail.com" 58.7 +LICENSE="BSD" 58.8 WEB_SITE="http://www.webmproject.org/" 58.9 TARBALL="$PACKAGE-v$VERSION.tar.bz2" 58.10 WGET_URL="http://webm.googlecode.com/files/$TARBALL"
59.1 --- a/libwapcaplet-dev/receipt Sun Nov 10 15:03:57 2013 +0000 59.2 +++ b/libwapcaplet-dev/receipt Sun Nov 10 17:13:06 2013 +0000 59.3 @@ -5,6 +5,7 @@ 59.4 CATEGORY="development" 59.5 SHORT_DESC="String internment library dev files" 59.6 MAINTAINER="erjo@slitaz.org" 59.7 +LICENSE="MIT" 59.8 WANTED="libwapcaplet" 59.9 WEB_SITE="http://www.netsurf-browser.org/projects/libcss/" 59.10 59.11 @@ -12,9 +13,9 @@ 59.12 genpkg_rules() 59.13 { 59.14 mkdir -p $fs/usr/lib 59.15 - cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 59.16 - cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 59.17 - cp -a $_pkg/usr/include $fs/usr 59.18 + cp -a $install/usr/lib/*.*a $fs/usr/lib 59.19 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 59.20 + cp -a $install/usr/include $fs/usr 59.21 } 59.22 59.23
60.1 --- a/libwapcaplet/receipt Sun Nov 10 15:03:57 2013 +0000 60.2 +++ b/libwapcaplet/receipt Sun Nov 10 17:13:06 2013 +0000 60.3 @@ -5,18 +5,19 @@ 60.4 CATEGORY="system-tools" 60.5 SHORT_DESC="String internment library" 60.6 MAINTAINER="erjo@slitaz.org" 60.7 -DEPENDS="" 60.8 +LICENSE="MIT" 60.9 TARBALL="$PACKAGE-$VERSION-src.tar.gz" 60.10 WEB_SITE="http://www.netsurf-browser.org/projects/libcss/" 60.11 WGET_URL="http://www.netsurf-browser.org/projects/releases/$TARBALL" 60.12 60.13 +DEPENDS="" 60.14 60.15 # Rules to configure and make the package. 60.16 compile_rules() 60.17 { 60.18 cd $src 60.19 COMPONENT_TYPE=lib-shared make \ 60.20 - && PREFIX=/usr make DESTDIR=$PWD/_pkg install 60.21 + && PREFIX=/usr make DESTDIR=$DESTDIR install 60.22 } 60.23 60.24 # Rules to gen a SliTaz package suitable for Tazpkg.
61.1 --- a/libwebkit-dev/receipt Sun Nov 10 15:03:57 2013 +0000 61.2 +++ b/libwebkit-dev/receipt Sun Nov 10 17:13:06 2013 +0000 61.3 @@ -4,21 +4,23 @@ 61.4 VERSION="1.8.3" 61.5 CATEGORY="development" 61.6 SHORT_DESC="devel files for libwebkit" 61.7 -DEPENDS="libwebkit libsoup-dev enchant-dev libtasn1-dev sqlite-dev" 61.8 SOURCE="webkit" 61.9 WANTED="libwebkit" 61.10 MAINTAINER="mallory@sweetpeople.org" 61.11 +LICENSE="LGPL2" 61.12 WEB_SITE="http://webkitgtk.org" 61.13 61.14 +DEPENDS="libwebkit libsoup-dev enchant-dev libtasn1-dev sqlite-dev" 61.15 + 61.16 # Rules to gen a SliTaz package suitable for Tazpkg. 61.17 genpkg_rules() 61.18 { 61.19 mkdir -p $fs/usr/lib $fs/usr/share 61.20 - cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 61.21 - cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 61.22 - cp -a $_pkg/usr/include $fs/usr 61.23 - [ -d $_pkg/usr/share/gir-1.0 ] && 61.24 - cp -a $_pkg/usr/share/gir-1.0 $fs/usr/share 61.25 + cp -a $install/usr/lib/*.*a $fs/usr/lib 61.26 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 61.27 + cp -a $install/usr/include $fs/usr 61.28 + [ -d $install/usr/share/gir-1.0 ] && 61.29 + cp -a $install/usr/share/gir-1.0 $fs/usr/share 61.30 if [ -f $fs/usr/lib/pkgconfig/webkit-1.0.pc ]; then 61.31 ln -sf /usr/lib/pkgconfig/webkit-1.0.pc \ 61.32 $fs/usr/lib/pkgconfig/webkitgtk-1.0.pc
62.1 --- a/libwebkit-video-dev/receipt Sun Nov 10 15:03:57 2013 +0000 62.2 +++ b/libwebkit-video-dev/receipt Sun Nov 10 17:13:06 2013 +0000 62.3 @@ -4,21 +4,23 @@ 62.4 VERSION="1.8.3" 62.5 CATEGORY="development" 62.6 SHORT_DESC="devel files for libwebkit" 62.7 -DEPENDS="libwebkit-video libsoup-dev enchant-dev libtasn1-dev sqlite-dev" 62.8 SOURCE="webkit" 62.9 WANTED="libwebkit-video" 62.10 MAINTAINER="mallory@sweetpeople.org" 62.11 +LICENSE="LGPL2" 62.12 WEB_SITE="http://webkitgtk.org" 62.13 62.14 +DEPENDS="libwebkit-video libsoup-dev enchant-dev libtasn1-dev sqlite-dev" 62.15 + 62.16 # Rules to gen a SliTaz package suitable for Tazpkg. 62.17 genpkg_rules() 62.18 { 62.19 mkdir -p $fs/usr/lib $fs/usr/share 62.20 - cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 62.21 - cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 62.22 - cp -a $_pkg/usr/include $fs/usr 62.23 - [ -d $_pkg/usr/share/gir-1.0 ] && 62.24 - cp -a $_pkg/usr/share/gir-1.0 $fs/usr/share 62.25 + cp -a $install/usr/lib/*.*a $fs/usr/lib 62.26 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 62.27 + cp -a $install/usr/include $fs/usr 62.28 + [ -d $install/usr/share/gir-1.0 ] && 62.29 + cp -a $install/usr/share/gir-1.0 $fs/usr/share 62.30 if [ -f $fs/usr/lib/pkgconfig/webkit-1.0.pc ]; then 62.31 ln -sf /usr/lib/pkgconfig/webkit-1.0.pc \ 62.32 $fs/usr/lib/pkgconfig/webkitgtk-1.0.pc
63.1 --- a/libwebkit-video/receipt Sun Nov 10 15:03:57 2013 +0000 63.2 +++ b/libwebkit-video/receipt Sun Nov 10 17:13:06 2013 +0000 63.3 @@ -5,6 +5,7 @@ 63.4 CATEGORY="network" 63.5 SHORT_DESC="xHTML render library." 63.6 MAINTAINER="mallory@sweetpeople.org" 63.7 +LICENSE="LGPL2" 63.8 SOURCE="webkit" 63.9 TARBALL="$SOURCE-$VERSION.tar.xz" 63.10 WEB_SITE="http://webkitgtk.org" 63.11 @@ -60,7 +61,7 @@ 63.12 genpkg_rules() 63.13 { 63.14 mkdir -p $fs/usr/lib $fs/usr/bin 63.15 - [ -d $_pkg/usr/lib/girepository-1.0 ] && 63.16 - cp -a $_pkg/usr/lib/girepository-1.0 $fs/usr/lib 63.17 - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 63.18 + [ -d $install/usr/lib/girepository-1.0 ] && 63.19 + cp -a $install/usr/lib/girepository-1.0 $fs/usr/lib 63.20 + cp -a $install/usr/lib/*.so* $fs/usr/lib 63.21 }
64.1 --- a/libwebkit/receipt Sun Nov 10 15:03:57 2013 +0000 64.2 +++ b/libwebkit/receipt Sun Nov 10 17:13:06 2013 +0000 64.3 @@ -5,6 +5,7 @@ 64.4 CATEGORY="network" 64.5 SHORT_DESC="xHTML render library." 64.6 MAINTAINER="mallory@sweetpeople.org" 64.7 +LICENSE="LGPL2" 64.8 SOURCE="webkit" 64.9 TARBALL="$SOURCE-$VERSION.tar.xz" 64.10 WEB_SITE="http://webkitgtk.org"
65.1 --- a/libxdg-basedir-dev/receipt Sun Nov 10 15:03:57 2013 +0000 65.2 +++ b/libxdg-basedir-dev/receipt Sun Nov 10 17:13:06 2013 +0000 65.3 @@ -5,6 +5,7 @@ 65.4 CATEGORY="development" 65.5 SHORT_DESC="libxdg-basedir development files" 65.6 MAINTAINER="mallory@sweetpeople.org" 65.7 +LICENSE="MIT" 65.8 WEB_SITE="http://n.ethz.ch/~nevillm/download/libxdg-basedir" 65.9 WANTED="libxdg-basedir" 65.10 65.11 @@ -12,8 +13,8 @@ 65.12 genpkg_rules() 65.13 { 65.14 mkdir -p $fs/usr/lib 65.15 - cp -a $_pkg/usr/include $fs/usr 65.16 - cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 65.17 - cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 65.18 + cp -a $install/usr/include $fs/usr 65.19 + cp -a $install/usr/lib/*.*a $fs/usr/lib 65.20 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 65.21 } 65.22
66.1 --- a/libxdg-basedir/receipt Sun Nov 10 15:03:57 2013 +0000 66.2 +++ b/libxdg-basedir/receipt Sun Nov 10 17:13:06 2013 +0000 66.3 @@ -5,6 +5,7 @@ 66.4 CATEGORY="development" 66.5 SHORT_DESC="This library implements functions to list the directories according to the XDG Base Directory specification and provides a few higher-level functions for use with the specification." 66.6 MAINTAINER="mallory@sweetpeople.org" 66.7 +LICENSE="MIT" 66.8 TARBALL="$PACKAGE-$VERSION.tar.gz" 66.9 WEB_SITE="http://n.ethz.ch/~nevillm/download/libxdg-basedir" 66.10 WGET_URL="$WEB_SITE/$TARBALL" 66.11 @@ -25,6 +26,6 @@ 66.12 genpkg_rules() 66.13 { 66.14 mkdir -p $fs/usr/lib 66.15 - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 66.16 + cp -a $install/usr/lib/*.so* $fs/usr/lib 66.17 } 66.18
67.1 --- a/libzip-dev/receipt Sun Nov 10 15:03:57 2013 +0000 67.2 +++ b/libzip-dev/receipt Sun Nov 10 17:13:06 2013 +0000 67.3 @@ -5,6 +5,7 @@ 67.4 CATEGORY="development" 67.5 SHORT_DESC="C library for reading, creating, and modifying zip archives, development files." 67.6 MAINTAINER="pascal.bellard@slitaz.org" 67.7 +LICENSE="BSD" 67.8 WEB_SITE="http://www.nih.at/libzip/" 67.9 WANTED="libzip" 67.10
68.1 --- a/libzip/receipt Sun Nov 10 15:03:57 2013 +0000 68.2 +++ b/libzip/receipt Sun Nov 10 17:13:06 2013 +0000 68.3 @@ -5,6 +5,7 @@ 68.4 CATEGORY="misc" 68.5 SHORT_DESC="C library for reading, creating, and modifying zip archives." 68.6 MAINTAINER="pascal.bellard@slitaz.org" 68.7 +LICENSE="BSD" 68.8 TARBALL="$PACKAGE-$VERSION.tar.bz2" 68.9 WEB_SITE="http://www.nih.at/libzip/" 68.10 WGET_URL="${WEB_SITE}$TARBALL"
69.1 --- a/sctp-tools/receipt Sun Nov 10 15:03:57 2013 +0000 69.2 +++ b/sctp-tools/receipt Sun Nov 10 17:13:06 2013 +0000 69.3 @@ -5,10 +5,12 @@ 69.4 CATEGORY="network" 69.5 SHORT_DESC="Stream Control Transmission Protocol tools." 69.6 MAINTAINER="pascal.bellard@slitaz.org" 69.7 +LICENSE="GPL2 LGPL2.1" 69.8 SOURCE="lksctp-tools" 69.9 TARBALL="$SOURCE-$VERSION.tar.gz" 69.10 WEB_SITE="http://lksctp.sourceforge.net/" 69.11 WGET_URL="$SF_MIRROR/project/lksctp/lksctp/$SOURCE-$VERSION/$TARBALL" 69.12 + 69.13 DEPENDS="libsctp" 69.14 69.15 # Rules to configure and make the package. 69.16 @@ -20,15 +22,15 @@ 69.17 --mandir=/usr/share/man \ 69.18 $CONFIGURE_ARGS && 69.19 make && 69.20 - make DESTDIR=$PWD/_pkg install 69.21 + make DESTDIR=$DESTDIR install 69.22 } 69.23 69.24 # Rules to gen a SliTaz package suitable for Tazpkg. 69.25 genpkg_rules() 69.26 { 69.27 mkdir -p $fs/usr/lib/lksctp-tools 69.28 - cp -a $_pkg/usr/bin $fs/usr 69.29 - cp -a $_pkg/usr/lib/lksctp-tools/libwithsctp.so* \ 69.30 + cp -a $install/usr/bin $fs/usr 69.31 + cp -a $install/usr/lib/lksctp-tools/libwithsctp.so* \ 69.32 $fs/usr/lib/lksctp-tools 69.33 } 69.34
70.1 --- a/subversion-dev/receipt Sun Nov 10 15:03:57 2013 +0000 70.2 +++ b/subversion-dev/receipt Sun Nov 10 17:13:06 2013 +0000 70.3 @@ -5,9 +5,11 @@ 70.4 CATEGORY="development" 70.5 SHORT_DESC="Subversion Source Code Management accessdev files" 70.6 MAINTAINER="lehswe@gmail.com" 70.7 +LICENSE="Apache" 70.8 WEB_SITE="http://subversion.tigris.org" 70.9 +WANTED="subversion" 70.10 + 70.11 DEPENDS="libsvn" 70.12 -WANTED="subversion" 70.13 70.14 # Rules to gen a SliTaz package suitable for Tazpkg. 70.15 genpkg_rules()
71.1 --- a/subversion/receipt Sun Nov 10 15:03:57 2013 +0000 71.2 +++ b/subversion/receipt Sun Nov 10 17:13:06 2013 +0000 71.3 @@ -5,6 +5,7 @@ 71.4 CATEGORY="development" 71.5 SHORT_DESC="Subversion Source Code Management access" 71.6 MAINTAINER="lehswe@gmail.com" 71.7 +LICENSE="Apache" 71.8 TARBALL="$PACKAGE-$VERSION.tar.bz2" 71.9 WEB_SITE="http://subversion.tigris.org" 71.10 WGET_URL="http://apache.osuosl.org/$PACKAGE/$TARBALL"
72.1 --- a/webkit-r-dev/receipt Sun Nov 10 15:03:57 2013 +0000 72.2 +++ b/webkit-r-dev/receipt Sun Nov 10 17:13:06 2013 +0000 72.3 @@ -6,6 +6,7 @@ 72.4 SHORT_DESC="xHTML render library." 72.5 WANTED="webkit-r" 72.6 MAINTAINER="pankso@slitaz.org" 72.7 +LICENSE="BSD LGPL" 72.8 WEB_SITE="http://webkit.org/" 72.9 72.10 # Rules to gen a SliTaz package suitable for Tazpkg.
73.1 --- a/webkit-r/receipt Sun Nov 10 15:03:57 2013 +0000 73.2 +++ b/webkit-r/receipt Sun Nov 10 17:13:06 2013 +0000 73.3 @@ -4,6 +4,12 @@ 73.4 VERSION="99690" 73.5 CATEGORY="network" 73.6 SHORT_DESC="xHTML render library." 73.7 +MAINTAINER="pankso@slitaz.org" 73.8 +LICENSE="BSD LGPL" 73.9 +TARBALL="WebKit-r${VERSION}.tar.bz2" 73.10 +WEB_SITE="http://webkit.org/" 73.11 +WGET_URL="http://nightly.webkit.org/files/trunk/src/$TARBALL" 73.12 + 73.13 DEPENDS="libxslt expat gtk+ icu jpeg libcurl libxml2 openssl sqlite \ 73.14 xorg-libICE xorg-libSM xorg-libX11 xorg-libXau xorg-libXcomposite \ 73.15 xorg-libXcursor xorg-libXdmcp xorg-libXext xorg-libXfixes \ 73.16 @@ -13,10 +19,6 @@ 73.17 sqlite-dev libtool m4 bison flex curl-dev gtk-doc libsoup-dev \ 73.18 gst-plugins-base-dev gstreamer-dev util-linux-uuid-dev \ 73.19 jpeg-dev libjpeg libpng-dev pango-dev gtk+-dev orc-dev" 73.20 -MAINTAINER="pankso@slitaz.org" 73.21 -TARBALL="WebKit-r${VERSION}.tar.bz2" 73.22 -WEB_SITE="http://webkit.org/" 73.23 -WGET_URL="http://nightly.webkit.org/files/trunk/src/$TARBALL" 73.24 73.25 # Rules to configure and make the package. 73.26 compile_rules()
74.1 --- a/webkit-web-inspector/receipt Sun Nov 10 15:03:57 2013 +0000 74.2 +++ b/webkit-web-inspector/receipt Sun Nov 10 17:13:06 2013 +0000 74.3 @@ -4,16 +4,18 @@ 74.4 VERSION="1.8.3" 74.5 CATEGORY="network" 74.6 SHORT_DESC="Webkit development tools" 74.7 -DEPENDS="libwebkit" 74.8 SOURCE="webkit" 74.9 WANTED="libwebkit" 74.10 MAINTAINER="mallory@sweetpeople.org" 74.11 +LICENSE="BSD LGPL" 74.12 WEB_SITE="http://webkitgtk.org" 74.13 74.14 +DEPENDS="libwebkit" 74.15 + 74.16 # Rules to gen a SliTaz package suitable for Tazpkg. 74.17 genpkg_rules() 74.18 { 74.19 mkdir -p $fs/usr/share 74.20 - cp -a $_pkg/usr/bin $fs/usr/ 74.21 - cp -a $_pkg/usr/share/webkitgtk-1.0 $fs/usr/share 74.22 + cp -a $install/usr/bin $fs/usr/ 74.23 + cp -a $install/usr/share/webkitgtk-1.0 $fs/usr/share 74.24 }