summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcelo Góes <vanquirius@gentoo.org>2005-09-09 02:31:27 +0000
committerMarcelo Góes <vanquirius@gentoo.org>2005-09-09 02:31:27 +0000
commitbf42c8dd714d4cda1b5387562f526391340f94b6 (patch)
treef5f9682b86fd261ac094d1d932c81f87aebb7fb8 /net-analyzer/braa/braa-0.8-r1.ebuild
parent2.12 release vbump (diff)
downloadgentoo-2-bf42c8dd714d4cda1b5387562f526391340f94b6.tar.gz
gentoo-2-bf42c8dd714d4cda1b5387562f526391340f94b6.tar.bz2
gentoo-2-bf42c8dd714d4cda1b5387562f526391340f94b6.zip
add patch to fix hardcoded Makefile stuff and a warning
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'net-analyzer/braa/braa-0.8-r1.ebuild')
-rw-r--r--net-analyzer/braa/braa-0.8-r1.ebuild30
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
+}