* [gentoo-commits] gentoo-x86 commit in net-analyzer/hydra: hydra-7.0.ebuild metadata.xml ChangeLog
@ 2011-09-14 5:49 Jeroen Roovers (jer)
0 siblings, 0 replies; only message in thread
From: Jeroen Roovers (jer) @ 2011-09-14 5:49 UTC (permalink / raw
To: gentoo-commits
jer 11/09/14 05:49:26
Modified: metadata.xml ChangeLog
Added: hydra-7.0.ebuild
Log:
Version bump. Add many dependencies already used, and USE flags to go with them.
(Portage version: 2.2.0_alpha55/cvs/Linux x86_64)
Revision Changes Path
1.2 net-analyzer/hydra/metadata.xml
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/hydra/metadata.xml?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/hydra/metadata.xml?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/hydra/metadata.xml?r1=1.1&r2=1.2
Index: metadata.xml
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/hydra/metadata.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- metadata.xml 10 Jul 2004 12:21:17 -0000 1.1
+++ metadata.xml 14 Sep 2011 05:49:26 -0000 1.2
@@ -3,4 +3,5 @@
<pkgmetadata>
<herd>netmon</herd>
<longdescription>Advanced parallized login hacker</longdescription>
+<use><flag name="ncp">NCP protocol (NetWare) support through <pkg>net-fs/ncpfs</pkg></flag></use>
</pkgmetadata>
1.63 net-analyzer/hydra/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/hydra/ChangeLog?rev=1.63&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/hydra/ChangeLog?rev=1.63&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/hydra/ChangeLog?r1=1.62&r2=1.63
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/hydra/ChangeLog,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -r1.62 -r1.63
--- ChangeLog 15 Aug 2011 10:20:45 -0000 1.62
+++ ChangeLog 14 Sep 2011 05:49:26 -0000 1.63
@@ -1,6 +1,12 @@
# 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.62 2011/08/15 10:20:45 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/hydra/ChangeLog,v 1.63 2011/09/14 05:49:26 jer Exp $
+
+*hydra-7.0 (14 Sep 2011)
+
+ 14 Sep 2011; Jeroen Roovers <jer@gentoo.org> +hydra-7.0.ebuild, metadata.xml:
+ Version bump. Add many dependencies already used, and USE flags to go with
+ them.
15 Aug 2011; Jeroen Roovers <jer@gentoo.org> -hydra-5.9.ebuild,
-hydra-6.0.ebuild:
1.1 net-analyzer/hydra/hydra-7.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/hydra/hydra-7.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/hydra/hydra-7.0.ebuild?rev=1.1&content-type=text/plain
Index: hydra-7.0.ebuild
===================================================================
# 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-7.0.ebuild,v 1.1 2011/09/14 05:49:26 jer Exp $
EAPI="4"
inherit eutils 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="firebird gtk idn mysql ncp oracle pcre postgres ssl subversion"
RDEPEND="
dev-libs/openssl
firebird? ( dev-db/firebird )
gtk? (
dev-libs/atk
dev-libs/glib:2
x11-libs/gdk-pixbuf:2
x11-libs/gtk+:2
)
idn? ( net-dns/libidn )
mysql? ( dev-db/mysql )
ncp? ( net-fs/ncpfs )
oracle? ( dev-db/oracle-instantclient-basic )
pcre? ( dev-libs/libpcre )
postgres? ( dev-db/postgresql-base )
ssl? ( >=net-libs/libssh-0.4.0 )
subversion? ( dev-vcs/subversion )
"
DEPEND="
${RDEPEND}
dev-util/pkgconfig
"
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:=:=-DLIBOPENSSLNEW -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
if use gtk ; then
cd hydra-gtk && \
emake
fi
}
src_install() {
dobin hydra pw-inspector
if use gtk ; then
dobin hydra-gtk/src/xhydra
fi
dodoc CHANGES README
}
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2011-09-14 5:49 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-09-14 5:49 [gentoo-commits] gentoo-x86 commit in net-analyzer/hydra: hydra-7.0.ebuild metadata.xml ChangeLog Jeroen Roovers (jer)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox