Gentoo Archives: gentoo-commits

From: "Bernard Cafarelli (voyageur)" <voyageur@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-plugins/wmxres: wmxres-1.2.ebuild ChangeLog
Date: Tue, 03 Jul 2012 14:16:09
Message-Id: 20120703141554.2C2682004B@flycatcher.gentoo.org
1 voyageur 12/07/03 14:15:54
2
3 Modified: wmxres-1.2.ebuild ChangeLog
4 Log:
5 Clean over-enthusiastic sed call, bug #424141. Ebuild cleanup and EAPI bump
6
7 (Portage version: 2.2.0_alpha115/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.10 x11-plugins/wmxres/wmxres-1.2.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmxres/wmxres-1.2.ebuild?rev=1.10&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmxres/wmxres-1.2.ebuild?rev=1.10&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmxres/wmxres-1.2.ebuild?r1=1.9&r2=1.10
15
16 Index: wmxres-1.2.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-plugins/wmxres/wmxres-1.2.ebuild,v
19 retrieving revision 1.9
20 retrieving revision 1.10
21 diff -u -r1.9 -r1.10
22 --- wmxres-1.2.ebuild 5 Oct 2010 20:29:16 -0000 1.9
23 +++ wmxres-1.2.ebuild 3 Jul 2012 14:15:54 -0000 1.10
24 @@ -1,7 +1,8 @@
25 -# Copyright 1999-2010 Gentoo Foundation
26 +# Copyright 1999-2012 Gentoo Foundation
27 # Distributed under the terms of the GNU General Public License v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmxres/wmxres-1.2.ebuild,v 1.9 2010/10/05 20:29:16 voyageur Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmxres/wmxres-1.2.ebuild,v 1.10 2012/07/03 14:15:54 voyageur Exp $
30
31 +EAPI=4
32 inherit eutils multilib toolchain-funcs
33
34 DESCRIPTION="Dock application to select your display mode among those possible"
35 @@ -24,17 +25,15 @@
36
37 S=${WORKDIR}/${PN}.app
38
39 -src_unpack() {
40 - unpack ${A}
41 - cd "${S}"
42 +src_prepare() {
43 epatch "${FILESDIR}"/${PN}-debian-1.1-1.2.patch
44 sed -e "s:-g -c -O2:${CFLAGS} -c:" \
45 - -e "s:cc:$(tc-getCC) \$(LDFLAGS):g" -i Makefile
46 + -e "s:\tcc :\t $(tc-getCC) \$(LDFLAGS) :g" \
47 + -i Makefile || die "sed failed"
48 }
49
50 src_compile() {
51 - emake INCDIR="-I/usr/include" \
52 - LIBDIR="-L/usr/$(get_libdir)" || die "emake failed."
53 + emake INCDIR="-I/usr/include" LIBDIR="-L/usr/$(get_libdir)"
54 }
55
56 src_install() {
57
58
59
60 1.10 x11-plugins/wmxres/ChangeLog
61
62 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmxres/ChangeLog?rev=1.10&view=markup
63 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmxres/ChangeLog?rev=1.10&content-type=text/plain
64 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmxres/ChangeLog?r1=1.9&r2=1.10
65
66 Index: ChangeLog
67 ===================================================================
68 RCS file: /var/cvsroot/gentoo-x86/x11-plugins/wmxres/ChangeLog,v
69 retrieving revision 1.9
70 retrieving revision 1.10
71 diff -u -r1.9 -r1.10
72 --- ChangeLog 5 Oct 2010 20:29:16 -0000 1.9
73 +++ ChangeLog 3 Jul 2012 14:15:54 -0000 1.10
74 @@ -1,6 +1,9 @@
75 # ChangeLog for x11-plugins/wmxres
76 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
77 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmxres/ChangeLog,v 1.9 2010/10/05 20:29:16 voyageur Exp $
78 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
79 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmxres/ChangeLog,v 1.10 2012/07/03 14:15:54 voyageur Exp $
80 +
81 + 03 Jul 2012; Bernard Cafarelli <voyageur@g.o> wmxres-1.2.ebuild:
82 + Clean over-enthusiastic sed call, bug #424141. Ebuild cleanup and EAPI bump
83
84 05 Oct 2010; Bernard Cafarelli <voyageur@g.o> wmxres-1.2.ebuild:
85 Newer dga headers require libXxf86dga, thanks Agostino Sarubbo