diff options
author | Fabian Groffen <grobian@gentoo.org> | 2011-08-29 17:55:48 +0000 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2011-08-29 17:55:48 +0000 |
commit | e7af73b3d2c4f4ac064c6d219cb64449db0a6b71 (patch) | |
tree | 44960b2a2cd46aabb54b96fe7a18f5b117909cd4 /net-analyzer/mtr | |
parent | Bump testing release to 0.99.3. Various bug fixes and new per-port volumes. W... (diff) | |
download | gentoo-2-e7af73b3d2c4f4ac064c6d219cb64449db0a6b71.tar.gz gentoo-2-e7af73b3d2c4f4ac064c6d219cb64449db0a6b71.tar.bz2 gentoo-2-e7af73b3d2c4f4ac064c6d219cb64449db0a6b71.zip |
Generalise Darwin fix, bug #361807
(Portage version: 2.2.01.19074-prefix/cvs/Darwin i386)
Diffstat (limited to 'net-analyzer/mtr')
-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) |