diff options
author | 2007-09-06 16:34:20 +0000 | |
---|---|---|
committer | 2007-09-06 16:34:20 +0000 | |
commit | 7afe50571023fadad6e298685a3efad6a76ce095 (patch) | |
tree | 63f72ba62162860be161ce68471d91950b976b6f /net-analyzer | |
parent | Remove unneeded amd64? qt-static? for this build. (diff) | |
download | historical-7afe50571023fadad6e298685a3efad6a76ce095.tar.gz historical-7afe50571023fadad6e298685a3efad6a76ce095.tar.bz2 historical-7afe50571023fadad6e298685a3efad6a76ce095.zip |
Cleanup
Package-Manager: portage-2.1.3.7
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/echoping/ChangeLog | 7 | ||||
-rw-r--r-- | net-analyzer/echoping/echoping-5.2.0.ebuild | 66 | ||||
-rw-r--r-- | net-analyzer/echoping/echoping-6.0.1.ebuild | 52 | ||||
-rw-r--r-- | net-analyzer/echoping/files/digest-echoping-5.2.0 | 3 | ||||
-rw-r--r-- | net-analyzer/echoping/files/digest-echoping-6.0.1 | 3 | ||||
-rw-r--r-- | net-analyzer/echoping/files/maxtoread-5.2.0.patch | 12 | ||||
-rw-r--r-- | net-analyzer/ettercap/ChangeLog | 5 | ||||
-rw-r--r-- | net-analyzer/ettercap/ettercap-0.7.3.ebuild | 59 | ||||
-rw-r--r-- | net-analyzer/ettercap/files/digest-ettercap-0.7.3 | 3 | ||||
-rw-r--r-- | net-analyzer/fail2ban/ChangeLog | 6 | ||||
-rw-r--r-- | net-analyzer/fail2ban/fail2ban-0.7.9.ebuild | 46 | ||||
-rw-r--r-- | net-analyzer/fail2ban/fail2ban-0.8.0.ebuild | 50 | ||||
-rw-r--r-- | net-analyzer/fail2ban/files/digest-fail2ban-0.7.9 | 3 | ||||
-rw-r--r-- | net-analyzer/fail2ban/files/digest-fail2ban-0.8.0 | 3 |
14 files changed, 15 insertions, 303 deletions
diff --git a/net-analyzer/echoping/ChangeLog b/net-analyzer/echoping/ChangeLog index c092eb896f44..5fa1d446fe66 100644 --- a/net-analyzer/echoping/ChangeLog +++ b/net-analyzer/echoping/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-analyzer/echoping # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/echoping/ChangeLog,v 1.12 2007/09/06 16:25:35 jokey Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/echoping/ChangeLog,v 1.13 2007/09/06 16:30:31 jokey Exp $ + + 06 Sep 2007; Markus Ullmann <jokey@gentoo.org> + -files/maxtoread-5.2.0.patch, -echoping-5.2.0.ebuild, + -echoping-6.0.1.ebuild: + Cleanup 06 Sep 2007; Markus Ullmann <jokey@gentoo.org> echoping-6.0.2.ebuild: Stable on x86 diff --git a/net-analyzer/echoping/echoping-5.2.0.ebuild b/net-analyzer/echoping/echoping-5.2.0.ebuild deleted file mode 100644 index 7eae5be82d05..000000000000 --- a/net-analyzer/echoping/echoping-5.2.0.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/echoping/echoping-5.2.0.ebuild,v 1.7 2007/02/01 21:44:37 jokey Exp $ - -inherit eutils - -DESCRIPTION="echoping is a small program to test performances of remote hosts with TCP 'echo' packets" -HOMEPAGE="http://echoping.sourceforge.net/" -SRC_URI="mirror://sourceforge/echoping/${P}.tar.gz" -LICENSE="GPL-2" - -SLOT="0" -KEYWORDS="x86" -IUSE="gnutls http icp idn priority smtp ssl tos" - -# Add suport to libidn -DEPEND="gnutls? ( >=net-libs/gnutls-1.0.17 ) - ssl? ( >=dev-libs/openssl-0.9.7d ) - idn? ( net-dns/libidn )" - -pkg_setup() { - # bug 141782 - conflicting USE flags - ssl and gnutls - if use ssl && use gnutls ; then - eerror "You cannot emerge net-analyzer/echoping with both" - eerror "ssl and gnutls USE flags set. Please choose one." - eerror - eerror "For example, you can add the line" - eerror - eerror "net-analyzer/echoping -gnutls" - eerror "to your /etc/portage/package.use" - die "echoping cannot use both ssl and gnutls at once" - fi -} - -src_unpack() { - unpack ${A} - cd "${S}" - - if ! use http ; then - # This patch defines maxtoread eventhough http is not - # enabled. This avoids an error in readline.c:56. - epatch "${FILESDIR}"/maxtoread-${PV}.patch - fi -} - -src_compile() { - econf \ - --disable-ttcp \ - `use_with gnutls` \ - `use_enable http` \ - `use_enable icp` \ - `use_with idn libidn` \ - `use_enable smtp` \ - `use_enable tos` \ - `use_enable priority` \ - `use_with ssl` || die "econf failed" - - emake || die "emake failed" -} - -src_install() { - emake install DESTDIR="${D}" || die "emake install failed" - - # They are not installed by make install - dodoc README AUTHORS ChangeLog DETAILS NEWS TODO -} diff --git a/net-analyzer/echoping/echoping-6.0.1.ebuild b/net-analyzer/echoping/echoping-6.0.1.ebuild deleted file mode 100644 index b9f4ac8a1373..000000000000 --- a/net-analyzer/echoping/echoping-6.0.1.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/echoping/echoping-6.0.1.ebuild,v 1.2 2007/07/09 12:10:52 armin76 Exp $ - -inherit eutils - -DESCRIPTION="echoping is a small program to test performances of remote servers" -HOMEPAGE="http://echoping.sourceforge.net/" -SRC_URI="mirror://sourceforge/echoping/${P}.tar.gz" -LICENSE="GPL-2" - -SLOT="0" -KEYWORDS="~amd64 x86" -IUSE="gnutls http icp idn priority smtp ssl tos postgres ldap" - -DEPEND="gnutls? ( >=net-libs/gnutls-1.0.17 ) - ssl? ( >=dev-libs/openssl-0.9.7d ) - idn? ( net-dns/libidn ) - postgres? ( dev-db/postgresql ) - ldap? ( net-nds/openldap )" - -pkg_setup() { - # bug 141782 - conflicting USE flags - ssl and gnutls - if use ssl && use gnutls ; then - eerror "You cannot emerge net-analyzer/echoping with both" - eerror "ssl and gnutls USE flags set. Please choose one." - die "echoping cannot use both ssl and gnutls at once" - fi -} - -src_compile() { - econf \ - --config-cache \ - --disable-ttcp \ - $(use_with gnutls) \ - $(use_enable http) \ - $(use_enable icp) \ - $(use_with idn libidn) \ - $(use_enable smtp) \ - $(use_enable tos) \ - $(use_enable priority) \ - $(use_with ssl) || die "econf failed" - - emake || die "emake failed" -} - -src_install() { - emake install DESTDIR="${D}" || die "emake install failed" - - # They are not installed by make install - dodoc README AUTHORS ChangeLog DETAILS NEWS TODO -} diff --git a/net-analyzer/echoping/files/digest-echoping-5.2.0 b/net-analyzer/echoping/files/digest-echoping-5.2.0 deleted file mode 100644 index 2128b985f60a..000000000000 --- a/net-analyzer/echoping/files/digest-echoping-5.2.0 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 aef46a1d09a1083e99eb5e18e9184af2 echoping-5.2.0.tar.gz 120911 -RMD160 dcf65162034ec295a7b7d993d166d8ef70a1be79 echoping-5.2.0.tar.gz 120911 -SHA256 b7c94289f860716e8feb8a53448d4d3a7c19728400755dbc584e731904ac6bbf echoping-5.2.0.tar.gz 120911 diff --git a/net-analyzer/echoping/files/digest-echoping-6.0.1 b/net-analyzer/echoping/files/digest-echoping-6.0.1 deleted file mode 100644 index 7093df24d0c7..000000000000 --- a/net-analyzer/echoping/files/digest-echoping-6.0.1 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 eb1da53df8e632446c805ad5962be13d echoping-6.0.1.tar.gz 1814035 -RMD160 28413bb966d0fdee3db4a249543061dc7beeab4c echoping-6.0.1.tar.gz 1814035 -SHA256 b23b7ad6669dc825f830659968591e7c199b9f09862802e94ac564628fad82a4 echoping-6.0.1.tar.gz 1814035 diff --git a/net-analyzer/echoping/files/maxtoread-5.2.0.patch b/net-analyzer/echoping/files/maxtoread-5.2.0.patch deleted file mode 100644 index 154ceafae848..000000000000 --- a/net-analyzer/echoping/files/maxtoread-5.2.0.patch +++ /dev/null @@ -1,12 +0,0 @@ ---- echoping.h.orig 2005-01-25 12:57:52.144117296 -0200 -+++ echoping.h 2005-01-25 12:58:11.392191144 -0200 -@@ -11,9 +11,7 @@ - #define DEFLINE 256 - #define MAXLINE 65535 - #define UDPMAX 65535 --#ifdef HTTP - #define MAXTOREAD 150000 --#endif - #ifdef SMTP - #define MAXSMTP 1024 - #define MAXSMTPLINES 30 diff --git a/net-analyzer/ettercap/ChangeLog b/net-analyzer/ettercap/ChangeLog index 222d67988ebb..73630d212335 100644 --- a/net-analyzer/ettercap/ChangeLog +++ b/net-analyzer/ettercap/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-analyzer/ettercap # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ettercap/ChangeLog,v 1.64 2007/05/31 13:41:31 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ettercap/ChangeLog,v 1.65 2007/09/06 16:31:55 jokey Exp $ + + 06 Sep 2007; Markus Ullmann <jokey@gentoo.org> -ettercap-0.7.3.ebuild: + Cleanup 31 May 2007; Raúl Porcel <armin76@gentoo.org> ettercap-0.7.3-r2.ebuild: alpha stable wrt #164922 diff --git a/net-analyzer/ettercap/ettercap-0.7.3.ebuild b/net-analyzer/ettercap/ettercap-0.7.3.ebuild deleted file mode 100644 index f60dfc96118b..000000000000 --- a/net-analyzer/ettercap/ettercap-0.7.3.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2006 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ettercap/ettercap-0.7.3.ebuild,v 1.10 2006/10/25 08:37:12 drizzt Exp $ - -# the actual version is "NG-0.7.0" but I suppose portage people will not be -# happy with it (as for the 0.6.b version), so let's set it to "0.7.0". -# since 'ettercap NG' has to be intended as an upgrade to 0.6.x series and not as -# a new project or branch, this will be fine... - -inherit flag-o-matic - -MY_P="${PN}-NG-${PV}" -S="${WORKDIR}/${MY_P}" - -DESCRIPTION="A suite for man in the middle attacks and network mapping" -HOMEPAGE="http://ettercap.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha ~amd64 arm hppa ppc sparc x86 ~x86-fbsd" -IUSE="ssl ncurses gtk debug" - -# libtool is needed because it provides libltdl (needed for plugins) -RDEPEND="virtual/libc - sys-libs/zlib - >=sys-devel/libtool-1.4.3 - >=net-libs/libnet-1.1.2.1-r1 - net-libs/libpcap - ncurses? ( sys-libs/ncurses ) - ssl? ( dev-libs/openssl ) - gtk? ( >=x11-libs/gtk+-2.2.2 )" - -DEPEND=">=sys-apps/sed-4.0.5 - ${RDEPEND}" - -src_compile() { - strip-flags - - local myconf - - if use ssl; then - myconf="${myconf} --with-openssl=/usr" - else - myconf="${myconf} --without-openssl" - fi - - econf ${myconf} \ - $(use_enable gtk) \ - $(use_enable debug) \ - $(use_with ncurses) \ - || die "econf failed" - - emake || die "emake failed" -} - -src_install() { - make DESTDIR="${D}" install || die "make install failed" -} diff --git a/net-analyzer/ettercap/files/digest-ettercap-0.7.3 b/net-analyzer/ettercap/files/digest-ettercap-0.7.3 deleted file mode 100644 index 658da46ad006..000000000000 --- a/net-analyzer/ettercap/files/digest-ettercap-0.7.3 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 28fb15cd024162c55249888fe1b97820 ettercap-NG-0.7.3.tar.gz 1138643 -RMD160 f4e6c0d87b2064b3775e9af60f34575273742616 ettercap-NG-0.7.3.tar.gz 1138643 -SHA256 c74239052d62565c13a82f9bbf217a4fdcce4b34949e361b53bb3f28e3168543 ettercap-NG-0.7.3.tar.gz 1138643 diff --git a/net-analyzer/fail2ban/ChangeLog b/net-analyzer/fail2ban/ChangeLog index fd095faf8136..39a04e0a7957 100644 --- a/net-analyzer/fail2ban/ChangeLog +++ b/net-analyzer/fail2ban/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-analyzer/fail2ban # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fail2ban/ChangeLog,v 1.35 2007/08/31 15:06:17 falco Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fail2ban/ChangeLog,v 1.36 2007/09/06 16:34:20 jokey Exp $ + + 06 Sep 2007; Markus Ullmann <jokey@gentoo.org> -fail2ban-0.7.9.ebuild, + -fail2ban-0.8.0.ebuild: + Cleanup *fail2ban-0.8.1 (31 Aug 2007) diff --git a/net-analyzer/fail2ban/fail2ban-0.7.9.ebuild b/net-analyzer/fail2ban/fail2ban-0.7.9.ebuild deleted file mode 100644 index 55fe1588d055..000000000000 --- a/net-analyzer/fail2ban/fail2ban-0.7.9.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fail2ban/fail2ban-0.7.9.ebuild,v 1.2 2007/06/18 12:34:52 falco Exp $ - -inherit distutils - -DESCRIPTION="Bans IP that make too many password failures" -HOMEPAGE="http://fail2ban.sourceforge.net/" -SRC_URI="mirror://sourceforge/fail2ban/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86" -IUSE="" - -DEPEND=">=dev-lang/python-2.4" -RDEPEND=${DEPEND} - -src_install() { - distutils_src_install - - newconfd files/gentoo-confd fail2ban - newinitd files/gentoo-initd fail2ban - dodoc CHANGELOG README TODO || die "dodoc failed" - doman man/*.1 || die "doman failed" -} - -pkg_postinst() { - elog - elog "Configuration files are now in /etc/fail2ban/" - elog "You probably have to manually update your configuration" - elog "files before restarting Fail2ban!" - elog - elog "Fail2ban is not installed under /usr/lib anymore. The" - elog "new location is under /usr/share." - elog -} - -pkg_setup() { - if ! built_with_use dev-lang/python readline ; then - echo - eerror "dev-lang/python is missing readline support. Please add" - eerror "'readline' to your USE flags, and re-emerge dev-lang/python." - die "dev-lang/python needs readline support" - fi -} diff --git a/net-analyzer/fail2ban/fail2ban-0.8.0.ebuild b/net-analyzer/fail2ban/fail2ban-0.8.0.ebuild deleted file mode 100644 index acc21b243c7c..000000000000 --- a/net-analyzer/fail2ban/fail2ban-0.8.0.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fail2ban/fail2ban-0.8.0.ebuild,v 1.3 2007/07/05 22:49:55 falco Exp $ - -inherit distutils - -DESCRIPTION="Bans IP that make too many password failures" -HOMEPAGE="http://fail2ban.sourceforge.net/" -SRC_URI="mirror://sourceforge/fail2ban/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86" -IUSE="" - -DEPEND=">=dev-lang/python-2.4" -RDEPEND=${DEPEND} - -src_install() { - distutils_src_install - - newconfd files/gentoo-confd fail2ban - newinitd files/gentoo-initd fail2ban - dodoc CHANGELOG README TODO || die "dodoc failed" - doman man/*.1 || die "doman failed" -} - -pkg_postinst() { - if has_version '<net-analyzer/fail2ban-0.7' ; then - elog - elog "Configuration files are now in /etc/fail2ban/" - elog "You probably have to manually update your configuration" - elog "files before restarting Fail2ban!" - elog - elog "Fail2ban is not installed under /usr/lib anymore. The" - elog "new location is under /usr/share." - elog - elog "You are upgrading from version 0.6.x, please see:" - elog "http://www.fail2ban.org/wiki/index.php/HOWTO_Upgrade_from_0.6_to_0.8" - fi -} - -pkg_setup() { - if ! built_with_use dev-lang/python readline ; then - echo - eerror "dev-lang/python is missing readline support. Please add" - eerror "'readline' to your USE flags, and re-emerge dev-lang/python." - die "dev-lang/python needs readline support" - fi -} diff --git a/net-analyzer/fail2ban/files/digest-fail2ban-0.7.9 b/net-analyzer/fail2ban/files/digest-fail2ban-0.7.9 deleted file mode 100644 index abfd16467cb6..000000000000 --- a/net-analyzer/fail2ban/files/digest-fail2ban-0.7.9 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 5a085f95907aaff2c2e2298ac289086c fail2ban-0.7.9.tar.bz2 54750 -RMD160 213aaebb9dd3cb77038db1c6cfbe63fc1980f9a1 fail2ban-0.7.9.tar.bz2 54750 -SHA256 93f4665b254311ec53f74651f2ed9bfc14902ae1b9983d04e76c949ac0d035ff fail2ban-0.7.9.tar.bz2 54750 diff --git a/net-analyzer/fail2ban/files/digest-fail2ban-0.8.0 b/net-analyzer/fail2ban/files/digest-fail2ban-0.8.0 deleted file mode 100644 index fe20cdb9a4de..000000000000 --- a/net-analyzer/fail2ban/files/digest-fail2ban-0.8.0 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 7988a65a978bc5c44a92aaf1dbdebcba fail2ban-0.8.0.tar.bz2 55726 -RMD160 16c033a9fbd10a468ac62d6ba31becf5966a5647 fail2ban-0.8.0.tar.bz2 55726 -SHA256 ef60f601a8766128910f08ca5e731782d7ca17c014dcf6ab54982e7ae59bd5f6 fail2ban-0.8.0.tar.bz2 55726 |