summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEldad Zack <eldad@gentoo.org>2004-10-27 08:41:14 +0000
committerEldad Zack <eldad@gentoo.org>2004-10-27 08:41:14 +0000
commit285e4990c3763b208f1c5b109bb546c60e7c329b (patch)
treebd121d48abfb86ba11702eba9ba86b4435e58573 /net-analyzer
parentFixed bug #68901. (Manifest recommit) (diff)
downloadgentoo-2-285e4990c3763b208f1c5b109bb546c60e7c329b.tar.gz
gentoo-2-285e4990c3763b208f1c5b109bb546c60e7c329b.tar.bz2
gentoo-2-285e4990c3763b208f1c5b109bb546c60e7c329b.zip
Removed dep on ncurses since intop was removed at 3.0.
Diffstat (limited to 'net-analyzer')
-rw-r--r--net-analyzer/ntop/ChangeLog5
-rw-r--r--net-analyzer/ntop/ntop-3.0.ebuild15
2 files changed, 14 insertions, 6 deletions
diff --git a/net-analyzer/ntop/ChangeLog b/net-analyzer/ntop/ChangeLog
index 8ff01d46dfd8..06a62d7c94d0 100644
--- a/net-analyzer/ntop/ChangeLog
+++ b/net-analyzer/ntop/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-analyzer/ntop
# Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ntop/ChangeLog,v 1.30 2004/09/26 04:07:27 tgall Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ntop/ChangeLog,v 1.31 2004/10/27 08:41:14 eldad Exp $
+
+ 27 Oct 2004; Eldad Zack <eldad@gentoo.org> ntop-3.0.ebuild:
+ Removed dep on ncurses since intop was removed at 3.0.
25 Sep 2004; Tom Gall <tgall@gentoo.org> ntop-3.0.ebuild:
added ~ppc64, bug #64101
diff --git a/net-analyzer/ntop/ntop-3.0.ebuild b/net-analyzer/ntop/ntop-3.0.ebuild
index 39aefe0a588b..e3169dc059a0 100644
--- a/net-analyzer/ntop/ntop-3.0.ebuild
+++ b/net-analyzer/ntop/ntop-3.0.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ntop/ntop-3.0.ebuild,v 1.14 2004/10/04 22:57:27 pvdabeel Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ntop/ntop-3.0.ebuild,v 1.15 2004/10/27 08:41:14 eldad Exp $
inherit gnuconfig
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/ntop/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc sparc hppa ~amd64 ~ppc64"
-IUSE="ssl readline tcpd ncurses"
+IUSE="ssl readline tcpd"
DEPEND=">=sys-libs/gdbm-1.8.0
>=net-libs/libpcap-0.5.2
@@ -19,8 +19,7 @@ DEPEND=">=sys-libs/gdbm-1.8.0
>=media-libs/libpng-1.2.5
tcpd? ( >=sys-apps/tcp-wrappers-7.6-r4 )
ssl? ( >=dev-libs/openssl-0.9.6 )
- readline? ( >=sys-libs/readline-4.1 )
- ncurses? ( sys-libs/ncurses )"
+ readline? ( >=sys-libs/readline-4.1 )"
src_unpack() {
unpack ${A}
@@ -34,7 +33,6 @@ src_compile() {
use readline || myconf="${myconf} --without-readline"
use tcpd || myconf="${myconf} --with-tcpwrap"
use ssl || myconf="${myconf} --without-ssl"
- use ncurses || myconf="${myconf} --without-curses"
econf ${myconf} || die "configure problem"
make || die "compile problem"
@@ -59,3 +57,10 @@ src_install() {
exeinto /etc/init.d ; newexe ${FILESDIR}/ntop-init ntop
insinto /etc/conf.d ; newins ${FILESDIR}/ntop-confd ntop
}
+
+pkg_postinst() {
+
+ einfo "Notice that intop was removed upstream as of 3.0."
+
+}
+