diff options
Diffstat (limited to 'net-analyzer/braa/braa-0.8-r1.ebuild')
-rw-r--r-- | net-analyzer/braa/braa-0.8-r1.ebuild | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/net-analyzer/braa/braa-0.8-r1.ebuild b/net-analyzer/braa/braa-0.8-r1.ebuild new file mode 100644 index 000000000000..0d96a1f3d466 --- /dev/null +++ b/net-analyzer/braa/braa-0.8-r1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/braa/braa-0.8-r1.ebuild,v 1.1 2005/09/09 02:31:27 vanquirius Exp $ + +inherit toolchain-funcs eutils + +DESCRIPTION="Quick and dirty mass SNMP scanner" +HOMEPAGE="http://s-tech.elsat.net.pl/braa/" +SRC_URI="${HOMEPAGE}/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~amd64 ~ppc ~sparc" +IUSE="" + +DEPEND="virtual/libc" + +src_unpack() { + unpack ${A} + epatch ${FILESDIR}/${P}-gentoo.diff +} + +src_compile() { + export CC="$(tc-getCC)" + emake || die +} + +src_install() { + dobin braa + dodoc README +} |