diff --git a/net-analyzer/thc-pptp-bruter/Manifest b/net-analyzer/thc-pptp-bruter/Manifest new file mode 100644 index 000000000..2fec33e5a --- /dev/null +++ b/net-analyzer/thc-pptp-bruter/Manifest @@ -0,0 +1,2 @@ +DIST thc-pptp-bruter-0.1.4.tar.gz 65746 RMD160 1b4afe5aa9dfe51166dd314b2d0f90d0f8d811a5 SHA1 49df076ba0dce8dec58ec9c9a42143cbe6df9182 SHA256 df789676b97406214d3f18c744dabd3769182428365ecdcc8a0a6ddcde3b6f2d +EBUILD thc-pptp-bruter-0.1.4.ebuild 578 RMD160 9e870892dfd35dc86b26762c4f4da1f93eafb4f3 SHA1 d59f0206e5178a2b4523ba97890545a147affc7b SHA256 8995a8b4fcc8739d6ddea9bd10bd26de6a5876e65ab0f88aaa9c0c1f74cae625 diff --git a/net-analyzer/thc-pptp-bruter/thc-pptp-bruter-0.1.4.ebuild b/net-analyzer/thc-pptp-bruter/thc-pptp-bruter-0.1.4.ebuild new file mode 100644 index 000000000..12258381b --- /dev/null +++ b/net-analyzer/thc-pptp-bruter/thc-pptp-bruter-0.1.4.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI="2" + +DESCRIPTION="a brute force program that works against pptp vpn endpoints" +HOMEPAGE="http://www.thc.org" +SRC_URI="http://packetstormsecurity.org/groups/thc/$P.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +DEPEND="${RDEPEND}" +RDEPEND="dev-libs/openssl" + +S="${WORKDIR}"/${P/thc/THC} + +src_prepare() { + sed -i "s|-O2|$CFLAGS|g" configure || die "sed failed" +} + +src_install() { + dobin src/$PN || die "install failed" + dodoc README TODO +}