Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-laptop/gtkpbbuttons: gtkpbbuttons-0.6.10.ebuild
Date: Fri, 01 Jan 2010 21:10:44
Message-Id: E1NQole-0004Ww-HJ@stork.gentoo.org
1 ssuominen 10/01/01 21:10:42
2
3 Modified: gtkpbbuttons-0.6.10.ebuild
4 Log:
5 quoting
6 (Portage version: 2.2_rc61/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.3 app-laptop/gtkpbbuttons/gtkpbbuttons-0.6.10.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-laptop/gtkpbbuttons/gtkpbbuttons-0.6.10.ebuild?rev=1.3&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-laptop/gtkpbbuttons/gtkpbbuttons-0.6.10.ebuild?rev=1.3&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-laptop/gtkpbbuttons/gtkpbbuttons-0.6.10.ebuild?r1=1.2&r2=1.3
14
15 Index: gtkpbbuttons-0.6.10.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/app-laptop/gtkpbbuttons/gtkpbbuttons-0.6.10.ebuild,v
18 retrieving revision 1.2
19 retrieving revision 1.3
20 diff -u -r1.2 -r1.3
21 --- gtkpbbuttons-0.6.10.ebuild 9 Sep 2007 02:05:07 -0000 1.2
22 +++ gtkpbbuttons-0.6.10.ebuild 1 Jan 2010 21:10:42 -0000 1.3
23 @@ -1,6 +1,6 @@
24 -# Copyright 1999-2007 Gentoo Foundation
25 +# Copyright 1999-2010 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-laptop/gtkpbbuttons/gtkpbbuttons-0.6.10.ebuild,v 1.2 2007/09/09 02:05:07 josejx Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-laptop/gtkpbbuttons/gtkpbbuttons-0.6.10.ebuild,v 1.3 2010/01/01 21:10:42 ssuominen Exp $
29
30 inherit eutils
31
32 @@ -13,20 +13,20 @@
33 KEYWORDS="ppc ~x86"
34 IUSE="gnome"
35
36 -DEPEND=">=x11-libs/gtk+-2.0
37 +DEPEND=">=x11-libs/gtk+-2
38 >=media-libs/audiofile-0.1.9
39 dev-libs/popt
40 >=app-laptop/pbbuttonsd-0.7.9
41 gnome? ( gnome-base/libgnomeui )"
42
43 src_compile() {
44 - myconf=""
45 - use gnome && myconf="${myconf} --with-gnome"
46 - econf ${myconf} || die "Configuration failed"
47 - make || die "Compile failed"
48 + local myconf=""
49 + use gnome && myconf="--with-gnome"
50 + econf ${myconf}
51 + make || die
52 }
53
54 src_install() {
55 - make install DESTDIR=${D} || die
56 + make install DESTDIR="${D}" || die
57 dodoc README
58 }