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/tpb: tpb-0.6.4.ebuild
Date: Fri, 01 Jan 2010 20:54:47
Message-Id: E1NQoWD-0003RY-Ks@stork.gentoo.org
1 ssuominen 10/01/01 20:54:45
2
3 Modified: tpb-0.6.4.ebuild
4 Log:
5 fix quoting
6 (Portage version: 2.2_rc61/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.7 app-laptop/tpb/tpb-0.6.4.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-laptop/tpb/tpb-0.6.4.ebuild?rev=1.7&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-laptop/tpb/tpb-0.6.4.ebuild?rev=1.7&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-laptop/tpb/tpb-0.6.4.ebuild?r1=1.6&r2=1.7
14
15 Index: tpb-0.6.4.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/app-laptop/tpb/tpb-0.6.4.ebuild,v
18 retrieving revision 1.6
19 retrieving revision 1.7
20 diff -u -r1.6 -r1.7
21 --- tpb-0.6.4.ebuild 20 Aug 2008 04:01:20 -0000 1.6
22 +++ tpb-0.6.4.ebuild 1 Jan 2010 20:54:45 -0000 1.7
23 @@ -1,6 +1,6 @@
24 -# Copyright 1999-2008 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/tpb/tpb-0.6.4.ebuild,v 1.6 2008/08/20 04:01:20 darkside Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-laptop/tpb/tpb-0.6.4.ebuild,v 1.7 2010/01/01 20:54:45 ssuominen Exp $
29
30 inherit linux-info eutils
31
32 @@ -11,7 +11,6 @@
33 LICENSE="GPL-2"
34 SLOT="0"
35 KEYWORDS="amd64 -ppc x86"
36 -
37 IUSE="nls xosd"
38
39 DEPEND="x11-libs/libXt
40 @@ -23,16 +22,14 @@
41
42 src_unpack() {
43 unpack ${A}
44 -
45 - cd ${S}
46 - epatch ${FILESDIR}/${PN}-configure-fix.diff
47 + cd "${S}"
48 + epatch "${FILESDIR}"/${PN}-configure-fix.diff
49 }
50
51 src_compile() {
52 econf \
53 $(use_enable nls) \
54 - $(use_enable xosd) \
55 - || die "econf failed"
56 + $(use_enable xosd)
57 emake || die "emake failed"
58 }