Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-text/multitail: multitail-5.2.9.ebuild ChangeLog
Date: Sat, 31 Dec 2011 20:55:16
Message-Id: 20111231205507.1EE3E2004B@flycatcher.gentoo.org
1 radhermit 11/12/31 20:55:07
2
3 Modified: ChangeLog
4 Added: multitail-5.2.9.ebuild
5 Log:
6 Version bump. Update to EAPI 4.
7
8 (Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.86 app-text/multitail/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/multitail/ChangeLog?rev=1.86&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/multitail/ChangeLog?rev=1.86&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/multitail/ChangeLog?r1=1.85&r2=1.86
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-text/multitail/ChangeLog,v
20 retrieving revision 1.85
21 retrieving revision 1.86
22 diff -u -r1.85 -r1.86
23 --- ChangeLog 25 Aug 2011 12:04:49 -0000 1.85
24 +++ ChangeLog 31 Dec 2011 20:55:07 -0000 1.86
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-text/multitail
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-text/multitail/ChangeLog,v 1.85 2011/08/25 12:04:49 jer Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-text/multitail/ChangeLog,v 1.86 2011/12/31 20:55:07 radhermit Exp $
30 +
31 +*multitail-5.2.9 (31 Dec 2011)
32 +
33 + 31 Dec 2011; Tim Harder <radhermit@g.o> +multitail-5.2.9.ebuild:
34 + Version bump. Update to EAPI 4.
35
36 25 Aug 2011; Jeroen Roovers <jer@g.o> multitail-5.2.8.ebuild:
37 Stable for HPPA (bug #352986).
38
39
40
41 1.1 app-text/multitail/multitail-5.2.9.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/multitail/multitail-5.2.9.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/multitail/multitail-5.2.9.ebuild?rev=1.1&content-type=text/plain
45
46 Index: multitail-5.2.9.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-text/multitail/multitail-5.2.9.ebuild,v 1.1 2011/12/31 20:55:07 radhermit Exp $
51
52 EAPI="4"
53
54 inherit flag-o-matic toolchain-funcs eutils
55
56 DESCRIPTION="Tail with multiple windows"
57 HOMEPAGE="http://www.vanheusden.com/multitail/index.html"
58 SRC_URI="http://www.vanheusden.com/multitail/${P}.tgz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~sparc ~x86 ~x86-interix ~amd64-linux ~x86-linux"
63 IUSE="debug doc examples"
64
65 DEPEND="sys-libs/ncurses"
66 RDEPEND="${DEPEND}"
67
68 src_prepare() {
69 epatch \
70 "${FILESDIR}"/5.2.2-as-needed.patch \
71 "${FILESDIR}"/5.2.6-buffer-overflow.patch
72
73 use x86-interix && epatch "${FILESDIR}"/${PN}-5.2.6-interix.patch
74 }
75
76 src_configure() {
77 tc-export CC
78 use debug && append-flags "-D_DEBUG"
79 use prefix && sed "s:DESTDIR=/:DESTDIR=${EROOT}:g" -i Makefile
80 }
81
82 src_install () {
83 dobin multitail
84
85 insinto /etc
86 doins multitail.conf
87
88 dodoc Changes readme.txt thanks.txt
89 doman multitail.1
90
91 if use examples; then
92 docinto examples
93 dodoc colors-example.{pl,sh} convert-{geoip,simple}.pl
94 fi
95
96 if use doc; then
97 dohtml manual.html
98 fi
99 }