Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-misc/apertium: ChangeLog apertium-3.1.0.ebuild
Date: Sun, 23 Aug 2009 12:25:54
Message-Id: E1MfC8u-00027Q-0j@stork.gentoo.org
1 flameeyes 09/08/23 12:25:52
2
3 Modified: ChangeLog apertium-3.1.0.ebuild
4 Log:
5 Use -j1 for make (bug #282425).
6 (Portage version: 2.2_rc39/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.3 sci-misc/apertium/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-misc/apertium/ChangeLog?rev=1.3&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-misc/apertium/ChangeLog?rev=1.3&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-misc/apertium/ChangeLog?r1=1.2&r2=1.3
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/sci-misc/apertium/ChangeLog,v
18 retrieving revision 1.2
19 retrieving revision 1.3
20 diff -u -r1.2 -r1.3
21 --- ChangeLog 20 Mar 2009 20:20:22 -0000 1.2
22 +++ ChangeLog 23 Aug 2009 12:25:51 -0000 1.3
23 @@ -1,6 +1,10 @@
24 # ChangeLog for sci-misc/apertium
25 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/sci-misc/apertium/ChangeLog,v 1.2 2009/03/20 20:20:22 jmbsvicetto Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/sci-misc/apertium/ChangeLog,v 1.3 2009/08/23 12:25:51 flameeyes Exp $
28 +
29 + 23 Aug 2009; Diego E. Pettenò <flameeyes@g.o>
30 + apertium-3.1.0.ebuild:
31 + Use -j1 for make (bug #282425).
32
33 20 Mar 2009; Jorge Manuel B. S. Vicetto <jmbsvicetto@g.o>
34 metadata.xml:
35
36
37
38 1.3 sci-misc/apertium/apertium-3.1.0.ebuild
39
40 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-misc/apertium/apertium-3.1.0.ebuild?rev=1.3&view=markup
41 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-misc/apertium/apertium-3.1.0.ebuild?rev=1.3&content-type=text/plain
42 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-misc/apertium/apertium-3.1.0.ebuild?r1=1.2&r2=1.3
43
44 Index: apertium-3.1.0.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/sci-misc/apertium/apertium-3.1.0.ebuild,v
47 retrieving revision 1.2
48 retrieving revision 1.3
49 diff -u -r1.2 -r1.3
50 --- apertium-3.1.0.ebuild 31 Dec 2008 03:42:04 -0000 1.2
51 +++ apertium-3.1.0.ebuild 23 Aug 2009 12:25:51 -0000 1.3
52 @@ -1,6 +1,6 @@
53 -# Copyright 1999-2008 Gentoo Foundation
54 +# Copyright 1999-2009 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/sci-misc/apertium/apertium-3.1.0.ebuild,v 1.2 2008/12/31 03:42:04 mr_bones_ Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/sci-misc/apertium/apertium-3.1.0.ebuild,v 1.3 2009/08/23 12:25:51 flameeyes Exp $
58
59 DESCRIPTION="Apertium - An open-source shallow-transfer machine Translation engine and toolbox"
60 HOMEPAGE="http://apertium.sourceforge.net/"
61 @@ -13,6 +13,11 @@
62 sci-misc/lttoolbox"
63 RDEPEND="$DEPEND"
64
65 +src_compile() {
66 + econf || die "econf failed"
67 + emake -j1 || die "emake failed"
68 +}
69 +
70 src_install() {
71 emake install DESTDIR="${D}" || die "emake install failed"
72 dodoc README-MODES README AUTHORS ChangeLog || die "failed"