diff options
-rw-r--r-- | net-analyzer/mtr/ChangeLog | 5 | ||||
-rw-r--r-- | net-analyzer/mtr/mtr-0.80.ebuild | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/net-analyzer/mtr/ChangeLog b/net-analyzer/mtr/ChangeLog index f3418d4098a9..0d71ad3f05df 100644 --- a/net-analyzer/mtr/ChangeLog +++ b/net-analyzer/mtr/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-analyzer/mtr # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mtr/ChangeLog,v 1.106 2011/07/15 15:20:25 xarthisius Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mtr/ChangeLog,v 1.107 2011/08/29 17:55:48 grobian Exp $ + + 29 Aug 2011; Fabian Groffen <grobian@gentoo.org> mtr-0.80.ebuild: + Generalise Darwin fix, bug #361807 15 Jul 2011; Kacper Kowalik <xarthisius@gentoo.org> mtr-0.80.ebuild: ppc/ppc64 stable wrt #362609 diff --git a/net-analyzer/mtr/mtr-0.80.ebuild b/net-analyzer/mtr/mtr-0.80.ebuild index 9d03e9117ddc..34ee389aeddf 100644 --- a/net-analyzer/mtr/mtr-0.80.ebuild +++ b/net-analyzer/mtr/mtr-0.80.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mtr/mtr-0.80.ebuild,v 1.8 2011/07/15 15:20:25 xarthisius Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mtr/mtr-0.80.ebuild,v 1.9 2011/08/29 17:55:48 grobian Exp $ EAPI="4" @@ -34,7 +34,7 @@ src_prepare() { src_configure() { # In the source's configure script -lresolv is commented out. Apparently it # is needed for 64bit macos still. - use x64-macos && append-libs -lresolv + [[ ${CHOST} == *-darwin* ]] && append-libs -lresolv econf \ $(use_with gtk) \ $(use_enable ipv6) |