wok rev 48

new receipt for security
author Serge Daigle <sdaigl@lacitec.on.ca>
date Thu Dec 20 00:12:47 2007 -0500 (2007-12-20)
parents 52598e15250a
children 9303fd1ff234
files freeradius/receipt tcpdump/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/freeradius/receipt	Thu Dec 20 00:12:47 2007 -0500
     1.3 @@ -0,0 +1,42 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="freeradius"
     1.7 +VERSION="1.1.7"
     1.8 +CATEGORY="security"
     1.9 +SHORT_DESC="radius server"
    1.10 +MAINTAINER="Serge Daigle sdaigl@lacitec.on.ca"
    1.11 +DEPENDS="libtool, openssl"
    1.12 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.13 +WEB_SITE="www.freeradius.org"
    1.14 +WGET_URL="http://freeradius.portal-to-web.de/$TARBALL"
    1.15 +
    1.16 +# Rules to configure and make the package.
    1.17 +compile_rules()
    1.18 +{
    1.19 +	cd $src
    1.20 +	./configure --prefix=/usr \
    1.21 +		--infodir=/usr/share/info \
    1.22 +		--mandir=/usr/share/man \
    1.23 +		--sysconfdir=/etc \
    1.24 +		--localstatedir=/var \
    1.25 +		$CONFIGURE_ARGS
    1.26 +	make
    1.27 +	make R=$PWD/_pkg install
    1.28 +}
    1.29 +
    1.30 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.31 +genpkg_rules()
    1.32 +{
    1.33 +	mkdir -p $fs/usr/lib $fs/usr/share
    1.34 +
    1.35 +	cp -a $_pkg/usr/bin $fs/usr
    1.36 +	cp -a $_pkg/usr/sbin $fs/usr
    1.37 +	cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
    1.38 +	cp -a $_pkg/usr/share/freeradius $fs/usr/share
    1.39 +	cp -a $_pkg/etc $fs
    1.40 +	cp -a $_pkg/var $fs
    1.41 +	
    1.42 +	strip -s $fs/usr/bin/*
    1.43 +	strip -s $fs/usr/sbin/*
    1.44 +	strip -s $fs/usr/lib/*
    1.45 +}
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/tcpdump/receipt	Thu Dec 20 00:12:47 2007 -0500
     2.3 @@ -0,0 +1,29 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="tcpdump"
     2.7 +VERSION="3.9.8"
     2.8 +CATEGORY="security"
     2.9 +SHORT_DESC="cli wire sniffer"
    2.10 +DEPENDS="openssl"
    2.11 +MAINTAINER="Serge Daigle <sdaigl@lacitec.on.ca>"
    2.12 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    2.13 +WEB_SITE="www.tcpdump.org"
    2.14 +WGET_URL="http://www.tcpdump.org/release/$TARBALL";
    2.15 +
    2.16 +# Rules to configure and make the package.
    2.17 +compile_rules()
    2.18 +{
    2.19 +        cd $src
    2.20 +        ./configure --prefix=/usr --infodir=/usr/share/info \
    2.21 +        --mandir=/usr/share/man $CONFIGURE_ARGS
    2.22 +        make
    2.23 +        make DESTDIR=$PWD/_pkg install
    2.24 +}
    2.25 +
    2.26 +# Rules to gen a SliTaz package suitable for Tazpkg.
    2.27 +genpkg_rules()
    2.28 +{
    2.29 +        mkdir -p $fs/usr
    2.30 +        cp -a $_pkg/usr/sbin $fs/usr
    2.31 +        strip -s $fs/usr/sbin/*
    2.32 +}