summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'net-analyzer/cheops-ng/cheops-ng-0.2.2.ebuild')
-rw-r--r--net-analyzer/cheops-ng/cheops-ng-0.2.2.ebuild44
1 files changed, 0 insertions, 44 deletions
diff --git a/net-analyzer/cheops-ng/cheops-ng-0.2.2.ebuild b/net-analyzer/cheops-ng/cheops-ng-0.2.2.ebuild
deleted file mode 100644
index 186dc29e5959..000000000000
--- a/net-analyzer/cheops-ng/cheops-ng-0.2.2.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# 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.4 2005/11/05 21:38:56 vanquirius 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
-}