Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-wm/afterstep: afterstep-2.2.9.ebuild ChangeLog
Date: Sat, 26 Jun 2010 17:04:15
Message-Id: 20100626170412.2B8C52CF7C@corvid.gentoo.org
1 ssuominen 10/06/26 17:04:12
2
3 Modified: afterstep-2.2.9.ebuild ChangeLog
4 Log:
5 Force -j1 for src_compile and remove hardcoded -O3 optimization from libAfterBase and Image.
6 (Portage version: 2.2_rc67/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.12 x11-wm/afterstep/afterstep-2.2.9.ebuild
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/afterstep/afterstep-2.2.9.ebuild?rev=1.12&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/afterstep/afterstep-2.2.9.ebuild?rev=1.12&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/afterstep/afterstep-2.2.9.ebuild?r1=1.11&r2=1.12
14
15 Index: afterstep-2.2.9.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/x11-wm/afterstep/afterstep-2.2.9.ebuild,v
18 retrieving revision 1.11
19 retrieving revision 1.12
20 diff -u -r1.11 -r1.12
21 --- afterstep-2.2.9.ebuild 26 Jun 2010 16:23:39 -0000 1.11
22 +++ afterstep-2.2.9.ebuild 26 Jun 2010 17:04:11 -0000 1.12
23 @@ -1,6 +1,6 @@
24 # Copyright 1999-2010 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/afterstep/afterstep-2.2.9.ebuild,v 1.11 2010/06/26 16:23:39 ssuominen Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/x11-wm/afterstep/afterstep-2.2.9.ebuild,v 1.12 2010/06/26 17:04:11 ssuominen Exp $
28
29 EAPI=2
30 inherit autotools flag-o-matic eutils
31 @@ -47,17 +47,28 @@
32 "${FILESDIR}"/${P}-make_session_data_file.patch \
33 "${FILESDIR}"/${P}-alpha.patch
34
35 - # Do not strip binaries, bug #252119
36 - sed -e "/STRIP_BINARIES/s/-s//" \
37 - -i autoconf/configure.in || die "strip sed failed"
38 - # Do not use bundled libungif, bug #253259
39 - sed -e '/--with-builtin-gif/s/$with_gif/no/' \
40 - -i autoconf/configure.in || die "bundled gif sed failed"
41 + sed -i \
42 + -e '/CFLAGS="-O3"/d' \
43 + libAfter{Base,Image}/configure || die
44 +
45 + sed -i \
46 + -e "/STRIP_BINARIES/s/-s//" \
47 + autoconf/configure.in || die #252119
48 +
49 + sed -i \
50 + -e '/--with-builtin-gif/s/$with_gif/no/' \
51 + autoconf/configure.in || die #253259
52
53 - cd "${S}"/autoconf || die "cd autoconf failed"
54 + cd "${S}"/autoconf || die
55 eautoreconf
56 - cp "${S}"/autoconf/autoconf/config.h.in "${S}"/autoconf || die "cp failed"
57 - cp "${S}"/autoconf/configure "${S}" || die "cp failed"
58 + cp "${S}"/autoconf/autoconf/config.h.in "${S}"/autoconf || die
59 + cp "${S}"/autoconf/configure "${S}" || die
60 +}
61 +
62 +src_compile() {
63 + # gcc: ../libAfterConf/libAfterConf.a: No such file or directory
64 + # make[1]: *** [PrintDesktopEntries] Error 1
65 + emake -j1 || die
66 }
67
68 src_configure() {
69
70
71
72 1.93 x11-wm/afterstep/ChangeLog
73
74 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/afterstep/ChangeLog?rev=1.93&view=markup
75 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/afterstep/ChangeLog?rev=1.93&content-type=text/plain
76 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/afterstep/ChangeLog?r1=1.92&r2=1.93
77
78 Index: ChangeLog
79 ===================================================================
80 RCS file: /var/cvsroot/gentoo-x86/x11-wm/afterstep/ChangeLog,v
81 retrieving revision 1.92
82 retrieving revision 1.93
83 diff -u -r1.92 -r1.93
84 --- ChangeLog 26 Jun 2010 16:23:39 -0000 1.92
85 +++ ChangeLog 26 Jun 2010 17:04:11 -0000 1.93
86 @@ -1,6 +1,11 @@
87 # ChangeLog for x11-wm/afterstep
88 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
89 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/afterstep/ChangeLog,v 1.92 2010/06/26 16:23:39 ssuominen Exp $
90 +# $Header: /var/cvsroot/gentoo-x86/x11-wm/afterstep/ChangeLog,v 1.93 2010/06/26 17:04:11 ssuominen Exp $
91 +
92 + 26 Jun 2010; Samuli Suominen <ssuominen@g.o>
93 + afterstep-2.2.9.ebuild:
94 + Force -j1 for src_compile and remove hardcoded -O3 optimization from
95 + libAfterBase and Image.
96
97 26 Jun 2010; Samuli Suominen <ssuominen@g.o>
98 afterstep-2.2.9.ebuild, +files/afterstep-2.2.9-alpha.patch: