diff options
author | Eldad Zack <eldad@gentoo.org> | 2004-10-16 14:29:35 +0000 |
---|---|---|
committer | Eldad Zack <eldad@gentoo.org> | 2004-10-16 14:29:35 +0000 |
commit | f98e2503dfc1785372d911763c35f67b5bf2f31a (patch) | |
tree | 6204816a8a3ad2ac4909c85cbeee2d110ca25e36 /net-analyzer/iftop | |
parent | Stable on amd64. (Manifest recommit) (diff) | |
download | gentoo-2-f98e2503dfc1785372d911763c35f67b5bf2f31a.tar.gz gentoo-2-f98e2503dfc1785372d911763c35f67b5bf2f31a.tar.bz2 gentoo-2-f98e2503dfc1785372d911763c35f67b5bf2f31a.zip |
fixed configure to recognise i386-pc-linux-uclibc in a uclibc env (bug #67660)
Diffstat (limited to 'net-analyzer/iftop')
-rw-r--r-- | net-analyzer/iftop/ChangeLog | 6 | ||||
-rw-r--r-- | net-analyzer/iftop/iftop-0.16.ebuild | 9 |
2 files changed, 13 insertions, 2 deletions
diff --git a/net-analyzer/iftop/ChangeLog b/net-analyzer/iftop/ChangeLog index 11b69176c045..569caeecc431 100644 --- a/net-analyzer/iftop/ChangeLog +++ b/net-analyzer/iftop/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-analyzer/iftop # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/iftop/ChangeLog,v 1.15 2004/09/10 21:58:20 blubb Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/iftop/ChangeLog,v 1.16 2004/10/16 14:29:35 eldad Exp $ + + 16 Oct 2004; Eldad Zack <eldad@gentoo.org> iftop-0.16.ebuild: + fixed configure to recognise i386-pc-linux-uclibc in a uclibc env, as + suggested by koon@gentoo.org (closes #67660) 10 Sep 2004; <blubb@gentoo.org> iftop-0.16.ebuild: added ~amd64 keyword diff --git a/net-analyzer/iftop/iftop-0.16.ebuild b/net-analyzer/iftop/iftop-0.16.ebuild index 56814ed2295b..e14032a6f940 100644 --- a/net-analyzer/iftop/iftop-0.16.ebuild +++ b/net-analyzer/iftop/iftop-0.16.ebuild @@ -1,7 +1,8 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/iftop/iftop-0.16.ebuild,v 1.5 2004/09/10 21:58:20 blubb Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/iftop/iftop-0.16.ebuild,v 1.6 2004/10/16 14:29:35 eldad Exp $ +inherit gnuconfig IUSE="" DESCRIPTION="display bandwidth usage on an interface" @@ -16,8 +17,14 @@ DEPEND="sys-libs/ncurses net-libs/libpcap" +src_unpack() { + unpack ${A} + gnuconfig_update ${S}/config +} + src_compile() { local myconf + myconf="--prefix=/usr" econf ${myconf} || die emake |