diff options
author | Daniel Ahlberg <aliz@gentoo.org> | 2002-08-26 11:03:55 +0000 |
---|---|---|
committer | Daniel Ahlberg <aliz@gentoo.org> | 2002-08-26 11:03:55 +0000 |
commit | ce2d10ab224accf70539ecdf1acaa131b2c9c491 (patch) | |
tree | e85824d137297214c15c065958f9abb70bcda4ec /net-analyzer/mtr | |
parent | replace the old fix with a very very simple 1-line one (diff) | |
download | gentoo-2-ce2d10ab224accf70539ecdf1acaa131b2c9c491.tar.gz gentoo-2-ce2d10ab224accf70539ecdf1acaa131b2c9c491.tar.bz2 gentoo-2-ce2d10ab224accf70539ecdf1acaa131b2c9c491.zip |
Closes #6521.
Diffstat (limited to 'net-analyzer/mtr')
-rw-r--r-- | net-analyzer/mtr/ChangeLog | 8 | ||||
-rw-r--r-- | net-analyzer/mtr/mtr-0.49-r1.ebuild | 9 |
2 files changed, 12 insertions, 5 deletions
diff --git a/net-analyzer/mtr/ChangeLog b/net-analyzer/mtr/ChangeLog index 9ab02e330511..e8d2e356c761 100644 --- a/net-analyzer/mtr/ChangeLog +++ b/net-analyzer/mtr/ChangeLog @@ -1,12 +1,16 @@ # ChangeLog for net-analyzer/mtr # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mtr/ChangeLog,v 1.1 2002/06/28 11:54:12 bangert Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mtr/ChangeLog,v 1.2 2002/08/26 11:03:55 aliz Exp $ 28 Jun 2002; Thilo Bangert <bangert@gentoo.org> : moved to net-analyzer *mtr-0.49-r1 (3 May 2002) - + + 26 Aug 2002; Daniel Ahlberg <aliz@gentoo.org> mtr-0.49-r1 : + Moves binary from /usr/sbin to /usr/bin. Closes #6521. + Submitted by Hannes Mehnert <hannes@mehnert.org>. + 3 May 2002; Donny Davies <woodchip@gentoo.org> : Added LICENSE, SLOT. diff --git a/net-analyzer/mtr/mtr-0.49-r1.ebuild b/net-analyzer/mtr/mtr-0.49-r1.ebuild index 99fb6ea4aac4..b0567872f79d 100644 --- a/net-analyzer/mtr/mtr-0.49-r1.ebuild +++ b/net-analyzer/mtr/mtr-0.49-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mtr/mtr-0.49-r1.ebuild,v 1.3 2002/08/14 12:12:12 murphy Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mtr/mtr-0.49-r1.ebuild,v 1.4 2002/08/26 11:03:55 aliz Exp $ S=${WORKDIR}/${P} DESCRIPTION="Matt's TraceRoute. Excellent network diagnostic tool." @@ -18,8 +18,11 @@ src_compile() { local myconf use gtk || myconf="${myconf} --without-gtk" - ./configure --host=${HOST} --prefix=/usr \ + ./configure \ + --host=${HOST} \ + --prefix=/usr \ --mandir=/usr/share/man \ + --sbindir=/usr/bin \ $myconf || die make || die @@ -28,7 +31,7 @@ src_compile() { src_install() { # this binary is universal. ie: it does both console and gtk. - make prefix=${D}/usr mandir=${D}/usr/share/man install || die + make prefix=${D}/usr mandir=${D}/usr/share/man sbindir=${D}/usr/bin install || die dodoc AUTHORS COPYING ChangeLog FORMATS NEWS README SECURITY TODO } |