netmap: create a graphical map of a network

This commit is contained in:
jensp 2010-07-01 22:04:45 +00:00
parent dcedd549ae
commit 1b225697e1
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,2 @@
DIST netmap-0.1.3.tar.gz 58345 RMD160 acd3f13fa5b705f95d2da592ee4522fc7af07c8f SHA1 93c03d7825bef8062d64278b2384dd34f73bff94 SHA256 c2d8e7289e5955ccb1584f839bf8bb527bf6682564f6ed03a06fc1eee5f1c9b8
EBUILD netmap-0.1.3.ebuild 597 RMD160 c23c1930847aad6eda152b477de59a423b41af31 SHA1 9156afa21c3f40657b892b4fb5de9f0ea7400ecb SHA256 604a2f436d3c9d32ca640bc752039ff98a36140c5d597ecaab9fffb6f93d89ee

View file

@ -0,0 +1,27 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=3
DESCRIPTION="A tool for creating a graphical representation of your network"
HOMEPAGE="http://myoss.belgoline.com/netmap"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
DEPEND=""
RDEPEND="media-gfx/graphviz"
src_prepare() {
sed -i "s|-O|$CXXFLAGS|g" belgolib/Makefile makelist/Makefile netmap/Makefile || die
}
src_install() {
dobin netmap/netmap || die
dobin makelist/makelist || die
dodoc README || die
}