Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-text/multitail: ChangeLog multitail-5.2.12.ebuild
Date: Mon, 25 Feb 2013 13:52:34
Message-Id: 20130225135229.D51552171D@flycatcher.gentoo.org
1 jlec 13/02/25 13:52:29
2
3 Modified: ChangeLog
4 Added: multitail-5.2.12.ebuild
5 Log:
6 app-text/multitail: Version Bump
7
8 (Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key 70EB7916)
9
10 Revision Changes Path
11 1.94 app-text/multitail/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/multitail/ChangeLog?rev=1.94&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/multitail/ChangeLog?rev=1.94&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/multitail/ChangeLog?r1=1.93&r2=1.94
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-text/multitail/ChangeLog,v
20 retrieving revision 1.93
21 retrieving revision 1.94
22 diff -u -r1.93 -r1.94
23 --- ChangeLog 14 Jan 2013 07:12:27 -0000 1.93
24 +++ ChangeLog 25 Feb 2013 13:52:29 -0000 1.94
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-text/multitail
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-text/multitail/ChangeLog,v 1.93 2013/01/14 07:12:27 jlec Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-text/multitail/ChangeLog,v 1.94 2013/02/25 13:52:29 jlec Exp $
30 +
31 +*multitail-5.2.12 (25 Feb 2013)
32 +
33 + 25 Feb 2013; Justin Lecher <jlec@g.o> +multitail-5.2.12.ebuild:
34 + Version Bump
35
36 *multitail-5.2.11 (14 Jan 2013)
37
38
39
40
41 1.1 app-text/multitail/multitail-5.2.12.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/multitail/multitail-5.2.12.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/multitail/multitail-5.2.12.ebuild?rev=1.1&content-type=text/plain
45
46 Index: multitail-5.2.12.ebuild
47 ===================================================================
48 # Copyright 1999-2013 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.12.ebuild,v 1.1 2013/02/25 13:52:29 jlec Exp $
51
52 EAPI=5
53
54 inherit eutils flag-o-matic toolchain-funcs
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 "${FILESDIR}"/5.2.2-as-needed.patch
70
71 use x86-interix && epatch "${FILESDIR}"/${PN}-5.2.6-interix.patch
72
73 sed -e '/gcc/d' -i Makefile || die
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 use doc && dohtml manual.html
92
93 docinto examples
94 use examples && dodoc colors-example.{pl,sh} convert-{geoip,simple}.pl
95 }