wok rev 180
Add : libgp-error, lbgcrypt, gnutls for pidgin/SSL support.
author | Eric Joseph-Alexandre <erjo@slitaz.org> |
---|---|
date | Tue Feb 05 00:17:05 2008 +0100 (2008-02-05) |
parents | 4e795cf8f4ce |
children | 2474378baf7d |
files | gnutls/receipt libgcrypt/receipt libgpg-error/receipt nmap/receipt pidgin/receipt syslinux-extra/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/gnutls/receipt Tue Feb 05 00:17:05 2008 +0100 1.3 @@ -0,0 +1,37 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="gnutls" 1.7 +VERSION="2.3.0" 1.8 +CATEGORY="security" 1.9 +SHORT_DESC="GNU Transport Layer Security Library" 1.10 +MAINTAINER="Erjo <erjo@slitaz.com>" 1.11 +DEPENDS="libgcrypt libgpg-error" 1.12 +BUILD_DEPENDS="libgcrypt-dev libgpg-error-dev" 1.13 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.14 +WEB_SITE="http://www.gnu.org/software/gnutls/" 1.15 +WGET_URL="http://www.gnu.org/software/gnutls/releases/$TARBALL" 1.16 + 1.17 +# Rules to configure and make the package. 1.18 +compile_rules() 1.19 +{ 1.20 + cd $src 1.21 + ./configure --prefix=/usr --infodir=/usr/share/info \ 1.22 + --mandir=/usr/share/man $CONFIGURE_ARGS 1.23 + make 1.24 + make DESTDIR=$PWD/_pkg install 1.25 +} 1.26 + 1.27 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.28 +genpkg_rules() 1.29 +{ 1.30 + mkdir -p $fs/usr/share $fs/usr/lib 1.31 + 1.32 + # Copy all bin and remove devel stuff. 1.33 + cp -a $_pkg/usr/bin $fs/usr 1.34 + rm $fs/usr/bin/libgnutls-*config 1.35 + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 1.36 + 1.37 + strip -s $fs/usr/bin/* 1.38 + strip -s $fs/usr/lib/* 1.39 +} 1.40 +
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/libgcrypt/receipt Tue Feb 05 00:17:05 2008 +0100 2.3 @@ -0,0 +1,33 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="libgcrypt" 2.7 +VERSION="1.4.0" 2.8 +CATEGORY="security" 2.9 +SHORT_DESC="Cryptographic library based on GnuPG" 2.10 +MAINTAINER="Erjo <erjo@slitaz.org>" 2.11 +DEPENDS="libgpg-error" 2.12 +BUILD_DEPENDS="libgpg-error-dev" 2.13 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 2.14 +WEB_SITE="http://www.gnupg.org/" 2.15 +WGET_URL="ftp://ftp.gnupg.org/gcrypt/libgcrypt/$TARBALL" 2.16 + 2.17 +# Rules to configure and make the package. 2.18 +compile_rules() 2.19 +{ 2.20 + cd $src 2.21 + ./configure --prefix=/usr --infodir=/usr/share/info \ 2.22 + --mandir=/usr/share/man $CONFIGURE_ARGS 2.23 + make 2.24 + make DESTDIR=$PWD/_pkg install 2.25 +} 2.26 + 2.27 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.28 +genpkg_rules() 2.29 +{ 2.30 + mkdir -p $fs/usr/bin $fs/usr/lib 2.31 + cp -a $_pkg/usr/bin/dumpsexp $fs/usr/bin 2.32 + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 2.33 + strip -s $fs/usr/bin/* 2.34 + strip -s $fs/usr/lib/* 2.35 +} 2.36 +
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 3.2 +++ b/libgpg-error/receipt Tue Feb 05 00:17:05 2008 +0100 3.3 @@ -0,0 +1,35 @@ 3.4 +# SliTaz package receipt. 3.5 + 3.6 +PACKAGE="libgpg-error" 3.7 +VERSION="1.6" 3.8 +CATEGORY="security" 3.9 +SHORT_DESC="Commons error messages for GnuPG." 3.10 +MAINTAINER="Erjo <erjo@slitaz.org>" 3.11 +DEPENDS="" 3.12 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 3.13 +WEB_SITE="http://www.gnupg.org/related_software/libgpg-error/" 3.14 +WGET_URL="ftp://ftp.gnupg.org/gcrypt/libgpg-error/$TARBALL" 3.15 + 3.16 +# Rules to configure and make the package. 3.17 +compile_rules() 3.18 +{ 3.19 + cd $src 3.20 + ./configure --prefix=/usr --infodir=/usr/share/info \ 3.21 + --mandir=/usr/share/man $CONFIGURE_ARGS 3.22 + make 3.23 + make DESTDIR=$PWD/_pkg install 3.24 +} 3.25 + 3.26 +# Rules to gen a SliTaz package suitable for Tazpkg. 3.27 +genpkg_rules() 3.28 +{ 3.29 + mkdir -p $fs/usr/bin $fs/usr/lib $fs/usr/share 3.30 + 3.31 + cp -a $_pkg/usr/bin/gpg-error $fs/usr/bin 3.32 + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 3.33 + cp -a $_pkg/usr/share/common-lisp $fs/usr/share 3.34 + 3.35 + strip -s $fs/usr/bin/gpg-error 3.36 + strip -s $fs/usr/lib/* 3.37 +} 3.38 +
4.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 4.2 +++ b/nmap/receipt Tue Feb 05 00:17:05 2008 +0100 4.3 @@ -0,0 +1,31 @@ 4.4 +# SliTaz package receipt. 4.5 + 4.6 +PACKAGE="nmap" 4.7 +VERSION="4.53" 4.8 +CATEGORY="security" 4.9 +SHORT_DESC="The Network Mapper." 4.10 +MAINTAINER="Erjo <erjo@slitaz.org>" 4.11 +DEPENDS="" 4.12 +BUILD_DEPENDS="python-dev" 4.13 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 4.14 +WEB_SITE="http://nmap.org/" 4.15 +WGET_URL="http://download.insecure.org/nmap/dist/$TARBALL" 4.16 + 4.17 +# Rules to configure and make the package. 4.18 +compile_rules() 4.19 +{ 4.20 + cd $src 4.21 + ./configure --prefix=/usr --infodir=/usr/share/info \ 4.22 + --mandir=/usr/share/man $CONFIGURE_ARGS 4.23 + make 4.24 + make DESTDIR=$PWD/_pkg install-nmap 4.25 +} 4.26 + 4.27 +# Rules to gen a SliTaz package suitable for Tazpkg. 4.28 +genpkg_rules() 4.29 +{ 4.30 + mkdir -p $fs/usr 4.31 + cp -a $_pkg/usr/bin $fs/usr 4.32 + strip -s $fs/usr/bin/* 4.33 +} 4.34 +
5.1 --- a/pidgin/receipt Sat Feb 02 13:25:56 2008 +0100 5.2 +++ b/pidgin/receipt Tue Feb 05 00:17:05 2008 +0100 5.3 @@ -6,7 +6,7 @@ 5.4 SHORT_DESC="Instant messaging client using GTK+." 5.5 MAINTAINER="pankso@slitaz.org" 5.6 DEPENDS="gtk+" 5.7 -BUILD_DEPENDS="gtk+-dev openssl-dev libcrypto-dev" 5.8 +BUILD_DEPENDS="gtk+-dev gnutls-dev libgcrypt-dev libgpg-error-dev" 5.9 TARBALL="$PACKAGE-$VERSION.tar.bz2" 5.10 WEB_SITE="http://www.pidgin.im/" 5.11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
6.1 --- a/syslinux-extra/receipt Sat Feb 02 13:25:56 2008 +0100 6.2 +++ b/syslinux-extra/receipt Tue Feb 05 00:17:05 2008 +0100 6.3 @@ -1,7 +1,7 @@ 6.4 # SliTaz package receipt. 6.5 6.6 PACKAGE="syslinux-extra" 6.7 -VERSION="3.54" 6.8 +VERSION="3.60" 6.9 CATEGORY="extra" 6.10 SHORT_DESC="MBR/FAT/EXT3/PXE bootloader files" 6.11 MAINTAINER="pankso@slitaz.org"