# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-analyzer/cheops-ng/cheops-ng-0.2.2.ebuild,v 1.3 2005/10/15 16:15:29 josejx Exp $ DESCRIPTION="Cheops-ng is a Network management tool for mapping and monitoring your network" HOMEPAGE="http://cheops-ng.sourceforge.net/" SRC_URI="mirror://sourceforge/cheops-ng/${P}.tgz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~ppc ~x86" IUSE="debug" DEPEND=">=net-analyzer/nmap-3.27-r1 =x11-libs/gtk+-1.2* >=dev-libs/libxml-1.8.17-r2 >=gnome-base/gnome-libs-1.4.2 >=media-libs/imlib-1.9.14-r1 >=dev-libs/glib-1.2.10-r5 media-libs/libpng" src_compile() { # disable/enable debug if use debug; then sed -i -e 's/^\/\/#define DEBUG/#define DEBUG/g' ./*.c || die "sed failed" sed -i -e 's/^\/\/#define DEBUG/#define DEBUG/g' ./*.h || die "sed failed" else # we need to disable the noisy nmap debug and any other sed -i -e 's/^#define DEBUG/\/\/#define DEBUG/g' ./*.c || die "sed failed" sed -i -e 's/^#define DEBUG/\/\/#define DEBUG/g' ./*.h || die "sed failed" fi # First we need to configure adns cd adns-1.0 econf || die cd .. # Now we configure cheops-ng econf || die emake || die } src_install() { einstall || die dodoc AUTHORS README NEWS ReleaseNotes doc/*.txt }