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-misc/regex-markup: ChangeLog regex-markup-0.10.0.ebuild
Date: Wed, 20 Jun 2012 12:23:34
Message-Id: 20120620122319.0A6F52004C@flycatcher.gentoo.org
1 jlec 12/06/20 12:23:18
2
3 Modified: ChangeLog regex-markup-0.10.0.ebuild
4 Log:
5 app-misc/regex-markup: Fix missing declerations, #240044; bump EAPI=4; add missing configure options
6
7 (Portage version: 2.2.0_alpha110/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.15 app-misc/regex-markup/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/regex-markup/ChangeLog?rev=1.15&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/regex-markup/ChangeLog?rev=1.15&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/regex-markup/ChangeLog?r1=1.14&r2=1.15
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-misc/regex-markup/ChangeLog,v
19 retrieving revision 1.14
20 retrieving revision 1.15
21 diff -u -r1.14 -r1.15
22 --- ChangeLog 11 May 2008 14:01:15 -0000 1.14
23 +++ ChangeLog 20 Jun 2012 12:23:18 -0000 1.15
24 @@ -1,6 +1,10 @@
25 # ChangeLog for app-misc/regex-markup
26 -# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-misc/regex-markup/ChangeLog,v 1.14 2008/05/11 14:01:15 maekke Exp $
28 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/app-misc/regex-markup/ChangeLog,v 1.15 2012/06/20 12:23:18 jlec Exp $
30 +
31 + 20 Jun 2012; Justin Lecher <jlec@g.o> regex-markup-0.10.0.ebuild,
32 + +files/regex-markup-0.10.0-locale.patch:
33 + Fix missing declerations, #240044; bump EAPI=4; add missing configure options
34
35 11 May 2008; Markus Meier <maekke@g.o> -regex-markup-0.9.0.ebuild:
36 old
37
38
39
40 1.4 app-misc/regex-markup/regex-markup-0.10.0.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/regex-markup/regex-markup-0.10.0.ebuild?rev=1.4&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/regex-markup/regex-markup-0.10.0.ebuild?rev=1.4&content-type=text/plain
44 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/regex-markup/regex-markup-0.10.0.ebuild?r1=1.3&r2=1.4
45
46 Index: regex-markup-0.10.0.ebuild
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/app-misc/regex-markup/regex-markup-0.10.0.ebuild,v
49 retrieving revision 1.3
50 retrieving revision 1.4
51 diff -u -r1.3 -r1.4
52 --- regex-markup-0.10.0.ebuild 11 May 2008 14:00:00 -0000 1.3
53 +++ regex-markup-0.10.0.ebuild 20 Jun 2012 12:23:18 -0000 1.4
54 @@ -1,6 +1,10 @@
55 -# Copyright 1999-2008 Gentoo Foundation
56 +# Copyright 1999-2012 Gentoo Foundation
57 # Distributed under the terms of the GNU General Public License v2
58 -# $Header: /var/cvsroot/gentoo-x86/app-misc/regex-markup/regex-markup-0.10.0.ebuild,v 1.3 2008/05/11 14:00:00 maekke Exp $
59 +# $Header: /var/cvsroot/gentoo-x86/app-misc/regex-markup/regex-markup-0.10.0.ebuild,v 1.4 2012/06/20 12:23:18 jlec Exp $
60 +
61 +EAPI=4
62 +
63 +inherit eutils
64
65 DESCRIPTION="A tool to color syslog files as well"
66 HOMEPAGE="http://www.nongnu.org/regex-markup/"
67 @@ -9,16 +13,22 @@
68 LICENSE="GPL-2"
69 SLOT="0"
70 KEYWORDS="amd64 ppc x86"
71 -IUSE="examples"
72 +IUSE="examples nls"
73
74 -DEPEND=""
75 +src_prepare() {
76 + epatch "${FILESDIR}"/${P}-locale.patch
77 +}
78 +
79 +src_configure() {
80 + econf \
81 + --enable-largefile \
82 + $(use_enable nls)
83 +}
84
85 src_install() {
86 - make DESTDIR="${D}" install || die "make install failed"
87 + default
88 if use examples; then
89 cd examples
90 - make -f Makefile
91 - cd ..
92 + emake -f Makefile
93 fi
94 - dodoc AUTHORS ChangeLog NEWS README TODO
95 }