wok-6.x diff ettercap/receipt @ rev 13073
Up: actionmailler to 3.2.6.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Mon Jun 25 08:34:37 2012 +0000 (2012-06-25) |
parents | |
children | 5273b8724d00 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/ettercap/receipt Mon Jun 25 08:34:37 2012 +0000 1.3 @@ -0,0 +1,38 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="ettercap" 1.7 +VERSION="NG-0.7.3" 1.8 +CATEGORY="network" 1.9 +SHORT_DESC="Ettercap is a suite for man in the middle attacks on LAN" 1.10 +MAINTAINER="claudinei@slitaz.org" 1.11 +DEPENDS="libpthread-stubs libpcap libnet libtool zlib" 1.12 +BUILD_DEPENDS="libpthread-stubs libpcap libpcap-dev libnet-dev libtool zlib-dev" 1.13 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.14 +WEB_SITE="http://ettercap.sourceforge.net" 1.15 +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 1.16 + 1.17 +# Rules to configure and make the package. 1.18 +compile_rules() 1.19 +{ 1.20 + cd $src 1.21 + sed -i 's/ettercap_LDFLAGS = -export-dynamic @EC_LIBS@/ettercap_LDADD += @EC_LIBS@\nettercap_LDFLAGS = -export-dynamic/' src/Makefile.* 1.22 + ./configure \ 1.23 + --prefix=/usr \ 1.24 + --infodir=/usr/share/info \ 1.25 + --mandir=/usr/share/man \ 1.26 + --enable-plugins \ 1.27 + --disable-gtk \ 1.28 + $CONFIGURE_ARGS && 1.29 + make && make DESTDIR=$DESTDIR install 1.30 +} 1.31 + 1.32 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.33 +genpkg_rules() 1.34 +{ 1.35 + mkdir -p $fs/usr/share 1.36 + cp -a $_pkg/usr/bin $fs/usr 1.37 + cp -a $_pkg/usr/etc $fs 1.38 + cp -a $_pkg/usr/share/ettercap $fs/usr/share 1.39 + cp -a $_pkg/usr/lib $fs/usr 1.40 +} 1.41 +