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-misc/devilspie: ChangeLog devilspie-0.22.ebuild
Date: Tue, 05 Oct 2010 10:18:52
Message-Id: 20101005101845.E503020051@flycatcher.gentoo.org
1 ssuominen 10/10/05 10:18:45
2
3 Modified: ChangeLog devilspie-0.22.ebuild
4 Log:
5 Fix build, see ChangeLog for details
6
7 (Portage version: 2.2_rc88/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.47 x11-misc/devilspie/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/devilspie/ChangeLog?rev=1.47&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/devilspie/ChangeLog?rev=1.47&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/devilspie/ChangeLog?r1=1.46&r2=1.47
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-misc/devilspie/ChangeLog,v
19 retrieving revision 1.46
20 retrieving revision 1.47
21 diff -u -r1.46 -r1.47
22 --- ChangeLog 10 Jan 2010 18:29:47 -0000 1.46
23 +++ ChangeLog 5 Oct 2010 10:18:45 -0000 1.47
24 @@ -1,6 +1,10 @@
25 # ChangeLog for x11-misc/devilspie
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/devilspie/ChangeLog,v 1.46 2010/01/10 18:29:47 fauli Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/devilspie/ChangeLog,v 1.47 2010/10/05 10:18:45 ssuominen Exp $
29 +
30 + 05 Oct 2010; Samuli Suominen <ssuominen@g.o> devilspie-0.22.ebuild:
31 + Don't build with -DG.*_DISABLE_DEPRECATED flags wrt #339806 by Diego E.
32 + Pettenò.
33
34 10 Jan 2010; Christian Faulhammer <fauli@g.o>
35 devilspie-0.22.ebuild:
36
37
38
39 1.8 x11-misc/devilspie/devilspie-0.22.ebuild
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/devilspie/devilspie-0.22.ebuild?rev=1.8&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/devilspie/devilspie-0.22.ebuild?rev=1.8&content-type=text/plain
43 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/devilspie/devilspie-0.22.ebuild?r1=1.7&r2=1.8
44
45 Index: devilspie-0.22.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/x11-misc/devilspie/devilspie-0.22.ebuild,v
48 retrieving revision 1.7
49 retrieving revision 1.8
50 diff -u -r1.7 -r1.8
51 --- devilspie-0.22.ebuild 10 Jan 2010 18:29:47 -0000 1.7
52 +++ devilspie-0.22.ebuild 5 Oct 2010 10:18:45 -0000 1.8
53 @@ -1,6 +1,9 @@
54 # Copyright 1999-2010 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/devilspie/devilspie-0.22.ebuild,v 1.7 2010/01/10 18:29:47 fauli Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/devilspie/devilspie-0.22.ebuild,v 1.8 2010/10/05 10:18:45 ssuominen Exp $
58 +
59 +EAPI=2
60 +inherit autotools
61
62 DESCRIPTION="A Window Matching utility similar to Sawfish's Matched Windows feature"
63 HOMEPAGE="http://www.burtonini.com/blog/computers/devilspie"
64 @@ -17,15 +20,17 @@
65 DEPEND="${RDEPEND}
66 dev-util/pkgconfig
67 dev-util/intltool
68 - sys-devel/gettext"
69 + sys-devel/gettext
70 + gnome-base/gnome-common" # Required by eautoreconf
71
72 -src_unpack() {
73 - unpack ${A}
74 - sed -i -e "s:\(/usr/share/doc/devilspie\):\1-${PVR}:" "${S}"/devilspie.1
75 +src_prepare() {
76 + sed -i -e "s:\(/usr/share/doc/devilspie\):\1-${PVR}:" devilspie.1 || die
77 + sed -i -e '/-DG.*_DISABLE_DEPRECATED/d' src/Makefile.am || die
78 + eautoreconf
79 }
80
81 src_install() {
82 - emake DESTDIR="${D}" install || die "emake install failed."
83 + emake DESTDIR="${D}" install || die
84 dodoc AUTHORS ChangeLog NEWS README TODO
85 keepdir /etc/devilspie
86 }