Portage is a package management system used by Gentoo Linux
# ChangeLog for net-analyzer/fe3d
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fe3d/ChangeLog,v 1.9 2008/03/02 18:06:49 pva Exp $
*fe3d-0.11_p77 (02 Mar 2008)
02 Mar 2008;
Version bump, bug #167645. Thank Gero Mudersbach for report. Upstream did
not released tarball so this version is based on svn.
26 Jan 2008;
Fixed compilation problem, bug 205543, thank Compile Person
01 May 2007; Marius Mauch
Replacing einfo with elog
31 Oct 2006; Markus Ullmann
Fixing dep wrt bug #153251
04 Jul 2006; Jon Hood
Add ~amd64, bug #138915.
25 Mar 2006; Bryan Østergaard
20 Mar 2006; Mark Loeser
Add DEPEND on app-arch/unzip
25 Feb 2006; Marcelo Goes
Mark 0.8.3 x86 stable.
*fe3d-0.8.3 (12 Jan 2006)
12 Jan 2006; Marcelo Goes
+fe3d-0.8.3.ebuild:
Initial commit for bug 117817. Thanks to Adrian Fruehwirth (bonki)
DIST fe3d-0.8-3.src.zip 1082108 RMD160 eadcc8c7c79472b1795b42c93f99a1fde86d83cb SHA1 fc0b3d3ce443e9547f12599f4dcb46c94eb7eb13 SHA256 66eac0719a6c17245e3db20978d11c325c88f3ea72b38d73309a41e4df87e624
EBUILD fe3d-0.11_p77.ebuild 1356 RMD160 1f2aff824263268dee0ef4122a41186d3cf6e05e SHA1 9226fcb1814a7700b650b12d5effe0b2892893a7 SHA256 861233647f65bce6899ada95c93d8d543cb4872373c7e7f10c571c07d2433f53
EBUILD fe3d-0.8.3.ebuild 1215 RMD160 4d05ecb754331cb4e5498192573972511cb2aac5 SHA1 cf7639cc68783bc014b2124b961f349b33609b2e SHA256 1d3fba18afa6f958f9164dc34f9c68a90908a1e06abaf561f691b4487b5d332b
MISC ChangeLog 1404 RMD160 d524303450dbe5b0d487e4fb8b655113202efda4 SHA1 136f9a72582dd1f869a63f10d5ddc302342e2832 SHA256 4b29395f0bd5e7078ba813bdb089e739a046900d84b5beead2d15fe4f8b311b8
MISC metadata.xml 257 RMD160 31a33f71ad088fc55f06494ce46f4278383bb012 SHA1 909146c787ae6f940d598fa431d6d3c2dbcbf594 SHA256 1cfcb15424f420e1604498f361a397b5f45a29da83a51808a6a0c14a9cabe219
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fe3d/fe3d-0.11_p77.ebuild,v 1.1 2008/03/02 18:06:49 pva Exp $
EAPI=1
WX_GTK_VER="2.8"
inherit eutils wxwidgets
if [[ "${PV}" =~ (_p)([0-9]+) ]] ; then
inherit subversion
SRC_URI=""
FE3D_REV=${BASH_REMATCH[2]}
ESVN_REPO_URI="http://svn.icapsid.net/fe3d/fe3d/branches/fe3d_0.11/@${FE3D_REV}"
else
SRC_URI="mirror://sourceforge/${PN}/${P}-src.tar.bz2"
fi
DESCRIPTION="A 3D visualization tool for network security information"
HOMEPAGE="http://projects.icapsid.net/fe3d/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~x86"
IUSE=""
RDEPEND="x11-libs/wxGTK:2.8
>=dev-libs/xerces-c-2.7
net-analyzer/nmap"
DEPEND="${RDEPEND}"
S=${WORKDIR}/${PN}_${PV}
pkg_setup() {
check_wxuse opengl
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
dodoc AUTHORS doc/{ChangeLog,README}.txt
}
pkg_postinst() {
ewarn "This package has known issues:"
ewarn "1. The radius of the geometry nodes is wrong, causing overlap"
ewarn "2. Earth (and other) textures are upside down"
ewarn "3. This package contains some minor memory leaks"
echo
elog "Example using a nmap log:"
elog "/usr/bin/nmap -oX test.xml -O --osscan_limit 192.168.0.0/24"
elog "/usr/bin/fe3d test.xml"
}
# Copyright 1999-2008 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.8 2008/01/26 11:14:30 pva Exp $
inherit versionator autotools
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="~alpha ~amd64 x86"
IUSE=""
RDEPEND="media-libs/libsdl
media-libs/sdl-ttf
media-libs/libpng
>=dev-libs/xerces-c-2.5.0"
DEPEND="${RDEPEND}
app-arch/unzip
virtual/opengl"
S=${WORKDIR}/${PN}
src_unpack() {
unpack ${A}
cd "${S}"
# configure is not executable, remove it as autoreconf recreate it
rm configure
# autoreconf is required as in other case build system will call wrong
# automake utilities, bug 205543
eautoreconf
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
dodoc doc/{ChangeLog,versions}.txt
}
pkg_postinst() {
elog "Example using a nmap log:"
elog "/usr/bin/nmap -oX test.xml -O --osscan_limit 192.168.0.0/24"
elog "/usr/bin/fe3d test.xml"
}