Gentoo Archives: gentoo-commits

From: "Andrej Kacian (ticho)" <ticho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/stfl: ChangeLog stfl-0.17.ebuild
Date: Sun, 30 Sep 2007 15:05:16
Message-Id: E1Ic0DU-0002oz-Ac@stork.gentoo.org
1 ticho 07/09/30 14:56:20
2
3 Modified: ChangeLog stfl-0.17.ebuild
4 Log:
5 Added a check for unicode-aware ncurses. Patch by Antti Järvinen <netfiniitti at kapsi.fi> in bug #192897.
6 (Portage version: 2.1.3.7)
7
8 Revision Changes Path
9 1.11 dev-libs/stfl/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/stfl/ChangeLog?rev=1.11&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/stfl/ChangeLog?rev=1.11&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/stfl/ChangeLog?r1=1.10&r2=1.11
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-libs/stfl/ChangeLog,v
18 retrieving revision 1.10
19 retrieving revision 1.11
20 diff -u -r1.10 -r1.11
21 --- ChangeLog 4 Sep 2007 22:42:32 -0000 1.10
22 +++ ChangeLog 30 Sep 2007 14:56:19 -0000 1.11
23 @@ -1,6 +1,10 @@
24 # ChangeLog for dev-libs/stfl
25 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/stfl/ChangeLog,v 1.10 2007/09/04 22:42:32 ticho Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/stfl/ChangeLog,v 1.11 2007/09/30 14:56:19 ticho Exp $
28 +
29 + 30 Sep 2007; Andrej Kacian <ticho@g.o> stfl-0.17.ebuild:
30 + Added a check for unicode-aware ncurses. Patch by Antti Järvinen
31 + <netfiniitti at kapsi.fi> in bug #192897.
32
33 *stfl-0.17 (04 Sep 2007)
34
35
36
37
38 1.2 dev-libs/stfl/stfl-0.17.ebuild
39
40 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/stfl/stfl-0.17.ebuild?rev=1.2&view=markup
41 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/stfl/stfl-0.17.ebuild?rev=1.2&content-type=text/plain
42 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/stfl/stfl-0.17.ebuild?r1=1.1&r2=1.2
43
44 Index: stfl-0.17.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/dev-libs/stfl/stfl-0.17.ebuild,v
47 retrieving revision 1.1
48 retrieving revision 1.2
49 diff -u -r1.1 -r1.2
50 --- stfl-0.17.ebuild 4 Sep 2007 22:42:32 -0000 1.1
51 +++ stfl-0.17.ebuild 30 Sep 2007 14:56:19 -0000 1.2
52 @@ -1,8 +1,8 @@
53 # Copyright 1999-2007 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/stfl/stfl-0.17.ebuild,v 1.1 2007/09/04 22:42:32 ticho Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/stfl/stfl-0.17.ebuild,v 1.2 2007/09/30 14:56:19 ticho Exp $
57
58 -inherit perl-module toolchain-funcs
59 +inherit perl-module toolchain-funcs eutils
60
61 DESCRIPTION="A library which implements a curses-based widget set for text terminals"
62 HOMEPAGE="http://www.clifford.at/stfl/"
63 @@ -42,6 +42,13 @@
64 }
65
66 src_compile() {
67 + if ! built_with_use sys-libs/ncurses unicode ; then
68 + eerror "For this package to compile you must"
69 + eerror "enable unicode use flag for ncurses."
70 + eerror "Please re-emerge ncurses with unicode"
71 + eerror "use flag."
72 + die
73 + fi
74 emake -j1 CC="$(tc-getCC)" || die "make failed"
75 }
76
77
78
79
80 --
81 gentoo-commits@g.o mailing list