Gentoo Archives: gentoo-commits

From: "PaweA Hajdan (phajdan.jr)" <phajdan.jr@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-crypt/rotix: ChangeLog rotix-0.83.ebuild
Date: Mon, 22 Feb 2010 18:37:05
Message-Id: E1Njd9T-0007RZ-3V@stork.gentoo.org
1 phajdan.jr 10/02/22 18:37:03
2
3 Modified: ChangeLog rotix-0.83.ebuild
4 Log:
5 Make the gettext dependency required, wrt bug #232897 by mduft.
6 (Portage version: 2.1.7.16/cvs/Linux i686)
7
8 Revision Changes Path
9 1.12 app-crypt/rotix/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/rotix/ChangeLog?rev=1.12&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/rotix/ChangeLog?rev=1.12&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/rotix/ChangeLog?r1=1.11&r2=1.12
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/app-crypt/rotix/ChangeLog,v
18 retrieving revision 1.11
19 retrieving revision 1.12
20 diff -u -r1.11 -r1.12
21 --- ChangeLog 14 Oct 2009 00:58:35 -0000 1.11
22 +++ ChangeLog 22 Feb 2010 18:37:02 -0000 1.12
23 @@ -1,6 +1,9 @@
24 # ChangeLog for app-crypt/rotix
25 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/rotix/ChangeLog,v 1.11 2009/10/14 00:58:35 halcy0n Exp $
27 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/rotix/ChangeLog,v 1.12 2010/02/22 18:37:02 phajdan.jr Exp $
29 +
30 + 22 Feb 2010; Pawel Hajdan jr <phajdan.jr@g.o> rotix-0.83.ebuild:
31 + Make the gettext dependency required, wrt bug #232897 by mduft.
32
33 14 Oct 2009; Mark Loeser <halcy0n@g.o> rotix-0.83.ebuild:
34 QA fixes; unquoted variables
35
36
37
38 1.14 app-crypt/rotix/rotix-0.83.ebuild
39
40 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/rotix/rotix-0.83.ebuild?rev=1.14&view=markup
41 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/rotix/rotix-0.83.ebuild?rev=1.14&content-type=text/plain
42 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/rotix/rotix-0.83.ebuild?r1=1.13&r2=1.14
43
44 Index: rotix-0.83.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/app-crypt/rotix/rotix-0.83.ebuild,v
47 retrieving revision 1.13
48 retrieving revision 1.14
49 diff -u -r1.13 -r1.14
50 --- rotix-0.83.ebuild 14 Oct 2009 00:58:35 -0000 1.13
51 +++ rotix-0.83.ebuild 22 Feb 2010 18:37:02 -0000 1.14
52 @@ -1,6 +1,6 @@
53 -# Copyright 1999-2009 Gentoo Foundation
54 +# Copyright 1999-2010 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/rotix/rotix-0.83.ebuild,v 1.13 2009/10/14 00:58:35 halcy0n Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/rotix/rotix-0.83.ebuild,v 1.14 2010/02/22 18:37:02 phajdan.jr Exp $
58
59 inherit eutils
60
61 @@ -11,9 +11,10 @@
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="x86 ppc amd64 ia64"
65 -IUSE="nls"
66 +IUSE=""
67
68 -RDEPEND="nls? ( sys-devel/gettext )"
69 +DEPEND="sys-devel/gettext"
70 +RDEPEND="${DEPEND}"
71
72 src_unpack() {
73 unpack ${A}
74 @@ -22,9 +23,7 @@
75 }
76
77 src_compile() {
78 - local myconf
79 - use nls && myconf="--i18n=1"
80 - econf ${myconf} || die
81 + econf --i18n=1
82 emake || die
83 }