wok rev 15473
Add some licenses
line diff
1.1 --- a/libffi-dev/receipt Sat Nov 09 17:34:23 2013 +0000 1.2 +++ b/libffi-dev/receipt Sat Nov 09 20:47:29 2013 +0000 1.3 @@ -6,6 +6,7 @@ 1.4 SHORT_DESC="libffi devel files." 1.5 WEB_SITE="http://sourceware.org/libffi/" 1.6 MAINTAINER="rcx@zoominternet.net" 1.7 +LICENSE="MIT" 1.8 WANTED="libffi" 1.9 HOST_ARCH="i486 arm" 1.10
2.1 --- a/libffi/receipt Sat Nov 09 17:34:23 2013 +0000 2.2 +++ b/libffi/receipt Sat Nov 09 20:47:29 2013 +0000 2.3 @@ -5,6 +5,7 @@ 2.4 CATEGORY="development" 2.5 SHORT_DESC="A portable foreign function interface library." 2.6 MAINTAINER="rcx@zoominternet.net" 2.7 +LICENSE="MIT" 2.8 TARBALL="$PACKAGE-$VERSION.tar.gz" 2.9 WEB_SITE="http://sourceware.org/libffi/" 2.10 WGET_URL="ftp://sourceware.org/pub/$PACKAGE/$TARBALL"
3.1 --- a/libfirefox/receipt Sat Nov 09 17:34:23 2013 +0000 3.2 +++ b/libfirefox/receipt Sat Nov 09 20:47:29 2013 +0000 3.3 @@ -5,6 +5,7 @@ 3.4 CATEGORY="network" 3.5 SHORT_DESC="firefox/thunderbird common files" 3.6 MAINTAINER="jozee@slitaz.org" 3.7 +LICENSE="MPL2" 3.8 WANTED="firefox" 3.9 WEB_SITE="http://www.mozilla.org/" 3.10
4.1 --- a/libftdi-dev/receipt Sat Nov 09 17:34:23 2013 +0000 4.2 +++ b/libftdi-dev/receipt Sat Nov 09 20:47:29 2013 +0000 4.3 @@ -5,15 +5,17 @@ 4.4 CATEGORY="development" 4.5 SHORT_DESC="libftdi devel files." 4.6 MAINTAINER="rcx@zoominternet.net" 4.7 -DEPENDS="" 4.8 +LICENSE="BSD GPL2 LGPL2" 4.9 WEB_SITE="http://www.intra2net.com/en/developer/libftdi/" 4.10 WANTED="libftdi" 4.11 4.12 +DEPENDS="" 4.13 + 4.14 # Rules to gen a SliTaz package suitable for Tazpkg. 4.15 genpkg_rules() 4.16 { 4.17 mkdir -p $fs/usr/lib 4.18 - cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 4.19 - cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 4.20 - cp -a $_pkg/usr/include $fs/usr 4.21 + cp -a $install/usr/lib/*.*a $fs/usr/lib 4.22 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 4.23 + cp -a $install/usr/include $fs/usr 4.24 }
5.1 --- a/libftdi/receipt Sat Nov 09 17:34:23 2013 +0000 5.2 +++ b/libftdi/receipt Sat Nov 09 20:47:29 2013 +0000 5.3 @@ -5,12 +5,14 @@ 5.4 CATEGORY="system-tools" 5.5 SHORT_DESC="A library to talk to FTDI chips using libusb." 5.6 MAINTAINER="rcx@zoominternet.net" 5.7 -DEPENDS="glibc-base libusb libusb-compat gcc-lib-base" 5.8 -BUILD_DEPENDS="slitaz-toolchain libusb-dev libusb libusb-compat" 5.9 +LICENSE="BSD GPL2 LGPL2" 5.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 5.11 WEB_SITE="http://www.intra2net.com/en/developer/libftdi/" 5.12 WGET_URL="http://www.intra2net.com/en/developer/libftdi/download/$TARBALL" 5.13 5.14 +DEPENDS="glibc-base libusb libusb-compat gcc-lib-base" 5.15 +BUILD_DEPENDS="slitaz-toolchain libusb-dev libusb libusb-compat" 5.16 + 5.17 # Rules to configure and make the package. 5.18 compile_rules() 5.19 { 5.20 @@ -26,6 +28,6 @@ 5.21 genpkg_rules() 5.22 { 5.23 mkdir -p $fs/usr/lib 5.24 - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 5.25 - cp -a $_pkg/usr/bin $fs/usr 5.26 + cp -a $install/usr/lib/*.so* $fs/usr/lib 5.27 + cp -a $install/usr/bin $fs/usr 5.28 }
6.1 --- a/libgcrypt-dev/receipt Sat Nov 09 17:34:23 2013 +0000 6.2 +++ b/libgcrypt-dev/receipt Sat Nov 09 20:47:29 2013 +0000 6.3 @@ -5,17 +5,19 @@ 6.4 CATEGORY="development" 6.5 SHORT_DESC="Cryptographic library based on GnuPG Headers" 6.6 MAINTAINER="erjo@slitaz.org" 6.7 -DEPENDS="libgcrypt libgpg-error-dev" 6.8 +LICENSE="GPL2 LGPL2.1" 6.9 WANTED="libgcrypt" 6.10 WEB_SITE="http://www.gnupg.org/" 6.11 6.12 +DEPENDS="libgcrypt libgpg-error-dev" 6.13 + 6.14 # Rules to gen a SliTaz package suitable for Tazpkg. 6.15 genpkg_rules() 6.16 { 6.17 mkdir -p $fs/usr/bin $fs/usr/lib $fs/usr/share 6.18 - cp -a $_pkg/usr/bin/libgcrypt-config $fs/usr/bin 6.19 - cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 6.20 - cp -a $_pkg/usr/include $fs/usr 6.21 - cp -a $_pkg/usr/share/aclocal $fs/usr/share 6.22 + cp -a $install/usr/bin/libgcrypt-config $fs/usr/bin 6.23 + cp -a $install/usr/lib/*.*a $fs/usr/lib 6.24 + cp -a $install/usr/include $fs/usr 6.25 + cp -a $install/usr/share/aclocal $fs/usr/share 6.26 } 6.27
7.1 --- a/libgcrypt/receipt Sat Nov 09 17:34:23 2013 +0000 7.2 +++ b/libgcrypt/receipt Sat Nov 09 20:47:29 2013 +0000 7.3 @@ -5,6 +5,7 @@ 7.4 CATEGORY="security" 7.5 SHORT_DESC="Cryptographic library based on GnuPG" 7.6 MAINTAINER="erjo@slitaz.org" 7.7 +LICENSE="GPL2 LGPL2.1" 7.8 TARBALL="$PACKAGE-$VERSION.tar.bz2" 7.9 WEB_SITE="http://www.gnupg.org/" 7.10 WGET_URL="ftp://ftp.gnupg.org/gcrypt/libgcrypt/$TARBALL" 7.11 @@ -28,6 +29,6 @@ 7.12 genpkg_rules() 7.13 { 7.14 mkdir -p $fs/usr/bin $fs/usr/lib 7.15 - cp -a $_pkg/usr/bin/dumpsexp $fs/usr/bin 7.16 - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 7.17 + cp -a $install/usr/bin/dumpsexp $fs/usr/bin 7.18 + cp -a $install/usr/lib/*.so* $fs/usr/lib 7.19 }
8.1 --- a/libgd-dev/receipt Sat Nov 09 17:34:23 2013 +0000 8.2 +++ b/libgd-dev/receipt Sat Nov 09 20:47:29 2013 +0000 8.3 @@ -5,6 +5,7 @@ 8.4 CATEGORY="development" 8.5 SHORT_DESC="Library for the dynamic creation of images development files." 8.6 MAINTAINER="pascal.bellard@slitaz.org" 8.7 +LICENSE="BSD" 8.8 WANTED="libgd" 8.9 WEB_SITE="http://www.libgd.org/" 8.10 8.11 @@ -12,7 +13,7 @@ 8.12 genpkg_rules() 8.13 { 8.14 mkdir -p $fs/usr/lib 8.15 - cp -a $_pkg/usr/local/include $fs/usr 8.16 - cp -a $_pkg/usr/local/lib/*a $fs/usr/lib 8.17 + cp -a $install/usr/local/include $fs/usr 8.18 + cp -a $install/usr/local/lib/*a $fs/usr/lib 8.19 } 8.20
9.1 --- a/libgd/receipt Sat Nov 09 17:34:23 2013 +0000 9.2 +++ b/libgd/receipt Sat Nov 09 20:47:29 2013 +0000 9.3 @@ -5,6 +5,7 @@ 9.4 CATEGORY="graphics" 9.5 SHORT_DESC="Library for the dynamic creation of images." 9.6 MAINTAINER="pascal.bellard@slitaz.org" 9.7 +LICENSE="BSD" 9.8 TARBALL="$PACKAGE-$VERSION.tar.bz2" 9.9 WEB_SITE="http://www.libgd.org/" 9.10 WGET_URL="hg|https://bitbucket.org/pierrejoye/gd-libgd" 9.11 @@ -36,7 +37,7 @@ 9.12 genpkg_rules() 9.13 { 9.14 mkdir -p $fs/usr/lib 9.15 - cp -a $_pkg/usr/local/bin $fs/usr 9.16 + cp -a $install/usr/local/bin $fs/usr 9.17 chmod +x $fs/usr/bin/gdlib-config 9.18 - cp -a $_pkg/usr/local/lib/*.so* $fs/usr/lib 9.19 + cp -a $install/usr/local/lib/*.so* $fs/usr/lib 9.20 }
10.1 --- a/libgdal/receipt Sat Nov 09 17:34:23 2013 +0000 10.2 +++ b/libgdal/receipt Sat Nov 09 20:47:29 2013 +0000 10.3 @@ -5,6 +5,7 @@ 10.4 CATEGORY="misc" 10.5 SHORT_DESC="Geospatial Data Abstraction Library." 10.6 MAINTAINER="erjo@slitaz.org" 10.7 +LICENSE="MIT" 10.8 WEB_SITE="http://www.gdal.org/" 10.9 WANTED="gdal" 10.10
11.1 --- a/libglu-mesa-dev/receipt Sat Nov 09 17:34:23 2013 +0000 11.2 +++ b/libglu-mesa-dev/receipt Sat Nov 09 20:47:29 2013 +0000 11.3 @@ -5,6 +5,7 @@ 11.4 CATEGORY="development" 11.5 SHORT_DESC="OpenGL utility library, development files." 11.6 MAINTAINER="pascal.bellard@slitaz.org" 11.7 +LICENSE="MIT" 11.8 WEB_SITE="http://www.mesa3d.org/" 11.9 11.10 WANTED="libglu-mesa"
12.1 --- a/libglu-mesa/receipt Sat Nov 09 17:34:23 2013 +0000 12.2 +++ b/libglu-mesa/receipt Sat Nov 09 20:47:29 2013 +0000 12.3 @@ -5,6 +5,7 @@ 12.4 CATEGORY="x-window" 12.5 SHORT_DESC="OpenGL utility library." 12.6 MAINTAINER="pascal.bellard@slitaz.org" 12.7 +LICENSE="MIT" 12.8 TARBALL="$PACKAGE-$VERSION.tar.bz2" 12.9 WEB_SITE="http://www.mesa3d.org/" 12.10 WGET_URL="git|git://anongit.freedesktop.org/mesa/glu.git"
13.1 --- a/libglw-mesa-dev/receipt Sat Nov 09 17:34:23 2013 +0000 13.2 +++ b/libglw-mesa-dev/receipt Sat Nov 09 20:47:29 2013 +0000 13.3 @@ -5,6 +5,7 @@ 13.4 CATEGORY="development" 13.5 SHORT_DESC="OpenGL widget library, development files." 13.6 MAINTAINER="pascal.bellard@slitaz.org" 13.7 +LICENSE="MIT" 13.8 WEB_SITE="http://www.mesa3d.org/" 13.9 13.10 WANTED="libglw-mesa"
14.1 --- a/libglw-mesa/receipt Sat Nov 09 17:34:23 2013 +0000 14.2 +++ b/libglw-mesa/receipt Sat Nov 09 20:47:29 2013 +0000 14.3 @@ -5,6 +5,7 @@ 14.4 CATEGORY="x-window" 14.5 SHORT_DESC="OpenGL widget library" 14.6 MAINTAINER="pascal.bellard@slitaz.org" 14.7 +LICENSE="MIT" 14.8 TARBALL="$PACKAGE-$VERSION.tar.bz2" 14.9 WEB_SITE="http://www.mesa3d.org/" 14.10 WGET_URL="git|git://anongit.freedesktop.org/mesa/glw.git"
15.1 --- a/libgooglepinyin-dev/receipt Sat Nov 09 17:34:23 2013 +0000 15.2 +++ b/libgooglepinyin-dev/receipt Sat Nov 09 20:47:29 2013 +0000 15.3 @@ -5,15 +5,17 @@ 15.4 CATEGORY="development" 15.5 SHORT_DESC="A fork from google pinyin on android" 15.6 MAINTAINER="liupeng <hipeng@yahoo.com>" 15.7 -DEPENDS="libgooglepinyin" 15.8 +LICENSE="Apache" 15.9 WEB_SITE="http://code.google.com/p/libgooglepinyin/" 15.10 WANTED="libgooglepinyin" 15.11 15.12 +DEPENDS="libgooglepinyin" 15.13 + 15.14 # Rules to gen a SliTaz package suitable for Tazpkg. 15.15 genpkg_rules() 15.16 { 15.17 mkdir -p $fs/usr/lib/pkgconfig/ 15.18 - cp -a $_pkg/usr/include/ $fs/usr/ 15.19 - cp -a $_pkg/usr/lib/pkgconfig/*.pc $fs/usr/lib/pkgconfig/ 15.20 - cp -a $_pkg/usr/share/ $fs/usr/ 15.21 + cp -a $install/usr/include/ $fs/usr/ 15.22 + cp -a $install/usr/lib/pkgconfig/*.pc $fs/usr/lib/pkgconfig/ 15.23 + cp -a $install/usr/share/ $fs/usr/ 15.24 }
16.1 --- a/libgooglepinyin/receipt Sat Nov 09 17:34:23 2013 +0000 16.2 +++ b/libgooglepinyin/receipt Sat Nov 09 20:47:29 2013 +0000 16.3 @@ -5,12 +5,14 @@ 16.4 CATEGORY="development" 16.5 SHORT_DESC="A fork from google pinyin on android" 16.6 MAINTAINER="liupeng <hipeng@yahoo.com>" 16.7 -BUILD_DEPENDS="cairo-dev pango-dev intltool cmake gtk+-dev gcc" 16.8 -DEPENDS="" 16.9 +LICENSE="Apache" 16.10 TARBALL="$PACKAGE-$VERSION.tar.bz2" 16.11 WEB_SITE="http://code.google.com/p/libgooglepinyin/" 16.12 WGET_URL="http://libgooglepinyin.googlecode.com/files/$TARBALL" 16.13 16.14 +DEPENDS="" 16.15 +BUILD_DEPENDS="cairo-dev pango-dev intltool cmake gtk+-dev gcc" 16.16 + 16.17 # Rules to configure and make the package. 16.18 compile_rules() 16.19 { 16.20 @@ -26,6 +28,6 @@ 16.21 genpkg_rules() 16.22 { 16.23 mkdir -p $fs/usr/lib/ $fs/usr/share/ 16.24 - cp -a $_pkg/usr/lib/libgooglepinyin.so* $fs/usr/lib/ 16.25 - cp -a $_pkg/usr/share/googlepinyin/ $fs/usr/share/ 16.26 + cp -a $install/usr/lib/libgooglepinyin.so* $fs/usr/lib/ 16.27 + cp -a $install/usr/share/googlepinyin/ $fs/usr/share/ 16.28 }
17.1 --- a/libgphoto2-dev/receipt Sat Nov 09 17:34:23 2013 +0000 17.2 +++ b/libgphoto2-dev/receipt Sat Nov 09 20:47:29 2013 +0000 17.3 @@ -5,18 +5,20 @@ 17.4 CATEGORY="development" 17.5 SHORT_DESC="libgphoto2 devel files" 17.6 MAINTAINER="jozee@slitaz.org" 17.7 -DEPENDS="libgphoto2 libexif-dev libusb-dev" 17.8 +LICENSE="LGPL2.1" 17.9 WANTED="libgphoto2" 17.10 WEB_SITE="http://www.gphoto.org" 17.11 17.12 +DEPENDS="libgphoto2 libexif-dev libusb-dev" 17.13 + 17.14 # Rules to gen a SliTaz package suitable for Tazpkg. 17.15 genpkg_rules() 17.16 { 17.17 mkdir -p $fs/usr/lib 17.18 - cp -a $_pkg/usr/include $fs/usr 17.19 - cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 17.20 - cp -a $_pkg/usr/lib/*.*a $fs/usr/lib/ 17.21 - cp -a $_pkg/usr/lib/libgphoto2_port $fs/usr/lib/ 17.22 + cp -a $install/usr/include $fs/usr 17.23 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 17.24 + cp -a $install/usr/lib/*.*a $fs/usr/lib/ 17.25 + cp -a $install/usr/lib/libgphoto2_port $fs/usr/lib/ 17.26 17.27 # rm *.so files 17.28 find $fs/usr/lib -name "*.so*" -exec rm -f {} \; 2> /dev/null
18.1 --- a/libgphoto2/receipt Sat Nov 09 17:34:23 2013 +0000 18.2 +++ b/libgphoto2/receipt Sat Nov 09 20:47:29 2013 +0000 18.3 @@ -5,13 +5,15 @@ 18.4 CATEGORY="graphics" 18.5 SHORT_DESC="core library of gphoto2 to access photos from digital camera" 18.6 MAINTAINER="jozee@slitaz.org" 18.7 -DEPENDS="libexif jpeg libusb libusb-compat libltdl hal" 18.8 -BUILD_DEPENDS="jpeg-dev libexif-dev libtool libexif jpeg libusb libusb-dev libusb-compat libusb-compat-dev pkg-config" 18.9 +LICENSE="LGPL2.1" 18.10 TARBALL="$PACKAGE-$VERSION.tar.bz2" 18.11 WEB_SITE="http://www.gphoto.org" 18.12 WGET_URL="$SF_MIRROR/gphoto/$TARBALL" 18.13 TAGS="camera photo" 18.14 18.15 +DEPENDS="libexif jpeg libusb libusb-compat libltdl hal" 18.16 +BUILD_DEPENDS="jpeg-dev libexif-dev libtool libexif jpeg libusb libusb-dev libusb-compat libusb-compat-dev pkg-config" 18.17 + 18.18 # Rules to configure and make the package. 18.19 compile_rules() 18.20 { 18.21 @@ -30,12 +32,12 @@ 18.22 $fs/lib \ 18.23 $fs/usr/share/hal/fdi/information/20thirdparty \ 18.24 $fs/etc/udev/rules.d 18.25 - cp -a $_pkg/usr/bin $fs/usr 18.26 - cp -a $_pkg/usr/lib/$PACKAGE $fs/usr/lib 18.27 - cp -a $_pkg/usr/lib/${PACKAGE}_port $fs/usr/lib 18.28 - cp -a $_pkg/usr/lib/*so* $fs/usr/lib 18.29 - cp -a $_pkg/usr/share/$PACKAGE $fs/usr/share 18.30 - cp -a $_pkg/lib/udev $fs/lib 18.31 + cp -a $install/usr/bin $fs/usr 18.32 + cp -a $install/usr/lib/$PACKAGE $fs/usr/lib 18.33 + cp -a $install/usr/lib/${PACKAGE}_port $fs/usr/lib 18.34 + cp -a $install/usr/lib/*so* $fs/usr/lib 18.35 + cp -a $install/usr/share/$PACKAGE $fs/usr/share 18.36 + cp -a $install/lib/udev $fs/lib 18.37 18.38 # rm all archive files 18.39 find $fs/usr/lib -name "*.*a" -exec rm -f {} \; 2> /dev/null
19.1 --- a/libgtkhtml-dev/receipt Sat Nov 09 17:34:23 2013 +0000 19.2 +++ b/libgtkhtml-dev/receipt Sat Nov 09 20:47:29 2013 +0000 19.3 @@ -6,14 +6,16 @@ 19.4 SHORT_DESC="libgtkhtml devel files." 19.5 WEB_SITE="http://freshmeat.net/projects/libgtkhtml/" 19.6 MAINTAINER="rcx@zoominternet.net" 19.7 +LICENSE="LGPL2" 19.8 +WANTED="libgtkhtml" 19.9 + 19.10 DEPENDS="libgtkhtml" 19.11 -WANTED="libgtkhtml" 19.12 19.13 # Rules to gen a SliTaz package suitable for Tazpkg. 19.14 genpkg_rules() 19.15 { 19.16 mkdir -p $fs/usr/lib 19.17 - cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 19.18 - cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 19.19 - cp -a $_pkg/usr/include $fs/usr 19.20 + cp -a $install/usr/lib/*.*a $fs/usr/lib 19.21 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 19.22 + cp -a $install/usr/include $fs/usr 19.23 }
20.1 --- a/libgtkhtml/receipt Sat Nov 09 17:34:23 2013 +0000 20.2 +++ b/libgtkhtml/receipt Sat Nov 09 20:47:29 2013 +0000 20.3 @@ -5,14 +5,16 @@ 20.4 CATEGORY="x-window" 20.5 SHORT_DESC="A gtk-based HTML rendering/editing library." 20.6 MAINTAINER="rcx@zoominternet.net" 20.7 +LICENSE="LGPL2" 20.8 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 20.9 +WEB_SITE="http://freshmeat.net/projects/libgtkhtml/" 20.10 +WGET_URL="ftp://ftp.gnome.org/pub/GNOME/sources/$PACKAGE/2.11/$TARBALL" 20.11 + 20.12 DEPENDS="glibc-base glib libgio expat libxml2 zlib \ 20.13 gtk+ cairo atk fontconfig freetype pango pixman libpng \ 20.14 xorg-libX11 xorg-libXau xorg-libXcomposite xorg-libXcursor xorg-libXcursor \ 20.15 xorg-libXdamage xorg-libXdmcp xorg-libXext xorg-libXfixes xorg-libXinerama xorg-libXrender" 20.16 BUILD_DEPENDS="pkg-config libxml2-dev gtk+-dev xorg-libXdamage-dev expat-dev" 20.17 -TARBALL="$PACKAGE-$VERSION.tar.bz2" 20.18 -WEB_SITE="http://freshmeat.net/projects/libgtkhtml/" 20.19 -WGET_URL="ftp://ftp.gnome.org/pub/GNOME/sources/$PACKAGE/2.11/$TARBALL" 20.20 20.21 # Rules to configure and make the package. 20.22 compile_rules() 20.23 @@ -31,5 +33,5 @@ 20.24 genpkg_rules() 20.25 { 20.26 mkdir -p $fs/usr/lib 20.27 - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 20.28 + cp -a $install/usr/lib/*.so* $fs/usr/lib 20.29 }
21.1 --- a/libgtkimageview-dev/receipt Sat Nov 09 17:34:23 2013 +0000 21.2 +++ b/libgtkimageview-dev/receipt Sat Nov 09 20:47:29 2013 +0000 21.3 @@ -6,6 +6,7 @@ 21.4 SHORT_DESC="Simple image viewer widget for GTK devel files." 21.5 SOURCE="gtkimageview" 21.6 MAINTAINER="gokhlayeh@slitaz.org" 21.7 +LICENSE="LGPL2.1" 21.8 WANTED="libgtkimageview" 21.9 WEB_SITE="http://trac.bjourne.webfactional.com/" 21.10 21.11 @@ -13,8 +14,8 @@ 21.12 genpkg_rules() 21.13 { 21.14 mkdir -p $fs/usr 21.15 - cp -a $_pkg/usr/include $fs/usr 21.16 - cp -a $_pkg/usr/lib $fs/usr 21.17 + cp -a $install/usr/include $fs/usr 21.18 + cp -a $install/usr/lib $fs/usr 21.19 # Remove libraries files 21.20 cd $fs/usr/lib 21.21 rm -r *.so*
22.1 --- a/libgtkimageview/receipt Sat Nov 09 17:34:23 2013 +0000 22.2 +++ b/libgtkimageview/receipt Sat Nov 09 20:47:29 2013 +0000 22.3 @@ -5,13 +5,15 @@ 22.4 CATEGORY="system-tools" 22.5 SHORT_DESC="Simple image viewer widget for GTK." 22.6 MAINTAINER="gokhlayeh@slitaz.org" 22.7 -DEPENDS="gtk+" 22.8 -BUILD_DEPENDS="gtk+-dev expat-dev" 22.9 +LICENSE="LGPL2.1" 22.10 SOURCE="gtkimageview" 22.11 TARBALL="$SOURCE-$VERSION.tar.gz" 22.12 WEB_SITE="http://trac.bjourne.webfactional.com/" 22.13 WGET_URL="http://trac.bjourne.webfactional.com/attachment/wiki/WikiStart/$TARBALL?format=raw" 22.14 22.15 +DEPENDS="gtk+" 22.16 +BUILD_DEPENDS="gtk+-dev expat-dev" 22.17 + 22.18 # Rules to configure and make the package. 22.19 compile_rules() 22.20 { 22.21 @@ -21,14 +23,14 @@ 22.22 --infodir=/usr/share/info \ 22.23 --mandir=/usr/share/man \ 22.24 $CONFIGURE_ARGS && 22.25 - make && make DESTDIR=$PWD/_pkg install 22.26 + make && make DESTDIR=$DESTDIR install 22.27 } 22.28 22.29 # Rules to gen a SliTaz package suitable for Tazpkg. 22.30 genpkg_rules() 22.31 { 22.32 mkdir -p $fs/usr 22.33 - cp -a $_pkg/usr/lib $fs/usr 22.34 + cp -a $install/usr/lib $fs/usr 22.35 # Remove devel files 22.36 cd $fs/usr/lib 22.37 rm -r libgtkimageview.a libgtkimageview.la pkgconfig/
23.1 --- a/libhtp-dev/receipt Sat Nov 09 17:34:23 2013 +0000 23.2 +++ b/libhtp-dev/receipt Sat Nov 09 20:47:29 2013 +0000 23.3 @@ -5,6 +5,7 @@ 23.4 CATEGORY="development" 23.5 SHORT_DESC="SLibhtp dev files." 23.6 MAINTAINER="erjo@slitaz.org" 23.7 +LICENSE="GPL2" 23.8 WEB_SITE="http://www.openinfosecfoundation.org" 23.9 WANTED="libhtp" 23.10
24.1 --- a/libhtp/receipt Sat Nov 09 17:34:23 2013 +0000 24.2 +++ b/libhtp/receipt Sat Nov 09 20:47:29 2013 +0000 24.3 @@ -5,6 +5,7 @@ 24.4 CATEGORY="system-tools" 24.5 SHORT_DESC="Security-aware parser for the HTTP protocol." 24.6 MAINTAINER="erjo@slitaz.org" 24.7 +LICENSE="GPL2" 24.8 WEB_SITE="http://www.openinfosecfoundation.org" 24.9 TARBALL="$PACKAGE-$VERSION.tar.gz" 24.10 WGET_URL="http://www.openinfosecfoundation.org/download/$TARBALL"
25.1 --- a/libical-dev/receipt Sat Nov 09 17:34:23 2013 +0000 25.2 +++ b/libical-dev/receipt Sat Nov 09 20:47:29 2013 +0000 25.3 @@ -5,16 +5,18 @@ 25.4 CATEGORY="development" 25.5 SHORT_DESC="Opensource ICalendar dev files" 25.6 MAINTAINER="erjo@slitaz.org" 25.7 -DEPENDS="libical" 25.8 +LICENSE="MPL LGPL" 25.9 WEB_SITE="http://www.citadel.org/doku.php/documentation:featured_projects:libical?do=export_xhtml" 25.10 WANTED="libical" 25.11 25.12 +DEPENDS="libical" 25.13 + 25.14 # Rules to gen a SliTaz package suitable for Tazpkg. 25.15 genpkg_rules() 25.16 { 25.17 mkdir -p $fs/usr/lib 25.18 - cp -a $_pkg/usr/include $fs/usr 25.19 - cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 25.20 - cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 25.21 + cp -a $install/usr/include $fs/usr 25.22 + cp -a $install/usr/lib/*.*a $fs/usr/lib 25.23 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 25.24 sed -i 's|/include$|/include/libical|' $fs/usr/lib/pkgconfig/libical.pc 25.25 }
26.1 --- a/libical/receipt Sat Nov 09 17:34:23 2013 +0000 26.2 +++ b/libical/receipt Sat Nov 09 20:47:29 2013 +0000 26.3 @@ -5,11 +5,13 @@ 26.4 CATEGORY="system-tools" 26.5 SHORT_DESC="Opensource ICalendar implementation" 26.6 MAINTAINER="erjo@slitaz.org" 26.7 -DEPENDS="" 26.8 +LICENSE="MPL LGPL" 26.9 TARBALL="$PACKAGE-$VERSION.tar.gz" 26.10 WEB_SITE="http://sourceforge.net/projects/freeassociation/" 26.11 WGET_URL="http://downloads.sourceforge.net/project/freeassociation/$PACKAGE/$PACKAGE-$VERSION/$TARBALL" 26.12 26.13 +DEPENDS="" 26.14 + 26.15 # Rules to configure and make the package. 26.16 compile_rules() 26.17 { 26.18 @@ -19,13 +21,13 @@ 26.19 --infodir=/usr/share/info \ 26.20 --mandir=/usr/share/man \ 26.21 $CONFIGURE_ARGS && 26.22 - make && make DESTDIR=$PWD/_pkg install 26.23 + make && make DESTDIR=$DESTDIR install 26.24 } 26.25 26.26 # Rules to gen a SliTaz package suitable for Tazpkg. 26.27 genpkg_rules() 26.28 { 26.29 mkdir -p $fs/usr/lib 26.30 - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 26.31 + cp -a $install/usr/lib/*.so* $fs/usr/lib 26.32 } 26.33
27.1 --- a/libid3tag-dev/receipt Sat Nov 09 17:34:23 2013 +0000 27.2 +++ b/libid3tag-dev/receipt Sat Nov 09 20:47:29 2013 +0000 27.3 @@ -5,16 +5,18 @@ 27.4 CATEGORY="development" 27.5 SHORT_DESC="ID3 tag manipulation library devel files." 27.6 MAINTAINER="paul@slitaz.org" 27.7 -DEPENDS="libid3tag" 27.8 +LICENSE="GPL2" 27.9 WANTED="libid3tag" 27.10 WEB_SITE="http://www.underbit.com/products/mad" 27.11 27.12 +DEPENDS="libid3tag" 27.13 + 27.14 # Rules to gen a SliTaz package suitable for Tazpkg. 27.15 genpkg_rules() 27.16 { 27.17 mkdir -p $fs/usr/lib/pkgconfig 27.18 - cp -a $_pkg/usr/include $fs/usr 27.19 - cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 27.20 + cp -a $install/usr/include $fs/usr 27.21 + cp -a $install/usr/lib/*.*a $fs/usr/lib 27.22 27.23 # libid3tag.pc 27.24 cat > $fs/usr/lib/pkgconfig/id3tag.pc << _EOT_
28.1 --- a/libid3tag/receipt Sat Nov 09 17:34:23 2013 +0000 28.2 +++ b/libid3tag/receipt Sat Nov 09 20:47:29 2013 +0000 28.3 @@ -5,25 +5,27 @@ 28.4 CATEGORY="multimedia" 28.5 SHORT_DESC="ID3 tag manipulation library." 28.6 MAINTAINER="paul@slitaz.org" 28.7 -DEPENDS="zlib" 28.8 -BUILD_DEPENDS="zlib-dev" 28.9 +LICENSE="GPL2" 28.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 28.11 WEB_SITE="http://www.underbit.com/products/mad/" 28.12 WGET_URL="http://downloads.sourceforge.net/mad/$TARBALL" 28.13 28.14 +DEPENDS="zlib" 28.15 +BUILD_DEPENDS="zlib-dev" 28.16 + 28.17 # Rules to configure and make the package. 28.18 compile_rules() 28.19 { 28.20 cd $src 28.21 ./configure --prefix=/usr $CONFIGURE_ARGS 28.22 make 28.23 - make DESTDIR=$PWD/_pkg install 28.24 + make DESTDIR=$DESTDIR install 28.25 } 28.26 28.27 # Rules to gen a SliTaz package suitable for Tazpkg. 28.28 genpkg_rules() 28.29 { 28.30 mkdir -p $fs/usr/lib 28.31 - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 28.32 + cp -a $install/usr/lib/*.so* $fs/usr/lib 28.33 } 28.34
29.1 --- a/libidn-dev/receipt Sat Nov 09 17:34:23 2013 +0000 29.2 +++ b/libidn-dev/receipt Sat Nov 09 20:47:29 2013 +0000 29.3 @@ -5,6 +5,7 @@ 29.4 CATEGORY="development" 29.5 SHORT_DESC="Encode and decode internationalized domain names, dev files." 29.6 MAINTAINER="pascal.bellard@slitaz.org" 29.7 +LICENSE="GPL3 LGPL2.1" 29.8 WEB_SITE="http://www.gnu.org/software/libidn/" 29.9 DEPENDS="libidn" 29.10 WANTED="libidn" 29.11 @@ -13,8 +14,8 @@ 29.12 genpkg_rules() 29.13 { 29.14 mkdir -p $fs/usr/lib 29.15 - cp -a $_pkg/usr/include $fs/usr 29.16 - cp -a $_pkg/usr/lib/*a $fs/usr/lib 29.17 - cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 29.18 + cp -a $install/usr/include $fs/usr 29.19 + cp -a $install/usr/lib/*a $fs/usr/lib 29.20 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 29.21 } 29.22
30.1 --- a/libiec61883-dev/receipt Sat Nov 09 17:34:23 2013 +0000 30.2 +++ b/libiec61883-dev/receipt Sat Nov 09 20:47:29 2013 +0000 30.3 @@ -5,6 +5,7 @@ 30.4 CATEGORY="development" 30.5 SHORT_DESC="libiec61883 is a standard defining a high speed serial bus." 30.6 MAINTAINER="pankso@slitaz.org" 30.7 +LICENSE="LGPL2.1" 30.8 WANTED="libiec61883" 30.9 WEB_SITE="http://www.linux1394.org/" 30.10 30.11 @@ -12,8 +13,8 @@ 30.12 genpkg_rules() 30.13 { 30.14 mkdir -p $fs/usr/lib $fs/dev 30.15 - cp -a $_pkg/usr/include $fs/usr 30.16 - cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 30.17 - cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 30.18 + cp -a $install/usr/include $fs/usr 30.19 + cp -a $install/usr/lib/*.*a $fs/usr/lib 30.20 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 30.21 } 30.22
31.1 --- a/libiec61883/receipt Sat Nov 09 17:34:23 2013 +0000 31.2 +++ b/libiec61883/receipt Sat Nov 09 20:47:29 2013 +0000 31.3 @@ -5,14 +5,16 @@ 31.4 CATEGORY="system-tools" 31.5 SHORT_DESC="libiec61883 is a standard defining a high speed serial bus." 31.6 MAINTAINER="pankso@slitaz.org" 31.7 -DEPENDS="libraw1394" 31.8 -BUILD_DEPENDS="libraw1394 libraw1394-dev" 31.9 +LICENSE="LGPL2.1" 31.10 #TARBALL="$PACKAGE-$VERSION.tar.gz" 31.11 TARBALL="${PACKAGE}_$VERSION.orig.tar.gz" 31.12 WEB_SITE="http://www.linux1394.org/" 31.13 #WGET_URL="http://www.linux1394.org/dl/$TARBALL" 31.14 WGET_URL="http://ftp.debian.org/pool/main/libi/$PACKAGE/$TARBALL" 31.15 31.16 +DEPENDS="libraw1394" 31.17 +BUILD_DEPENDS="libraw1394 libraw1394-dev" 31.18 + 31.19 # Rules to configure and make the package. 31.20 compile_rules() 31.21 { 31.22 @@ -22,14 +24,14 @@ 31.23 --mandir=/usr/share/man \ 31.24 $CONFIGURE_ARGS && 31.25 make && 31.26 - make DESTDIR=$PWD/_pkg install 31.27 + make DESTDIR=$DESTDIR install 31.28 } 31.29 31.30 # Rules to gen a SliTaz package suitable for Tazpkg. 31.31 genpkg_rules() 31.32 { 31.33 mkdir -p $fs/usr/lib $fs/dev 31.34 - cp -a $_pkg/usr/bin $fs/usr 31.35 - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 31.36 + cp -a $install/usr/bin $fs/usr 31.37 + cp -a $install/usr/lib/*.so* $fs/usr/lib 31.38 } 31.39
32.1 --- a/libisofs-dev/receipt Sat Nov 09 17:34:23 2013 +0000 32.2 +++ b/libisofs-dev/receipt Sat Nov 09 20:47:29 2013 +0000 32.3 @@ -5,16 +5,18 @@ 32.4 CATEGORY="development" 32.5 SHORT_DESC="libburnia is a project for reading, mastering and writing optical discs." 32.6 MAINTAINER="devl547@gmail.com" 32.7 -DEPENDS="libisofs" 32.8 +LICENSE="GPL2" 32.9 WEB_SITE="http://libburnia-project.org/" 32.10 WANTED="libisofs" 32.11 32.12 +DEPENDS="libisofs" 32.13 + 32.14 # Rules to gen a SliTaz package suitable for Tazpkg. 32.15 genpkg_rules() 32.16 { 32.17 mkdir -p $fs/usr/lib 32.18 - cp -a $_pkg/usr/lib/*a $fs/usr/lib 32.19 - cp -a $_pkg/usr/include $fs/usr 32.20 - cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 32.21 + cp -a $install/usr/lib/*a $fs/usr/lib 32.22 + cp -a $install/usr/include $fs/usr 32.23 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 32.24 } 32.25
33.1 --- a/libisofs/receipt Sat Nov 09 17:34:23 2013 +0000 33.2 +++ b/libisofs/receipt Sat Nov 09 20:47:29 2013 +0000 33.3 @@ -5,6 +5,7 @@ 33.4 CATEGORY="utilities" 33.5 SHORT_DESC="libburnia is a project for reading, mastering and writing optical discs." 33.6 MAINTAINER="devl547@gmail.com" 33.7 +LICENSE="GPL2" 33.8 TARBALL="$PACKAGE-$VERSION.tar.gz" 33.9 WEB_SITE="http://libburnia-project.org/" 33.10 WGET_URL="http://files.libburnia-project.org/releases/$TARBALL" 33.11 @@ -21,5 +22,5 @@ 33.12 genpkg_rules() 33.13 { 33.14 mkdir -p $fs/usr/lib 33.15 - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 33.16 + cp -a $install/usr/lib/*.so* $fs/usr/lib 33.17 }
34.1 --- a/libkrb5/receipt Sat Nov 09 17:34:23 2013 +0000 34.2 +++ b/libkrb5/receipt Sat Nov 09 20:47:29 2013 +0000 34.3 @@ -5,9 +5,11 @@ 34.4 CATEGORY="security" 34.5 SHORT_DESC="Kerberos network authentication protocol libraries." 34.6 MAINTAINER="pascal.bellard@slitaz.org" 34.7 +LICENSE="MIT" 34.8 WEB_SITE="http://web.mit.edu/Kerberos/" 34.9 +WANTED="krb5" 34.10 + 34.11 DEPENDS="libkrb5support libcomerr3" 34.12 -WANTED="krb5" 34.13 34.14 # Rules to gen a SliTaz package suitable for Tazpkg. 34.15 genpkg_rules()
35.1 --- a/libkrb5support/receipt Sat Nov 09 17:34:23 2013 +0000 35.2 +++ b/libkrb5support/receipt Sat Nov 09 20:47:29 2013 +0000 35.3 @@ -5,6 +5,7 @@ 35.4 CATEGORY="security" 35.5 SHORT_DESC="Kerberos network authentication protocol support libraries." 35.6 MAINTAINER="pascal.bellard@slitaz.org" 35.7 +LICENSE="MIT" 35.8 WEB_SITE="http://web.mit.edu/Kerberos/" 35.9 WANTED="krb5" 35.10
36.1 --- a/libksba-dev/receipt Sat Nov 09 17:34:23 2013 +0000 36.2 +++ b/libksba-dev/receipt Sat Nov 09 20:47:29 2013 +0000 36.3 @@ -5,6 +5,7 @@ 36.4 CATEGORY="security" 36.5 SHORT_DESC="The libksba devel files." 36.6 MAINTAINER="pankso@slitaz.org" 36.7 +LICENSE="GPL3" 36.8 WANTED="libksba" 36.9 WEB_SITE="http://www.gnupg.org/related_software/libksba/" 36.10 36.11 @@ -12,9 +13,9 @@ 36.12 genpkg_rules() 36.13 { 36.14 mkdir -p $fs/usr/lib $fs/usr/share 36.15 - cp -a $_pkg/usr/bin $fs/usr 36.16 - cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 36.17 - cp -a $_pkg/usr/include $fs/usr 36.18 - cp -a $_pkg/usr/share/aclocal $fs/usr/share 36.19 + cp -a $install/usr/bin $fs/usr 36.20 + cp -a $install/usr/lib/*.*a $fs/usr/lib 36.21 + cp -a $install/usr/include $fs/usr 36.22 + cp -a $install/usr/share/aclocal $fs/usr/share 36.23 chmod +x $fs/usr/bin/* 36.24 }
37.1 --- a/libksba/receipt Sat Nov 09 17:34:23 2013 +0000 37.2 +++ b/libksba/receipt Sat Nov 09 20:47:29 2013 +0000 37.3 @@ -5,6 +5,7 @@ 37.4 CATEGORY="security" 37.5 SHORT_DESC="Library to work with X.509 certificates, CMS data and related objects." 37.6 MAINTAINER="pankso@slitaz.org" 37.7 +LICENSE="GPL3" 37.8 TARBALL="$PACKAGE-$VERSION.tar.bz2" 37.9 WEB_SITE="http://www.gnupg.org/related_software/libksba/" 37.10 WGET_URL="ftp://ftp.gnupg.org/gcrypt/$PACKAGE/$TARBALL" 37.11 @@ -26,5 +27,5 @@ 37.12 genpkg_rules() 37.13 { 37.14 mkdir -p $fs/usr/lib 37.15 - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 37.16 + cp -a $install/usr/lib/*.so* $fs/usr/lib 37.17 }
38.1 --- a/libldap/receipt Sat Nov 09 17:34:23 2013 +0000 38.2 +++ b/libldap/receipt Sat Nov 09 20:47:29 2013 +0000 38.3 @@ -5,13 +5,15 @@ 38.4 CATEGORY="misc" 38.5 SHORT_DESC="LDAP database libraries." 38.6 MAINTAINER="pascal.bellard@slitaz.org" 38.7 +LICENSE="BSD" 38.8 WEB_SITE="http://www.openldap.org/" 38.9 +WANTED="openldap" 38.10 + 38.11 DEPENDS="libssl libkrb5 libcomerr3 libsasl-without-ldap" 38.12 -WANTED="openldap" 38.13 38.14 # Rules to gen a SliTaz package suitable for Tazpkg. 38.15 genpkg_rules() 38.16 { 38.17 mkdir -p $fs/usr/lib 38.18 - cp -a $_pkg/usr/lib/*so* $fs/usr/lib 38.19 + cp -a $install/usr/lib/*so* $fs/usr/lib 38.20 }
39.1 --- a/liblinebreak-dev/receipt Sat Nov 09 17:34:23 2013 +0000 39.2 +++ b/liblinebreak-dev/receipt Sat Nov 09 20:47:29 2013 +0000 39.3 @@ -5,6 +5,7 @@ 39.4 CATEGORY="development" 39.5 SHORT_DESC="Line breaking library" 39.6 MAINTAINER="devl547@gmail.com" 39.7 +LICENSE="zlib/libpng" 39.8 WEB_SITE="http://vimgadgets.sourceforge.net/liblinebreak/" 39.9 WANTED="liblinebreak" 39.10 39.11 @@ -12,7 +13,7 @@ 39.12 genpkg_rules() 39.13 { 39.14 mkdir -p $fs/usr/lib 39.15 - cp -a $_pkg/usr/lib/*a $fs/usr/lib 39.16 - cp -a $_pkg/usr/include $fs/usr 39.17 + cp -a $install/usr/lib/*a $fs/usr/lib 39.18 + cp -a $install/usr/include $fs/usr 39.19 } 39.20
40.1 --- a/liblinebreak/receipt Sat Nov 09 17:34:23 2013 +0000 40.2 +++ b/liblinebreak/receipt Sat Nov 09 20:47:29 2013 +0000 40.3 @@ -5,6 +5,7 @@ 40.4 CATEGORY="development" 40.5 SHORT_DESC="Line breaking library" 40.6 MAINTAINER="devl547@gmail.com" 40.7 +LICENSE="zlib/libpng" 40.8 TARBALL="$PACKAGE-$VERSION.tar.gz" 40.9 WEB_SITE="http://vimgadgets.sourceforge.net/liblinebreak/" 40.10 WGET_URL="http://downloads.sourceforge.net/project/vimgadgets/$PACKAGE/$VERSION/$TARBALL" 40.11 @@ -15,13 +16,13 @@ 40.12 cd $src 40.13 ./configure --prefix=/usr $CONFIGURE_ARGS && 40.14 make && 40.15 - make DESTDIR=$PWD/_pkg install 40.16 + make DESTDIR=$DESTDIR install 40.17 } 40.18 40.19 # Rules to gen a SliTaz package suitable for Tazpkg. 40.20 genpkg_rules() 40.21 { 40.22 mkdir -p $fs/usr/lib 40.23 - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 40.24 + cp -a $install/usr/lib/*.so* $fs/usr/lib 40.25 } 40.26
41.1 --- a/liblo-dev/receipt Sat Nov 09 17:34:23 2013 +0000 41.2 +++ b/liblo-dev/receipt Sat Nov 09 20:47:29 2013 +0000 41.3 @@ -4,16 +4,16 @@ 41.4 VERSION="0.26" 41.5 CATEGORY="development" 41.6 MAINTAINER="jozee@slitaz.org" 41.7 +LICENSE="LGPL2.1" 41.8 SHORT_DESC="liblo devel files" 41.9 WEB_SITE="http://librdf.org/raptor" 41.10 WANTED="liblo" 41.11 41.12 - 41.13 # Rules to gen a SliTaz package suitable for Tazpkg. 41.14 genpkg_rules() 41.15 { 41.16 mkdir -p $fs/usr/lib 41.17 - cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 41.18 - cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 41.19 - cp -a $_pkg/usr/include $fs/usr 41.20 + cp -a $install/usr/lib/*.*a $fs/usr/lib 41.21 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 41.22 + cp -a $install/usr/include $fs/usr 41.23 }
42.1 --- a/liblo/receipt Sat Nov 09 17:34:23 2013 +0000 42.2 +++ b/liblo/receipt Sat Nov 09 20:47:29 2013 +0000 42.3 @@ -4,27 +4,28 @@ 42.4 VERSION="0.26" 42.5 CATEGORY="multimedia" 42.6 MAINTAINER="jozee@slitaz.org" 42.7 +LICENSE="LGPL2.1" 42.8 SHORT_DESC="Lightweight OSC implementation: an implementation of the Open Sound Control protocol for POSIX systems" 42.9 -BUILD_DEPENDS="" 42.10 WEB_SITE="http://plugin.org.uk/liblo/" 42.11 TARBALL="$PACKAGE-$VERSION.tar.gz" 42.12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 42.13 42.14 +BUILD_DEPENDS="" 42.15 42.16 # Rules to configure and make the package. 42.17 42.18 -compile_rules() { 42.19 - cd $src 42.20 - ./configure --prefix=/usr $CONFIGURE_ARGS && 42.21 - make && 42.22 - make DESTDIR=$PWD/_pkg install 42.23 +compile_rules() 42.24 +{ 42.25 + cd $src 42.26 + ./configure --prefix=/usr $CONFIGURE_ARGS && 42.27 + make && 42.28 + make DESTDIR=$DESTDIR install 42.29 } 42.30 42.31 # Rules to gen a SliTaz package suitable for Tazpkg. 42.32 genpkg_rules() 42.33 { 42.34 mkdir -p $fs/usr/lib 42.35 - cp -a $_pkg/usr/bin $fs/usr 42.36 - cp -a $_pkg/usr/lib/*so* $fs/usr/lib/ 42.37 - 42.38 + cp -a $install/usr/bin $fs/usr 42.39 + cp -a $install/usr/lib/*so* $fs/usr/lib/ 42.40 }
43.1 --- a/libmad-dev/receipt Sat Nov 09 17:34:23 2013 +0000 43.2 +++ b/libmad-dev/receipt Sat Nov 09 20:47:29 2013 +0000 43.3 @@ -5,16 +5,18 @@ 43.4 CATEGORY="development" 43.5 SHORT_DESC="MAD is a high-quality MPEG audio decoder devel files." 43.6 MAINTAINER="pankso@slitaz.org" 43.7 -DEPENDS="libmad" 43.8 +LICENSE="GPL2" 43.9 WANTED="libmad" 43.10 WEB_SITE="http://www.underbit.com/products/mad/" 43.11 43.12 +DEPENDS="libmad" 43.13 + 43.14 # Rules to gen a SliTaz package suitable for Tazpkg. 43.15 genpkg_rules() 43.16 { 43.17 mkdir -p $fs/usr/lib 43.18 - cp -a $_pkg/usr/include $fs/usr 43.19 - cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 43.20 + cp -a $install/usr/include $fs/usr 43.21 + cp -a $install/usr/lib/*.*a $fs/usr/lib 43.22 43.23 # mad.pc patch 43.24 mkdir -p $fs/usr/lib/pkgconfig
44.1 --- a/libmad/receipt Sat Nov 09 17:34:23 2013 +0000 44.2 +++ b/libmad/receipt Sat Nov 09 20:47:29 2013 +0000 44.3 @@ -5,6 +5,7 @@ 44.4 CATEGORY="multimedia" 44.5 SHORT_DESC="MAD is a high-quality MPEG audio decoder." 44.6 MAINTAINER="pankso@slitaz.org" 44.7 +LICENSE="GPL2" 44.8 TARBALL="$PACKAGE-$VERSION.tar.gz" 44.9 WEB_SITE="http://www.underbit.com/products/mad/" 44.10 WGET_URL="$SF_MIRROR/mad/$TARBALL" 44.11 @@ -16,13 +17,13 @@ 44.12 sed -i '/-fforce-mem/d' ./configure 44.13 ./configure --prefix=/usr $CONFIGURE_ARGS 44.14 make 44.15 - make DESTDIR=$PWD/_pkg install 44.16 + make DESTDIR=$DESTDIR install 44.17 } 44.18 44.19 # Rules to gen a SliTaz package suitable for Tazpkg. 44.20 genpkg_rules() 44.21 { 44.22 mkdir -p $fs/usr/lib 44.23 - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 44.24 + cp -a $install/usr/lib/*.so* $fs/usr/lib 44.25 } 44.26
45.1 --- a/libmagic-dev/receipt Sat Nov 09 17:34:23 2013 +0000 45.2 +++ b/libmagic-dev/receipt Sat Nov 09 20:47:29 2013 +0000 45.3 @@ -5,11 +5,13 @@ 45.4 CATEGORY="development" 45.5 SHORT_DESC="Library for File utility dev files" 45.6 MAINTAINER="erjo@slitaz.org" 45.7 -DEPENDS="libmagic" 45.8 +LICENSE="BSD" 45.9 WEB_SITE="http://www.darwinsys.com/file/" 45.10 WANTED="file" 45.11 HOST_ARCH="i486 arm" 45.12 45.13 +DEPENDS="libmagic" 45.14 + 45.15 # Rules to gen a SliTaz package suitable for Tazpkg. 45.16 genpkg_rules() 45.17 {
46.1 --- a/libmagic/receipt Sat Nov 09 17:34:23 2013 +0000 46.2 +++ b/libmagic/receipt Sat Nov 09 20:47:29 2013 +0000 46.3 @@ -5,6 +5,7 @@ 46.4 CATEGORY="system-tools" 46.5 SHORT_DESC="Library for File utility" 46.6 MAINTAINER="erjo@slitaz.org" 46.7 +LICENSE="BSD" 46.8 WEB_SITE="http://www.darwinsys.com/file/" 46.9 WANTED="file" 46.10 HOST_ARCH="i486 arm"
47.1 --- a/libmcrypt-dev/receipt Sat Nov 09 17:34:23 2013 +0000 47.2 +++ b/libmcrypt-dev/receipt Sat Nov 09 20:47:29 2013 +0000 47.3 @@ -5,18 +5,19 @@ 47.4 CATEGORY="development" 47.5 SHORT_DESC="Encryption Library dev files" 47.6 MAINTAINER="erjo@slitaz.org" 47.7 -DEPENDS="libmcrypt" 47.8 +LICENSE="LGPL2.1" 47.9 WEB_SITE="http://mcrypt.sourceforge.net/" 47.10 WANTED="libmcrypt" 47.11 47.12 +DEPENDS="libmcrypt" 47.13 + 47.14 # Rules to gen a SliTaz package suitable for Tazpkg. 47.15 genpkg_rules() 47.16 { 47.17 mkdir -p $fs/usr/lib $fs/usr/share 47.18 - 47.19 - cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 47.20 - cp -a $_pkg/usr/share/aclocal $fs/usr/share 47.21 - cp -a $_pkg/usr/include $fs/usr 47.22 - cp -a $_pkg/usr/bin $fs/usr 47.23 + cp -a $install/usr/lib/*.*a $fs/usr/lib 47.24 + cp -a $install/usr/share/aclocal $fs/usr/share 47.25 + cp -a $install/usr/include $fs/usr 47.26 + cp -a $install/usr/bin $fs/usr 47.27 } 47.28
48.1 --- a/libmcrypt/receipt Sat Nov 09 17:34:23 2013 +0000 48.2 +++ b/libmcrypt/receipt Sat Nov 09 20:47:29 2013 +0000 48.3 @@ -5,11 +5,13 @@ 48.4 CATEGORY="security" 48.5 SHORT_DESC="Encryption Library" 48.6 MAINTAINER="erjo@slitaz.org" 48.7 -DEPENDS="" 48.8 +LICENSE="LGPL2.1" 48.9 TARBALL="$PACKAGE-$VERSION.tar.gz" 48.10 WEB_SITE="http://mcrypt.sourceforge.net/" 48.11 WGET_URL="http://downloads.sourceforge.net/project/mcrypt/Libmcrypt/2.5.8/libmcrypt-2.5.8.tar.gz" 48.12 48.13 +DEPENDS="" 48.14 + 48.15 # Rules to configure and make the package. 48.16 compile_rules() 48.17 { 48.18 @@ -19,14 +21,14 @@ 48.19 --infodir=/usr/share/info \ 48.20 --mandir=/usr/share/man \ 48.21 $CONFIGURE_ARGS && 48.22 - make && make DESTDIR=$PWD/_pkg install 48.23 + make && make DESTDIR=$DESTDIR install 48.24 } 48.25 48.26 # Rules to gen a SliTaz package suitable for Tazpkg. 48.27 genpkg_rules() 48.28 { 48.29 mkdir -p $fs/usr/lib 48.30 - cp -a $_pkg/usr/lib/libmcrypt $fs/usr/lib 48.31 - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 48.32 + cp -a $install/usr/lib/libmcrypt $fs/usr/lib 48.33 + cp -a $install/usr/lib/*.so* $fs/usr/lib 48.34 } 48.35
49.1 --- a/libmcs-dev/receipt Sat Nov 09 17:34:23 2013 +0000 49.2 +++ b/libmcs-dev/receipt Sat Nov 09 20:47:29 2013 +0000 49.3 @@ -4,6 +4,7 @@ 49.4 VERSION="0.7.2" 49.5 WEB_SITE="http://www.atheme.org/libmcs/" 49.6 MAINTAINER="mimas@slitaz.org" 49.7 +LICENSE="BSD" 49.8 CATEGORY="development" 49.9 WANTED="libmcs" 49.10 SHORT_DESC="Library for configuration storage" 49.11 @@ -14,7 +15,7 @@ 49.12 genpkg_rules() 49.13 { 49.14 mkdir -p $fs/usr/lib 49.15 - cp -a $_pkg/usr/include $fs/usr/ 49.16 - cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 49.17 + cp -a $install/usr/include $fs/usr/ 49.18 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 49.19 } 49.20
50.1 --- a/libmcs/receipt Sat Nov 09 17:34:23 2013 +0000 50.2 +++ b/libmcs/receipt Sat Nov 09 20:47:29 2013 +0000 50.3 @@ -5,9 +5,11 @@ 50.4 CATEGORY="system-tools" 50.5 SHORT_DESC="Library for configuration storage" 50.6 MAINTAINER="mimas@slitaz.org" 50.7 +LICENSE="BSD" 50.8 TARBALL="$PACKAGE-$VERSION.tgz" 50.9 WEB_SITE="http://www.atheme.org/libmcs/" 50.10 WGET_URL="http://distfiles.atheme.org/$TARBALL" 50.11 + 50.12 DEPENDS="libmowgli" 50.13 BUILD_DEPENDS="libmowgli-dev" 50.14 50.15 @@ -25,8 +27,8 @@ 50.16 genpkg_rules() 50.17 { 50.18 mkdir -p $fs/usr/lib 50.19 - cp -a $_pkg/usr/bin $fs/usr 50.20 - cp -a $_pkg/usr/lib/libmcs.so* $fs/usr/lib/ 50.21 - cp -a $_pkg/usr/lib/mcs $fs/usr/lib/ 50.22 + cp -a $install/usr/bin $fs/usr 50.23 + cp -a $install/usr/lib/libmcs.so* $fs/usr/lib/ 50.24 + cp -a $install/usr/lib/mcs $fs/usr/lib/ 50.25 } 50.26
51.1 --- a/libmikmod-dev/receipt Sat Nov 09 17:34:23 2013 +0000 51.2 +++ b/libmikmod-dev/receipt Sat Nov 09 20:47:29 2013 +0000 51.3 @@ -4,6 +4,7 @@ 51.4 VERSION="3.2.0" 51.5 CATEGORY="development" 51.6 SHORT_DESC="Libmikmod devel files and headers." 51.7 +LICENSE="LGPL2 LGPL2.1" 51.8 MAINTAINER="paul@slitaz.org" 51.9 WANTED="libmikmod" 51.10 WEB_SITE="http://mikmod.shlomifish.org/"
52.1 --- a/libmikmod/receipt Sat Nov 09 17:34:23 2013 +0000 52.2 +++ b/libmikmod/receipt Sat Nov 09 20:47:29 2013 +0000 52.3 @@ -5,6 +5,7 @@ 52.4 CATEGORY="development" 52.5 SHORT_DESC="Mikmod module player library." 52.6 MAINTAINER="paul@slitaz.org" 52.7 +LICENSE="LGPL2 LGPL2.1" 52.8 TARBALL="$PACKAGE-$VERSION.tar.gz" 52.9 WEB_SITE="http://mikmod.shlomifish.org/" 52.10 WGET_URL="http://mikmod.shlomifish.org/files/$TARBALL"
53.1 --- a/libmms-dev/receipt Sat Nov 09 17:34:23 2013 +0000 53.2 +++ b/libmms-dev/receipt Sat Nov 09 20:47:29 2013 +0000 53.3 @@ -5,16 +5,18 @@ 53.4 CATEGORY="development" 53.5 SHORT_DESC="LibMMS is a common library for parsing mms and mmsh streams devel files." 53.6 MAINTAINER="slitaz@kacper.se" 53.7 -DEPENDS="libmms" 53.8 +LICENSE="LGPL2.1" 53.9 WEB_SITE="http://launchpad.net/libmms" 53.10 WANTED="libmms" 53.11 53.12 +DEPENDS="libmms" 53.13 + 53.14 # Rules to gen a SliTaz package suitable for Tazpkg. 53.15 genpkg_rules() 53.16 { 53.17 mkdir -p $fs/usr/lib 53.18 - cp -a $_pkg/usr/include $fs/usr 53.19 - cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 53.20 - cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 53.21 + cp -a $install/usr/include $fs/usr 53.22 + cp -a $install/usr/lib/*.*a $fs/usr/lib 53.23 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 53.24 } 53.25
54.1 --- a/libmms/receipt Sat Nov 09 17:34:23 2013 +0000 54.2 +++ b/libmms/receipt Sat Nov 09 20:47:29 2013 +0000 54.3 @@ -5,12 +5,14 @@ 54.4 CATEGORY="development" 54.5 SHORT_DESC="LibMMS is a common library for parsing mms and mmsh streams." 54.6 MAINTAINER="slitaz@kacper.se" 54.7 -DEPENDS="glib" 54.8 -BUILD_DEPENDS="pkg-config glib-dev" 54.9 +LICENSE="LGPL2.1" 54.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 54.11 WEB_SITE="http://launchpad.net/libmms" 54.12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 54.13 54.14 +DEPENDS="glib" 54.15 +BUILD_DEPENDS="pkg-config glib-dev" 54.16 + 54.17 # Rules to configure and make the package. 54.18 compile_rules() 54.19 { 54.20 @@ -20,13 +22,13 @@ 54.21 --infodir=/usr/share/info \ 54.22 --mandir=/usr/share/man \ 54.23 $CONFIGURE_ARGS && 54.24 - make && make DESTDIR=$PWD/_pkg install 54.25 + make && make DESTDIR=$DESTDIR install 54.26 } 54.27 54.28 # Rules to gen a SliTaz package suitable for Tazpkg. 54.29 genpkg_rules() 54.30 { 54.31 mkdir -p $fs/usr/lib 54.32 - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 54.33 + cp -a $install/usr/lib/*.so* $fs/usr/lib 54.34 } 54.35
55.1 --- a/libmng-dev/receipt Sat Nov 09 17:34:23 2013 +0000 55.2 +++ b/libmng-dev/receipt Sat Nov 09 20:47:29 2013 +0000 55.3 @@ -5,6 +5,7 @@ 55.4 CATEGORY="development" 55.5 SHORT_DESC="dev file for libmng" 55.6 MAINTAINER="allan316@gmail.com" 55.7 +LICENSE="BSD" 55.8 WEB_SITE="http://libmng.sourceforge.net" 55.9 WANTED="libmng" 55.10
56.1 --- a/libmng/receipt Sat Nov 09 17:34:23 2013 +0000 56.2 +++ b/libmng/receipt Sat Nov 09 20:47:29 2013 +0000 56.3 @@ -5,6 +5,7 @@ 56.4 CATEGORY="development" 56.5 SHORT_DESC="library for multi network graphics" 56.6 MAINTAINER="allan316@gmail.com" 56.7 +LICENSE="BSD" 56.8 TARBALL="$PACKAGE-$VERSION.tar.gz" 56.9 WEB_SITE="http://libmng.sourceforge.net" 56.10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
57.1 --- a/libmodplug-dev/receipt Sat Nov 09 17:34:23 2013 +0000 57.2 +++ b/libmodplug-dev/receipt Sat Nov 09 20:47:29 2013 +0000 57.3 @@ -5,6 +5,7 @@ 57.4 CATEGORY="development" 57.5 SHORT_DESC="libmodplug devel files" 57.6 MAINTAINER="jozee@slitaz.org" 57.7 +LICENSE="PublicDomain" 57.8 WANTED="libmodplug" 57.9 WEB_SITE="http://modplug-xmms.sourceforge.net/" 57.10 57.11 @@ -12,7 +13,7 @@ 57.12 genpkg_rules() 57.13 { 57.14 mkdir -p $fs/usr/lib 57.15 - cp -a $_pkg/usr/include $fs/usr 57.16 - cp -a $_pkg/usr/lib/*.*a $fs/usr/lib/ 57.17 - cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 57.18 + cp -a $install/usr/include $fs/usr 57.19 + cp -a $install/usr/lib/*.*a $fs/usr/lib/ 57.20 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 57.21 }
58.1 --- a/libmodplug/receipt Sat Nov 09 17:34:23 2013 +0000 58.2 +++ b/libmodplug/receipt Sat Nov 09 20:47:29 2013 +0000 58.3 @@ -5,25 +5,26 @@ 58.4 CATEGORY="multimedia" 58.5 SHORT_DESC="A MOD playing library" 58.6 MAINTAINER="jozee@slitaz.org" 58.7 -DEPENDS="gcc-lib-base" 58.8 -BUILD_DEPENDS="gcc-lib-base" 58.9 +LICENSE="PublicDomain" 58.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 58.11 WEB_SITE="http://modplug-xmms.sourceforge.net/" 58.12 WGET_URL="http://downloads.sf.net/sourceforge/modplug-xmms/$TARBALL" 58.13 58.14 +DEPENDS="gcc-lib-base" 58.15 +BUILD_DEPENDS="gcc-lib-base" 58.16 + 58.17 # Rules to configure and make the package. 58.18 compile_rules() 58.19 { 58.20 cd $src 58.21 ./configure --prefix=/usr $CONFIGURE_ARGS 58.22 make 58.23 - make DESTDIR=$PWD/_pkg install 58.24 + make DESTDIR=$DESTDIR install 58.25 } 58.26 58.27 # Rules to gen a SliTaz package suitable for Tazpkg. 58.28 genpkg_rules() 58.29 { 58.30 mkdir -p $fs/usr/lib 58.31 - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 58.32 - 58.33 + cp -a $install/usr/lib/*.so* $fs/usr/lib 58.34 }
59.1 --- a/libmowgli-dev/receipt Sat Nov 09 17:34:23 2013 +0000 59.2 +++ b/libmowgli-dev/receipt Sat Nov 09 20:47:29 2013 +0000 59.3 @@ -5,6 +5,7 @@ 59.4 CATEGORY="development" 59.5 SHORT_DESC="High performance and highly flexible algorithms." 59.6 MAINTAINER="mimas@slitaz.org" 59.7 +LICENSE="BSD" 59.8 WANTED="libmowgli" 59.9 WEB_SITE="http://www.atheme.org/projects/mowgli.shtml" 59.10 59.11 @@ -12,8 +13,8 @@ 59.12 genpkg_rules() 59.13 { 59.14 mkdir -p $fs/usr/lib/pkgconfig 59.15 - cp -a $_pkg/usr/include $fs/usr 59.16 - #cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 59.17 - cp -a $_pkg/usr/lib/pkgconfig/*.pc $fs/usr/lib/pkgconfig 59.18 + cp -a $install/usr/include $fs/usr 59.19 + #cp -a $install/usr/lib/*.*a $fs/usr/lib 59.20 + cp -a $install/usr/lib/pkgconfig/*.pc $fs/usr/lib/pkgconfig 59.21 } 59.22
60.1 --- a/libmowgli/receipt Sat Nov 09 17:34:23 2013 +0000 60.2 +++ b/libmowgli/receipt Sat Nov 09 20:47:29 2013 +0000 60.3 @@ -5,6 +5,7 @@ 60.4 CATEGORY="system-tools" 60.5 SHORT_DESC="High performance and highly flexible algorithms." 60.6 MAINTAINER="mimas@slitaz.org" 60.7 +LICENSE="BSD" 60.8 TARBALL="$PACKAGE-$VERSION.tar.bz2" 60.9 WEB_SITE="http://www.atheme.org/projects/mowgli.shtml" 60.10 WGET_URL="http://distfiles.atheme.org/$TARBALL" 60.11 @@ -23,6 +24,6 @@ 60.12 genpkg_rules() 60.13 { 60.14 mkdir -p $fs/usr/lib 60.15 - cp -a $_pkg/usr/lib/libmowgli.so* $fs/usr/lib 60.16 + cp -a $install/usr/lib/libmowgli.so* $fs/usr/lib 60.17 } 60.18
61.1 --- a/libmpdclient-dev/receipt Sat Nov 09 17:34:23 2013 +0000 61.2 +++ b/libmpdclient-dev/receipt Sat Nov 09 20:47:29 2013 +0000 61.3 @@ -5,6 +5,7 @@ 61.4 CATEGORY="development" 61.5 SHORT_DESC="libmpdclient dev files." 61.6 MAINTAINER="erjo@slitaz.org" 61.7 +LICENSE="BSD" 61.8 WEB_SITE="http://mpd.wikia.com/wiki/ClientLib:libmpdclient" 61.9 WANTED="libmpdclient" 61.10
62.1 --- a/libmpdclient/receipt Sat Nov 09 17:34:23 2013 +0000 62.2 +++ b/libmpdclient/receipt Sat Nov 09 20:47:29 2013 +0000 62.3 @@ -5,6 +5,7 @@ 62.4 CATEGORY="system-tools" 62.5 SHORT_DESC="C & C++ API library for MPD." 62.6 MAINTAINER="erjo@slitaz.org" 62.7 +LICENSE="BSD" 62.8 TARBALL="$PACKAGE-$VERSION.tar.bz2" 62.9 WEB_SITE="http://mpd.wikia.com/wiki/ClientLib:libmpdclient" 62.10 WGET_URL="$SF_MIRROR/musicpd/$VERSION/$TARBALL"
63.1 --- a/openldap-dev/receipt Sat Nov 09 17:34:23 2013 +0000 63.2 +++ b/openldap-dev/receipt Sat Nov 09 20:47:29 2013 +0000 63.3 @@ -5,14 +5,16 @@ 63.4 CATEGORY="development" 63.5 SHORT_DESC="LDAP database development files." 63.6 MAINTAINER="pascal.bellard@slitaz.org" 63.7 +LICENSE="BSD" 63.8 WEB_SITE="http://www.openldap.org/" 63.9 +WANTED="openldap" 63.10 + 63.11 DEPENDS="openldap libldap" 63.12 -WANTED="openldap" 63.13 63.14 # Rules to gen a SliTaz package suitable for Tazpkg. 63.15 genpkg_rules() 63.16 { 63.17 mkdir -p $fs/usr/lib 63.18 - cp -a $_pkg/usr/include $fs/usr 63.19 - cp -a $_pkg/usr/lib/*a $fs/usr/lib 63.20 + cp -a $install/usr/include $fs/usr 63.21 + cp -a $install/usr/lib/*a $fs/usr/lib 63.22 }
64.1 --- a/openldap/receipt Sat Nov 09 17:34:23 2013 +0000 64.2 +++ b/openldap/receipt Sat Nov 09 20:47:29 2013 +0000 64.3 @@ -5,6 +5,7 @@ 64.4 CATEGORY="misc" 64.5 SHORT_DESC="LDAP database system." 64.6 MAINTAINER="pascal.bellard@slitaz.org" 64.7 +LICENSE="BSD" 64.8 TARBALL="$PACKAGE-$VERSION.tgz" 64.9 WEB_SITE="http://www.openldap.org/" 64.10 WGET_URL="ftp://ftp.openldap.org/pub/OpenLDAP/$PACKAGE-release/$TARBALL" 64.11 @@ -39,11 +40,11 @@ 64.12 genpkg_rules() 64.13 { 64.14 mkdir -p $fs/usr/lib $fs/etc/ldap.d 64.15 - cp -a $_pkg/etc $fs 64.16 - cp -a $_pkg/usr/bin $fs/usr 64.17 - cp -a $_pkg/usr/sbin $fs/usr 64.18 - cp -a $_pkg/usr/lib/$PACKAGE $fs/usr/lib 64.19 - cp -a $_pkg/var $fs 64.20 + cp -a $install/etc $fs 64.21 + cp -a $install/usr/bin $fs/usr 64.22 + cp -a $install/usr/sbin $fs/usr 64.23 + cp -a $install/usr/lib/$PACKAGE $fs/usr/lib 64.24 + cp -a $install/var $fs 64.25 cp -a $stuff/etc/init.d $fs/etc 64.26 chmod 700 $fs/var/lib/openldap $fs/etc/openldap 64.27 }