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: multitail-5.2.2-r1.ebuild ChangeLog
Date: Wed, 03 Feb 2010 21:48:09
Message-Id: E1Ncn4p-0002tQ-OH@stork.gentoo.org
1 jlec 10/02/03 21:47:59
2
3 Modified: ChangeLog
4 Added: multitail-5.2.2-r1.ebuild
5 Log:
6 Adding as-needed patch, fixing 274700, thanks idl0r and Gef Lebster for
7 providing patches
8 (Portage version: 2.2_rc62/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.71 app-text/multitail/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/multitail/ChangeLog?rev=1.71&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/multitail/ChangeLog?rev=1.71&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/multitail/ChangeLog?r1=1.70&r2=1.71
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-text/multitail/ChangeLog,v
20 retrieving revision 1.70
21 retrieving revision 1.71
22 diff -u -r1.70 -r1.71
23 --- ChangeLog 1 Aug 2009 17:49:09 -0000 1.70
24 +++ ChangeLog 3 Feb 2010 21:47:59 -0000 1.71
25 @@ -1,6 +1,13 @@
26 # ChangeLog for app-text/multitail
27 -# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-text/multitail/ChangeLog,v 1.70 2009/08/01 17:49:09 darkside Exp $
29 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-text/multitail/ChangeLog,v 1.71 2010/02/03 21:47:59 jlec Exp $
31 +
32 +*multitail-5.2.2-r1 (03 Feb 2010)
33 +
34 + 03 Feb 2010; Justin Lecher (jlec) <jlec@g.o>
35 + +files/5.2.2-as-needed.patch, +multitail-5.2.2-r1.ebuild:
36 + Adding as-needed patch, fixing 274700, thanks idl0r and Gef Lebster for
37 + providing patches
38
39 01 Aug 2009; Jeremy Olexa <darkside@g.o> -multitail-4.2.0.ebuild,
40 -multitail-5.2.0.ebuild, -multitail-5.2.1.ebuild:
41
42
43
44 1.1 app-text/multitail/multitail-5.2.2-r1.ebuild
45
46 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/multitail/multitail-5.2.2-r1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/multitail/multitail-5.2.2-r1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: multitail-5.2.2-r1.ebuild
50 ===================================================================
51 # Copyright 1999-2010 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/app-text/multitail/multitail-5.2.2-r1.ebuild,v 1.1 2010/02/03 21:47:59 jlec Exp $
54
55 EAPI="2"
56
57 inherit flag-o-matic toolchain-funcs eutils
58
59 DESCRIPTION="Tail with multiple windows"
60 HOMEPAGE="http://www.vanheusden.com/multitail/index.html"
61 SRC_URI="http://www.vanheusden.com/multitail/${P}.tgz"
62
63 LICENSE="GPL-2"
64 SLOT="0"
65 KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~sparc ~x86"
66 IUSE="debug doc examples"
67
68 DEPEND="sys-libs/ncurses"
69 RDEPEND="${DEPEND}"
70
71 src_prepare() {
72 epatch "${FILESDIR}/${PV}-as-needed.patch"
73 }
74
75 src_configure() {
76 tc-export CC
77 use debug && append-flags "-D_DEBUG"
78 }
79
80 src_install () {
81 dobin multitail || die
82
83 insinto /etc
84 doins multitail.conf || die
85
86 dodoc Changes readme.txt thanks.txt || die
87 doman multitail.1 || die
88
89 if use examples; then
90 docinto examples
91 dodoc colors-example.{pl,sh} convert-{geoip,simple}.pl || die
92 fi
93
94 if use doc; then
95 dohtml manual.html || die
96 fi
97 }