diff options
author | Eldad Zack <eldad@gentoo.org> | 2004-11-21 09:45:56 +0000 |
---|---|---|
committer | Eldad Zack <eldad@gentoo.org> | 2004-11-21 09:45:56 +0000 |
commit | 37fd5ec81aa84dde31ddfa7ea2121944bb837f09 (patch) | |
tree | 1a31162eb3d0c356214906ed3255fad3144d5d77 /net-analyzer | |
parent | ersion bump and cleanout. Ebuild and patches thanks to Philippe Weibel<philip... (diff) | |
download | gentoo-2-37fd5ec81aa84dde31ddfa7ea2121944bb837f09.tar.gz gentoo-2-37fd5ec81aa84dde31ddfa7ea2121944bb837f09.tar.bz2 gentoo-2-37fd5ec81aa84dde31ddfa7ea2121944bb837f09.zip |
Fixed problem with head. Closes #63019.
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/xtraceroute/ChangeLog | 5 | ||||
-rw-r--r-- | net-analyzer/xtraceroute/xtraceroute-0.9.1.ebuild | 6 |
2 files changed, 9 insertions, 2 deletions
diff --git a/net-analyzer/xtraceroute/ChangeLog b/net-analyzer/xtraceroute/ChangeLog index 2170bfb5f4bb..55400c41947d 100644 --- a/net-analyzer/xtraceroute/ChangeLog +++ b/net-analyzer/xtraceroute/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-analyzer/xtraceroute # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/xtraceroute/ChangeLog,v 1.14 2004/07/27 22:22:46 malc Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/xtraceroute/ChangeLog,v 1.15 2004/11/21 09:45:56 eldad Exp $ + + 21 Nov 2004; Eldad Zack <eldad@gentoo.org> xtraceroute-0.9.1.ebuild: + Fixed problem with head. Closes #63019. 27 Jul 2004; <malc@gentoo.org> xtraceroute-0.9.1.ebuild: Add ~amd64, closes bug #57735 diff --git a/net-analyzer/xtraceroute/xtraceroute-0.9.1.ebuild b/net-analyzer/xtraceroute/xtraceroute-0.9.1.ebuild index 78ad41d9bef6..53b646c14aa5 100644 --- a/net-analyzer/xtraceroute/xtraceroute-0.9.1.ebuild +++ b/net-analyzer/xtraceroute/xtraceroute-0.9.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/xtraceroute/xtraceroute-0.9.1.ebuild,v 1.6 2004/07/27 22:22:46 malc Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/xtraceroute/xtraceroute-0.9.1.ebuild,v 1.7 2004/11/21 09:45:56 eldad Exp $ DESCRIPTION="neat graphical traceroute displaying route on the globe" SRC_URI="http://www.dtek.chalmers.se/~d3august/xt/dl/${P}.tar.gz @@ -21,6 +21,10 @@ DEPEND="virtual/x11 net-misc/host" src_compile() { + + # Fix 'head' problem, Bug #63019 (21 Nov 2004 eldad) + sed -i -e 's/head -1/head -n 1/' share/xtraceroute-resolve-location.sh.in + # specify --from-code to fix bug 25395 (01 Aug 2003 agriffis) XGETTEXT='/usr/bin/xgettext --from-code=ISO-8859-1' \ ./configure \ |