summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Roovers <jer@gentoo.org>2011-08-15 10:20:45 +0000
committerJeroen Roovers <jer@gentoo.org>2011-08-15 10:20:45 +0000
commit1cd6ed6cfbfc01f233d15e641e2f7b09750334de (patch)
tree2519470b7826fa1a9403e9091885f322a13813d6 /net-analyzer
parentRemove old (diff)
downloadgentoo-2-1cd6ed6cfbfc01f233d15e641e2f7b09750334de.tar.gz
gentoo-2-1cd6ed6cfbfc01f233d15e641e2f7b09750334de.tar.bz2
gentoo-2-1cd6ed6cfbfc01f233d15e641e2f7b09750334de.zip
Old.
(Portage version: 2.2.0_alpha51/cvs/Linux x86_64)
Diffstat (limited to 'net-analyzer')
-rw-r--r--net-analyzer/hydra/ChangeLog6
-rw-r--r--net-analyzer/hydra/hydra-5.9.ebuild82
-rw-r--r--net-analyzer/hydra/hydra-6.0.ebuild82
3 files changed, 5 insertions, 165 deletions
diff --git a/net-analyzer/hydra/ChangeLog b/net-analyzer/hydra/ChangeLog
index 8cec75105823..4a26c732f29c 100644
--- a/net-analyzer/hydra/ChangeLog
+++ b/net-analyzer/hydra/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-analyzer/hydra
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/hydra/ChangeLog,v 1.61 2011/08/15 08:12:45 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/hydra/ChangeLog,v 1.62 2011/08/15 10:20:45 jer Exp $
+
+ 15 Aug 2011; Jeroen Roovers <jer@gentoo.org> -hydra-5.9.ebuild,
+ -hydra-6.0.ebuild:
+ ^
15 Aug 2011; Kacper Kowalik <xarthisius@gentoo.org> hydra-6.1.ebuild:
ppc stable wrt #363295
diff --git a/net-analyzer/hydra/hydra-5.9.ebuild b/net-analyzer/hydra/hydra-5.9.ebuild
deleted file mode 100644
index 3b4baf8c2852..000000000000
--- a/net-analyzer/hydra/hydra-5.9.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/hydra/hydra-5.9.ebuild,v 1.5 2011/03/27 19:39:23 ranger Exp $
-
-EAPI="2"
-
-inherit toolchain-funcs
-
-DESCRIPTION="Advanced parallized login hacker"
-HOMEPAGE="http://www.thc.org/thc-hydra/"
-SRC_URI="http://freeworld.thc.org/releases/${P}-src.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE="gtk ssl"
-
-DEPEND="
- dev-libs/openssl
- gtk? ( x11-libs/gtk+:2 )
- ssl? ( >=net-libs/libssh-0.4.0 )
-"
-RDEPEND="${DEPEND}"
-
-S=${WORKDIR}/${P}-src
-
-src_prepare() {
- # None of the settings in Makefile.unix are useful to us
- : > Makefile.unix
-
- sed -i \
- -e 's:-O2:$(CPPFLAGS) $(CFLAGS):g' \
- -e 's:|| echo.*$::' \
- -e '/\t-$(CC)/s/-//' \
- -e '/ -o /s:$(OPTS):& $(LDFLAGS):g' \
- Makefile.am || die "sed failed"
-}
-
-src_configure() {
- # Note: despite the naming convention, the top level script is not an
- # autoconf-based script.
- ./configure \
- --prefix=/usr \
- $(use gtk && echo --disable-xhydra) \
- || die "configure failed"
-
- sed -i \
- -e '/^XDEFINES=/s:=.*:=:' \
- -e '/^XLIBS=/s:=.*:=-lcrypto:' \
- -e '/^XLIBPATHS/s:=.*:=:' \
- -e '/^XIPATHS=/s:=.*:=:' \
- Makefile || die "pruning vars"
-
- if use ssl ; then
- sed -i \
- -e '/^XDEFINES=/s:=:=-DLIBOPENSSL -DLIBSSH:' \
- -e '/^XLIBS=/s:$: -lssl -lssh:' \
- Makefile || die "adding ssl"
- fi
-
- if use gtk ; then
- cd hydra-gtk && \
- econf || die "econf failed"
- fi
-}
-
-src_compile() {
- tc-export CC
- emake || die "make failed"
- if use gtk ; then
- cd hydra-gtk && \
- emake || die "emake hydra-gtk failed"
- fi
-}
-
-src_install() {
- dobin hydra pw-inspector || die "dobin failed"
- if use gtk ; then
- dobin hydra-gtk/src/xhydra || die "gtk"
- fi
- dodoc CHANGES README TODO
-}
diff --git a/net-analyzer/hydra/hydra-6.0.ebuild b/net-analyzer/hydra/hydra-6.0.ebuild
deleted file mode 100644
index 94dd9f184bef..000000000000
--- a/net-analyzer/hydra/hydra-6.0.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/hydra/hydra-6.0.ebuild,v 1.2 2011/03/01 22:44:01 jer Exp $
-
-EAPI="2"
-
-inherit toolchain-funcs
-
-DESCRIPTION="Advanced parallized login hacker"
-HOMEPAGE="http://www.thc.org/thc-hydra/"
-SRC_URI="http://freeworld.thc.org/releases/${P}-src.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="gtk ssl"
-
-DEPEND="
- dev-libs/openssl
- gtk? ( x11-libs/gtk+:2 )
- ssl? ( >=net-libs/libssh-0.4.0 )
-"
-RDEPEND="${DEPEND}"
-
-S=${WORKDIR}/${P}-src
-
-src_prepare() {
- # None of the settings in Makefile.unix are useful to us
- : > Makefile.unix
-
- sed -i \
- -e 's:-O2:$(CPPFLAGS) $(CFLAGS):g' \
- -e 's:|| echo.*$::' \
- -e '/\t-$(CC)/s/-//' \
- -e '/ -o /s:$(OPTS):& $(LDFLAGS):g' \
- Makefile.am || die "sed failed"
-}
-
-src_configure() {
- # Note: despite the naming convention, the top level script is not an
- # autoconf-based script.
- ./configure \
- --prefix=/usr \
- $(use gtk && echo --disable-xhydra) \
- || die "configure failed"
-
- sed -i \
- -e '/^XDEFINES=/s:=.*:=:' \
- -e '/^XLIBS=/s:=.*:=-lcrypto:' \
- -e '/^XLIBPATHS/s:=.*:=:' \
- -e '/^XIPATHS=/s:=.*:=:' \
- Makefile || die "pruning vars"
-
- if use ssl ; then
- sed -i \
- -e '/^XDEFINES=/s:=:=-DLIBOPENSSL -DLIBSSH:' \
- -e '/^XLIBS=/s:$: -lssl -lssh:' \
- Makefile || die "adding ssl"
- fi
-
- if use gtk ; then
- cd hydra-gtk && \
- econf || die "econf failed"
- fi
-}
-
-src_compile() {
- tc-export CC
- emake || die "make failed"
- if use gtk ; then
- cd hydra-gtk && \
- emake || die "emake hydra-gtk failed"
- fi
-}
-
-src_install() {
- dobin hydra pw-inspector || die "dobin failed"
- if use gtk ; then
- dobin hydra-gtk/src/xhydra || die "gtk"
- fi
- dodoc CHANGES README TODO
-}