# HG changeset patch # User Hans-G?nter Theisgen # Date 1645541224 -3600 # Node ID 5bf9ffd879708c0aca5b7236607e03f935bc97ca # Parent 293c8ed65bed9844b61ab1f4608137c9f28a2f7f updated ettercap (0.8.3 -> 0.8.3.1) diff -r 293c8ed65bed -r 5bf9ffd87970 ettercap/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ettercap/description.txt Tue Feb 22 15:47:04 2022 +0100 @@ -0,0 +1,5 @@ +Ettercap is a comprehensive suite for man in the middle attacks. +It features sniffing of live connections, content filtering +on the fly and many other interesting tricks. +It supports active and passive dissection of many protocols and +includes many features for network and host analysis. diff -r 293c8ed65bed -r 5bf9ffd87970 ettercap/receipt --- a/ettercap/receipt Tue Feb 22 15:25:07 2022 +0100 +++ b/ettercap/receipt Tue Feb 22 15:47:04 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="ettercap" -VERSION="0.8.3" +VERSION="0.8.3.1" CATEGORY="network" SHORT_DESC="A suite for man in the middle attacks on LAN." MAINTAINER="claudinei@slitaz.org" @@ -24,13 +24,12 @@ # Rules to configure and make the package. compile_rules() { - mkdir build - cd build - cmake \ - -DCMAKE_INSTALL_PREFIX=/usr \ - -DENABLE_GTK=OFF \ - -DENABLE_PLUGINS=ON \ - ../ + mkdir _build + cd _build + cmake .. \ + -D CMAKE_INSTALL_PREFIX=/usr \ + -D ENABLE_GTK=OFF \ + -D ENABLE_PLUGINS=ON && make && make DESTDIR=$DESTDIR install }