Gentoo Archives: gentoo-commits

From: "Wulf Krueger (philantrop)" <philantrop@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-text/ispell: ispell-3.3.02.ebuild ChangeLog
Date: Thu, 22 Nov 2007 19:25:55
Message-Id: E1IvHgL-00050V-Gh@stork.gentoo.org
1 philantrop 07/11/22 19:25:49
2
3 Modified: ispell-3.3.02.ebuild ChangeLog
4 Log:
5 Set -j1 to avoid parallel make issues and added a die message. Fixes bug 199931.
6 (Portage version: 2.1.3.19)
7
8 Revision Changes Path
9 1.2 app-text/ispell/ispell-3.3.02.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/ispell/ispell-3.3.02.ebuild?rev=1.2&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/ispell/ispell-3.3.02.ebuild?rev=1.2&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/ispell/ispell-3.3.02.ebuild?r1=1.1&r2=1.2
14
15 Index: ispell-3.3.02.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/app-text/ispell/ispell-3.3.02.ebuild,v
18 retrieving revision 1.1
19 retrieving revision 1.2
20 diff -u -r1.1 -r1.2
21 --- ispell-3.3.02.ebuild 21 Nov 2007 17:21:03 -0000 1.1
22 +++ ispell-3.3.02.ebuild 22 Nov 2007 19:25:48 -0000 1.2
23 @@ -1,6 +1,6 @@
24 # Copyright 1999-2007 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/app-text/ispell/ispell-3.3.02.ebuild,v 1.1 2007/11/21 17:21:03 philantrop Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/app-text/ispell/ispell-3.3.02.ebuild,v 1.2 2007/11/22 19:25:48 philantrop Exp $
28
29 inherit eutils multilib
30
31 @@ -28,7 +28,7 @@
32 }
33
34 src_compile() {
35 - emake config.sh || die
36 + emake -j1 config.sh || die "configuration failed"
37
38 # Fix config.sh to install to ${D}
39 cp -p config.sh config.sh.orig
40 @@ -39,7 +39,7 @@
41 -e "s:^\(MAN45DIR='\)\(.*\):\1${D}\2:" \
42 < config.sh > config.sh.install
43
44 - emake || die "compilation failed"
45 + emake -j1 || die "compilation failed"
46 }
47
48 src_install() {
49 @@ -51,7 +51,7 @@
50 dodir /usr/bin /usr/$(get_libdir)/ispell /usr/share/info \
51 /usr/share/man/man1 /usr/share/man/man5
52
53 - emake install || die "Installation Failed"
54 + emake -j1 install || die "Installation Failed"
55
56 rmdir "${D}"/usr/share/info || die "removing empty info dir failed"
57 dodoc CHANGES Contributors README WISHES || die "installing docs failed"
58
59
60
61 1.33 app-text/ispell/ChangeLog
62
63 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/ispell/ChangeLog?rev=1.33&view=markup
64 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/ispell/ChangeLog?rev=1.33&content-type=text/plain
65 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/ispell/ChangeLog?r1=1.32&r2=1.33
66
67 Index: ChangeLog
68 ===================================================================
69 RCS file: /var/cvsroot/gentoo-x86/app-text/ispell/ChangeLog,v
70 retrieving revision 1.32
71 retrieving revision 1.33
72 diff -u -r1.32 -r1.33
73 --- ChangeLog 21 Nov 2007 17:21:03 -0000 1.32
74 +++ ChangeLog 22 Nov 2007 19:25:48 -0000 1.33
75 @@ -1,6 +1,14 @@
76 # ChangeLog for app-text/ispell
77 # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
78 -# $Header: /var/cvsroot/gentoo-x86/app-text/ispell/ChangeLog,v 1.32 2007/11/21 17:21:03 philantrop Exp $
79 +# $Header: /var/cvsroot/gentoo-x86/app-text/ispell/ChangeLog,v 1.33 2007/11/22 19:25:48 philantrop Exp $
80 +
81 + 22 Nov 2007; Wulf C. Krueger <philantrop@g.o> ispell-3.3.02.ebuild:
82 + Set -j1 to avoid parallel make issues and added a die message. Fixes bug
83 + 199931.
84 +
85 + 22 Nov 2007; Wulf C. Krueger <philantrop@g.o> ispell-3.3.02.ebuild:
86 + Set -j1 to avoid parallel make issues and added a die message. Fixes bug
87 + 199931.
88
89 *ispell-3.3.02 (21 Nov 2007)
90
91
92
93
94 --
95 gentoo-commits@g.o mailing list