summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Roovers <jer@gentoo.org>2014-03-23 14:38:39 +0000
committerJeroen Roovers <jer@gentoo.org>2014-03-23 14:38:39 +0000
commit7d544bb824c077f87b4d5a76899caea7aef8053a (patch)
treef7f6d47ab7f477bed610824115ec0d6f1eccb900 /net-analyzer/mtr
parentOld. (diff)
downloadgentoo-2-7d544bb824c077f87b4d5a76899caea7aef8053a.tar.gz
gentoo-2-7d544bb824c077f87b4d5a76899caea7aef8053a.tar.bz2
gentoo-2-7d544bb824c077f87b4d5a76899caea7aef8053a.zip
Old.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Diffstat (limited to 'net-analyzer/mtr')
-rw-r--r--net-analyzer/mtr/ChangeLog6
-rw-r--r--net-analyzer/mtr/files/0.82-tinfo.patch30
-rw-r--r--net-analyzer/mtr/mtr-0.82.ebuild56
3 files changed, 5 insertions, 87 deletions
diff --git a/net-analyzer/mtr/ChangeLog b/net-analyzer/mtr/ChangeLog
index 6301ff500da8..5a5ef064614d 100644
--- a/net-analyzer/mtr/ChangeLog
+++ b/net-analyzer/mtr/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-analyzer/mtr
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mtr/ChangeLog,v 1.153 2014/01/26 17:12:09 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mtr/ChangeLog,v 1.154 2014/03/23 14:38:39 jer Exp $
+
+ 23 Mar 2014; Jeroen Roovers <jer@gentoo.org> -files/0.82-tinfo.patch,
+ -mtr-0.82.ebuild:
+ Old.
26 Jan 2014; Ulrich Müller <ulm@gentoo.org> mtr-0.85_p20140126.ebuild:
Fix SRC_URI.
diff --git a/net-analyzer/mtr/files/0.82-tinfo.patch b/net-analyzer/mtr/files/0.82-tinfo.patch
deleted file mode 100644
index 2f367d214c6a..000000000000
--- a/net-analyzer/mtr/files/0.82-tinfo.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From b87e312cba8cd1ea8b08fd33fba86cc19fcafb1b Mon Sep 17 00:00:00 2001
-Message-Id: <b87e312cba8cd1ea8b08fd33fba86cc19fcafb1b.1367758397.git.jlec@gentoo.org>
-From: Justin Lecher <jlec@gentoo.org>
-Date: Sun, 5 May 2013 14:51:01 +0200
-Subject: [PATCH] Detect tgetent in libtinfo
-
-For linux when build ncurses with --with-termlib you get libtinfo.so by
-default.
-This patch extends detection of tgetent to libtinfo
-
-Signed-off-by: Justin Lecher <jlec@gentoo.org>
----
- configure.ac | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/configure.ac b/configure.ac
-index ebcb993..5bcc545 100644
---- a/configure.in
-+++ b/configure.in
-@@ -24,6 +24,7 @@ AC_CHECK_HEADERS(socket.h sys/socket.h sys/xti.h arpa/nameser_compat.h)
- # We have to trust the linker not to mess things up... (It should not
- # pull in anything if we don't refer to anything in the lib).
- AC_CHECK_LIB(termcap, tgetent)
-+AC_CHECK_LIB(tinfo, tgetent)
-
- AC_CHECK_FUNC(initscr, ,
- AC_CHECK_LIB(ncurses, initscr, ,
---
-1.8.2.1
-
diff --git a/net-analyzer/mtr/mtr-0.82.ebuild b/net-analyzer/mtr/mtr-0.82.ebuild
deleted file mode 100644
index 13b7bbad1de1..000000000000
--- a/net-analyzer/mtr/mtr-0.82.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mtr/mtr-0.82.ebuild,v 1.13 2013/07/11 14:24:55 jer Exp $
-
-EAPI="4"
-
-inherit eutils autotools flag-o-matic
-
-DESCRIPTION="My TraceRoute, an Excellent network diagnostic tool"
-HOMEPAGE="http://www.bitwizard.nl/mtr/"
-SRC_URI="ftp://ftp.bitwizard.nl/mtr/${P}.tar.gz
- mirror://gentoo/gtk-2.0-for-mtr.m4.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
-IUSE="gtk ipv6 suid"
-
-RDEPEND="
- sys-libs/ncurses
- gtk? ( x11-libs/gtk+:2 )"
-DEPEND="${RDEPEND}
- gtk? ( virtual/pkgconfig )"
-
-src_prepare() {
- epatch \
- "${FILESDIR}"/0.80-impl-dec.patch \
- "${FILESDIR}"/${PV}-tinfo.patch
-
- # Keep this comment and following mv, even in case ebuild does not need
- # it: kept gtk-2.0.m4 in SRC_URI but you'll have to mv it before autoreconf
- mv "${WORKDIR}"/gtk-2.0-for-mtr.m4 gtk-2.0.m4 #222909
- AT_M4DIR="." eautoreconf
-}
-src_configure() {
- # In the source's configure script -lresolv is commented out. Apparently it
- # is needed for 64bit macos still.
- [[ ${CHOST} == *-darwin* ]] && append-libs -lresolv
- econf \
- $(use_with gtk) \
- $(use_enable ipv6)
-}
-
-src_install() {
- emake DESTDIR="${D}" install
- dodoc AUTHORS FORMATS NEWS README SECURITY TODO
-
- if use !prefix ; then
- fowners root:0 /usr/sbin/mtr
- if use suid; then
- fperms 4711 /usr/sbin/mtr
- else
- fperms 0710 /usr/sbin/mtr
- fi
- fi
-}