diff options
author | Martin Holzer <mholzer@gentoo.org> | 2003-07-28 19:26:45 +0000 |
---|---|---|
committer | Martin Holzer <mholzer@gentoo.org> | 2003-07-28 19:26:45 +0000 |
commit | 5893b3f575846ab8bea44dbdda4a5abf1bbe2a33 (patch) | |
tree | 07a9d3f9fcbf0b90f432b60a5dd47b45d533d839 /net-misc/iperf | |
parent | add sec-policy category (diff) | |
download | historical-5893b3f575846ab8bea44dbdda4a5abf1bbe2a33.tar.gz historical-5893b3f575846ab8bea44dbdda4a5abf1bbe2a33.tar.bz2 historical-5893b3f575846ab8bea44dbdda4a5abf1bbe2a33.zip |
*** empty log message ***
Diffstat (limited to 'net-misc/iperf')
-rw-r--r-- | net-misc/iperf/ChangeLog | 5 | ||||
-rw-r--r-- | net-misc/iperf/Manifest | 4 | ||||
-rw-r--r-- | net-misc/iperf/iperf-1.6.3.ebuild | 25 |
3 files changed, 10 insertions, 24 deletions
diff --git a/net-misc/iperf/ChangeLog b/net-misc/iperf/ChangeLog index ab2247b6d7c1..a6fb2647a5bc 100644 --- a/net-misc/iperf/ChangeLog +++ b/net-misc/iperf/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-misc/iperf # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/iperf/ChangeLog,v 1.3 2003/02/12 08:24:39 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/iperf/ChangeLog,v 1.4 2003/07/28 19:26:25 mholzer Exp $ + + 28 Jul 2003; Martin Holzer <mholzer@gentoo.org> iperf-1.6.3.ebuild: + Fixing install dir. *iperf-1.6.3 (14 Nov 2002) diff --git a/net-misc/iperf/Manifest b/net-misc/iperf/Manifest index aa9b574eee99..0376123bc108 100644 --- a/net-misc/iperf/Manifest +++ b/net-misc/iperf/Manifest @@ -1,4 +1,4 @@ +MD5 0155cab4c75db86b0bb4d226bc749ac7 ChangeLog 542 +MD5 19315c6b7d97d53bb3716416a9b3e12c iperf-1.6.3.ebuild 967 MD5 be314f0a657bc788fe5b85b080aff184 files/digest-iperf-1.6.3 70 MD5 198b4a24a6f5f6fc1a7629d446384961 files/iperf-1.6.3-Makefile-gentoo.diff 760 -MD5 eb8c8bba9c0a02015bde4becfb5cb0a3 iperf-1.6.3.ebuild 1574 -MD5 ac7bdbab0466367958eb7c431824ade3 ChangeLog 448 diff --git a/net-misc/iperf/iperf-1.6.3.ebuild b/net-misc/iperf/iperf-1.6.3.ebuild index 69e0e8d3cb78..80a7ed392dc3 100644 --- a/net-misc/iperf/iperf-1.6.3.ebuild +++ b/net-misc/iperf/iperf-1.6.3.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Maintainer: Martin Holzer <mholzer@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/net-misc/iperf/iperf-1.6.3.ebuild,v 1.3 2003/07/13 14:31:36 aliz Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/iperf/iperf-1.6.3.ebuild,v 1.4 2003/07/28 19:26:25 mholzer Exp $ # This ebuild was generated by Ebuilder v0.4. @@ -16,36 +16,19 @@ LICENSE="GPL-2" KEYWORDS="x86" src_unpack() { - unpack "${P}-source.tar.gz" + unpack ${A} cd "${S}" patch -p0 < ${FILESDIR}/${P}-Makefile-gentoo.diff } src_compile() { - # emake (previously known as pmake) is a script that calls the - # standard GNU make with parallel building options for speedier - # builds (especially on SMP systems). Try emake first. It might - # not work for some packages, in which case you'll have to resort - # to normal "make". - cd cfg + cd cfg econf || die cd .. emake || die } src_install () { - #make DESTDIR=${D} install || die - make INSTALL_DIR=${D}/usr install || die - # If the above installs anything outside of DESTDIR, try the following. - #make \ - # prefix=${D}/usr \ - # mandir=${D}/usr/share/man \ - # infodir=${D}/usr/share/info \ - # install || die - #(cd src ; make install) - #(cd jsrc ; make install) - - # Install documentation. + make INSTALL_DIR=${D}/usr/bin install || die dodoc INSTALL README VERSION } - |