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.6.ebuild
Date: Sun, 28 Feb 2010 11:16:02
Message-Id: E1Nlh7v-00069F-ET@stork.gentoo.org
1 jlec 10/02/28 11:15:59
2
3 Modified: ChangeLog
4 Added: multitail-5.2.6.ebuild
5 Log:
6 Version Bump, per 304987
7 (Portage version: 2.2_rc63/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.72 app-text/multitail/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/multitail/ChangeLog?rev=1.72&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/multitail/ChangeLog?rev=1.72&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/multitail/ChangeLog?r1=1.71&r2=1.72
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-text/multitail/ChangeLog,v
19 retrieving revision 1.71
20 retrieving revision 1.72
21 diff -u -r1.71 -r1.72
22 --- ChangeLog 3 Feb 2010 21:47:59 -0000 1.71
23 +++ ChangeLog 28 Feb 2010 11:15:58 -0000 1.72
24 @@ -1,6 +1,12 @@
25 # ChangeLog for app-text/multitail
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-text/multitail/ChangeLog,v 1.71 2010/02/03 21:47:59 jlec Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-text/multitail/ChangeLog,v 1.72 2010/02/28 11:15:58 jlec Exp $
29 +
30 +*multitail-5.2.6 (28 Feb 2010)
31 +
32 + 28 Feb 2010; Justin Lecher (jlec) <jlec@g.o>
33 + +multitail-5.2.6.ebuild:
34 + Version Bump, per 304987
35
36 *multitail-5.2.2-r1 (03 Feb 2010)
37
38
39
40
41 1.1 app-text/multitail/multitail-5.2.6.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/multitail/multitail-5.2.6.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/multitail/multitail-5.2.6.ebuild?rev=1.1&content-type=text/plain
45
46 Index: multitail-5.2.6.ebuild
47 ===================================================================
48 # Copyright 1999-2010 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.6.ebuild,v 1.1 2010/02/28 11:15:58 jlec Exp $
51
52 EAPI="2"
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"
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
72 src_configure() {
73 tc-export CC
74 use debug && append-flags "-D_DEBUG"
75 }
76
77 src_install () {
78 dobin multitail || die
79
80 insinto /etc
81 doins multitail.conf || die
82
83 dodoc Changes readme.txt thanks.txt || die
84 doman multitail.1 || die
85
86 if use examples; then
87 docinto examples
88 dodoc colors-example.{pl,sh} convert-{geoip,simple}.pl || die
89 fi
90
91 if use doc; then
92 dohtml manual.html || die
93 fi
94 }