diff options
author | Thilo Bangert <bangert@gentoo.org> | 2002-06-28 11:54:12 +0000 |
---|---|---|
committer | Thilo Bangert <bangert@gentoo.org> | 2002-06-28 11:54:12 +0000 |
commit | 51193a79fa88f5eab19efb25824fd86408698657 (patch) | |
tree | ff468f7f0381c9ae5eae540f69813dc4d8ba6429 /net-analyzer/nload | |
parent | small fix0rs (diff) | |
download | gentoo-2-51193a79fa88f5eab19efb25824fd86408698657.tar.gz gentoo-2-51193a79fa88f5eab19efb25824fd86408698657.tar.bz2 gentoo-2-51193a79fa88f5eab19efb25824fd86408698657.zip |
moving 13 packages from net-misc to net-analyzer - import
Diffstat (limited to 'net-analyzer/nload')
-rw-r--r-- | net-analyzer/nload/ChangeLog | 23 | ||||
-rw-r--r-- | net-analyzer/nload/files/digest-nload-0.4.0 | 1 | ||||
-rw-r--r-- | net-analyzer/nload/nload-0.4.0.ebuild | 30 |
3 files changed, 54 insertions, 0 deletions
diff --git a/net-analyzer/nload/ChangeLog b/net-analyzer/nload/ChangeLog new file mode 100644 index 000000000000..2bbed3cdc67b --- /dev/null +++ b/net-analyzer/nload/ChangeLog @@ -0,0 +1,23 @@ +# ChangeLog for net-analyzer/nload +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nload/ChangeLog,v 1.1 2002/06/28 11:54:12 bangert Exp $ + + 28 Jun 2002; Thilo Bangert <bangert@gentoo.org> : + moved to net-analyzer - added SLOT + +*nload-0.4.0 (14 Jun 2002) + + 14 Jun 2002; Kyle Manna <nitro@gentoo.org> nload-0.4.0.ebuild : + + Verion bump, ebuild update. + + +*nload-0.3.0 (1 Feb 2002) + + 1 Feb 2002; G.Bevin <gbevin@gentoo.org> ChangeLog : + + Added initial ChangeLog which should be updated whenever the package is + updated in any way. This changelog is targetted to users. This means that the + comments should well explained and written in clean English. The details about + writing correct changelogs are explained in the skel.ChangeLog file which you + can find in the root directory of the portage repository. diff --git a/net-analyzer/nload/files/digest-nload-0.4.0 b/net-analyzer/nload/files/digest-nload-0.4.0 new file mode 100644 index 000000000000..a81df8c94b5b --- /dev/null +++ b/net-analyzer/nload/files/digest-nload-0.4.0 @@ -0,0 +1 @@ +MD5 a2d3607263f9d63883b90c03a3b7b2b1 nload-0.4.0.tar.gz 69570 diff --git a/net-analyzer/nload/nload-0.4.0.ebuild b/net-analyzer/nload/nload-0.4.0.ebuild new file mode 100644 index 000000000000..8bfef9f5a7dd --- /dev/null +++ b/net-analyzer/nload/nload-0.4.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2001 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nload/nload-0.4.0.ebuild,v 1.1 2002/06/28 11:54:12 bangert Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="console application which monitors network traffic and bandwidth usage in real time" +SRC_URI="mirror://sourceforge/nload/${P}.tar.gz" +HOMEPAGE="http://roland-riegel.de/nload/index_en.html" + +LICENSE="GPL-2" +SLOT="0" + +DEPEND="" +#RDEPEND="" + +src_compile() { + ./configure \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + --host=${CHOST} || die "./configure failed" + + emake || die "compile failed" +} + +src_install () { + make DESTDIR=${D} install + dodoc README INSTALL ChangeLog AUTHORS +} + |