summaryrefslogtreecommitdiff
blob: 7950c6fe90189332458d8f4a680dc2a29bbb2309 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# 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.0.ebuild,v 1.2 2005/05/14 15:13:45 vanquirius Exp $

inherit eutils

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="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 COPYING README NEWS ReleaseNotes doc/*.txt
}