diff options
author | Marcelo Góes <vanquirius@gentoo.org> | 2006-01-12 23:45:44 +0000 |
---|---|---|
committer | Marcelo Góes <vanquirius@gentoo.org> | 2006-01-12 23:45:44 +0000 |
commit | f1cfbab9bc13045277c5e05ba3756eb95af998f1 (patch) | |
tree | 0158906d0135ef6e5e959aacb31222a33734361e /net-analyzer/fe3d/fe3d-0.8.3.ebuild | |
parent | pkgmove gnome-extra/libgtkhtml gnome-extra/gtkhtml (diff) | |
download | gentoo-2-f1cfbab9bc13045277c5e05ba3756eb95af998f1.tar.gz gentoo-2-f1cfbab9bc13045277c5e05ba3756eb95af998f1.tar.bz2 gentoo-2-f1cfbab9bc13045277c5e05ba3756eb95af998f1.zip |
Initial commit for bug 117817.
(Portage version: 2.0.53)
Diffstat (limited to 'net-analyzer/fe3d/fe3d-0.8.3.ebuild')
-rw-r--r-- | net-analyzer/fe3d/fe3d-0.8.3.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/net-analyzer/fe3d/fe3d-0.8.3.ebuild b/net-analyzer/fe3d/fe3d-0.8.3.ebuild new file mode 100644 index 000000000000..92707714d575 --- /dev/null +++ b/net-analyzer/fe3d/fe3d-0.8.3.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fe3d/fe3d-0.8.3.ebuild,v 1.1 2006/01/12 23:45:44 vanquirius Exp $ + +inherit versionator + +MY_P="${PN}-$(replace_version_separator 2 '-')" + +DESCRIPTION="A 3D visualization tool for network security information" +HOMEPAGE="http://projects.icapsid.net/fe3d/" +SRC_URI="http://projects.icapsid.net/${PN}/src/${MY_P}.src.zip" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +DEPEND="media-libs/libsdl + media-libs/sdl-ttf + media-libs/libpng + >=dev-libs/xerces-c-2.5.0" + +S="${WORKDIR}/${PN}" + +src_unpack() { + unpack ${A} + chmod +x "${S}"/configure || die "chmod failed" +} + +src_install() { + make DESTDIR="${D}" install || die "make install failed" + dodoc doc/{ChangeLog,versions}.txt +} + +pkg_postinst() { + einfo "Example using a nmap log:" + einfo "/usr/bin/nmap -oX test.xml -O --osscan_limit 192.168.0.0/24" + einfo "/usr/bin/fe3d test.xml" +} |