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-pda/synce-libsynce: synce-libsynce-0.9.1.ebuild
Date: Thu, 04 Nov 2010 20:11:20
Message-Id: 20101104201117.1A1AE20051@flycatcher.gentoo.org
1 ssuominen 10/11/04 20:11:17
2
3 Modified: synce-libsynce-0.9.1.ebuild
4 Log:
5 Remove unused file wrt #344163. Fix quoting.
6
7 (Portage version: 2.2.0_alpha3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.8 app-pda/synce-libsynce/synce-libsynce-0.9.1.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/synce-libsynce/synce-libsynce-0.9.1.ebuild?rev=1.8&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/synce-libsynce/synce-libsynce-0.9.1.ebuild?rev=1.8&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/synce-libsynce/synce-libsynce-0.9.1.ebuild?r1=1.7&r2=1.8
15
16 Index: synce-libsynce-0.9.1.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-pda/synce-libsynce/synce-libsynce-0.9.1.ebuild,v
19 retrieving revision 1.7
20 retrieving revision 1.8
21 diff -u -r1.7 -r1.8
22 --- synce-libsynce-0.9.1.ebuild 5 Aug 2009 23:29:55 -0000 1.7
23 +++ synce-libsynce-0.9.1.ebuild 4 Nov 2010 20:11:17 -0000 1.8
24 @@ -1,6 +1,6 @@
25 -# Copyright 1999-2009 Gentoo Foundation
26 +# Copyright 1999-2010 Gentoo Foundation
27 # Distributed under the terms of the GNU General Public License v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-pda/synce-libsynce/synce-libsynce-0.9.1.ebuild,v 1.7 2009/08/05 23:29:55 mescalinum Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-pda/synce-libsynce/synce-libsynce-0.9.1.ebuild,v 1.8 2010/11/04 20:11:17 ssuominen Exp $
30
31 inherit eutils
32
33 @@ -13,16 +13,17 @@
34 KEYWORDS="~amd64 ~ia64 ppc x86"
35 IUSE=""
36
37 -DEPEND=">=dev-libs/check-0.8.3.1"
38 +RDEPEND=">=dev-libs/check-0.8.3.1"
39 +DEPEND="${RDEPEND}"
40
41 src_unpack() {
42 unpack ${A}
43 - cd ${S}
44 + cd "${S}"
45
46 - epatch ${FILESDIR}/${P}-amd64.patch
47 + epatch "${FILESDIR}"/${P}-amd64.patch
48 }
49
50 src_install() {
51 - make DESTDIR=${D} install || die
52 + make DESTDIR="${D}" install || die
53 dodoc README
54 }