diff options
author | Martin Holzer <mholzer@gentoo.org> | 2003-01-02 16:40:43 +0000 |
---|---|---|
committer | Martin Holzer <mholzer@gentoo.org> | 2003-01-02 16:40:43 +0000 |
commit | da43925565662199f4a379ca209ac790fdd45c65 (patch) | |
tree | 36a025b79632bdc6f84cbb167182b1ed3e94e0e0 /net-analyzer | |
parent | Changed to epatch. (diff) | |
download | historical-da43925565662199f4a379ca209ac790fdd45c65.tar.gz historical-da43925565662199f4a379ca209ac790fdd45c65.tar.bz2 historical-da43925565662199f4a379ca209ac790fdd45c65.zip |
Version bump.
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/mtr/ChangeLog | 8 | ||||
-rw-r--r-- | net-analyzer/mtr/files/digest-mtr-0.52 | 1 | ||||
-rw-r--r-- | net-analyzer/mtr/mtr-0.52.ebuild | 39 |
3 files changed, 46 insertions, 2 deletions
diff --git a/net-analyzer/mtr/ChangeLog b/net-analyzer/mtr/ChangeLog index 90f0eff08932..1e03a286867e 100644 --- a/net-analyzer/mtr/ChangeLog +++ b/net-analyzer/mtr/ChangeLog @@ -1,8 +1,12 @@ # 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.5 2002/12/13 10:59:47 blizzy Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mtr/ChangeLog,v 1.6 2003/01/02 16:40:43 mholzer Exp $ - 06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords + +*mtr-0.52 (02 Jan 2002) + + 02 Jan 2002; Martin Holzer <mholzer@gentoo.org> mtr-0.52.ebuild files/digest-mtr-0.52 ChangeLog : + Version bump. Closes #12598. *mtr-0.51 (05 Nov 2002) diff --git a/net-analyzer/mtr/files/digest-mtr-0.52 b/net-analyzer/mtr/files/digest-mtr-0.52 new file mode 100644 index 000000000000..52bf3eb68d34 --- /dev/null +++ b/net-analyzer/mtr/files/digest-mtr-0.52 @@ -0,0 +1 @@ +MD5 b0b4f8b9bbb946c5e19429aa4b62bb2f mtr-0.52.tar.gz 88492 diff --git a/net-analyzer/mtr/mtr-0.52.ebuild b/net-analyzer/mtr/mtr-0.52.ebuild new file mode 100644 index 000000000000..65cb863329f0 --- /dev/null +++ b/net-analyzer/mtr/mtr-0.52.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mtr/mtr-0.52.ebuild,v 1.1 2003/01/02 16:40:43 mholzer Exp $ + +IUSE="gtk" + +S=${WORKDIR}/${P} +DESCRIPTION="Matt's TraceRoute. Excellent network diagnostic tool." +SRC_URI="ftp://ftp.bitwizard.nl/mtr/${P}.tar.gz" +HOMEPAGE="http://www.bitwizard.nl/mtr/" + +DEPEND=">=sys-libs/ncurses-5.2 + gtk? ( =x11-libs/gtk+-1.2* )" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 ~ppc ~sparc" + +src_compile() { + local myconf + use gtk || myconf="${myconf} --without-gtk" + + ./configure \ + --host=${HOST} \ + --prefix=/usr \ + --mandir=/usr/share/man \ + --sbindir=/usr/bin \ + $myconf || die + + make || die +} + +src_install() { + # this binary is universal. ie: it does both console and gtk. + + make prefix=${D}/usr mandir=${D}/usr/share/man sbindir=${D}/usr/bin install || die + + dodoc AUTHORS COPYING ChangeLog FORMATS NEWS README SECURITY TODO +} |