diff options
Diffstat (limited to 'net-analyzer/mbrowse/mbrowse-0.3.1.ebuild')
-rw-r--r-- | net-analyzer/mbrowse/mbrowse-0.3.1.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/net-analyzer/mbrowse/mbrowse-0.3.1.ebuild b/net-analyzer/mbrowse/mbrowse-0.3.1.ebuild new file mode 100644 index 000000000000..6c29a237824c --- /dev/null +++ b/net-analyzer/mbrowse/mbrowse-0.3.1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mbrowse/mbrowse-0.3.1.ebuild,v 1.1 2004/02/10 18:54:23 anti Exp $ + +DESCRIPTION="MBrowse is a graphical MIB browser" +HOMEPAGE="http://www.kill-9.org/mbrowse/index.html" +SRC_URI="http://www.kill-9.org/mbrowse/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +DEPEND="virtual/snmp + >=x11-libs/gtk+-1.2.10" + +S=${WORKDIR}/${P} + +src_compile() { + ./configure \ + --host=${CHOST} \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man || die "./configure failed" + + emake || die +} + +src_install() { + make DESTDIR=${D} install || die + + dodoc AUTHORS README ChangeLog +} |