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-i18n/canfep: canfep-1.0.ebuild
Date: Thu, 31 Dec 2009 21:11:30
Message-Id: E1NQSIq-0005Z7-Ah@stork.gentoo.org
1 ssuominen 09/12/31 21:11:28
2
3 Modified: canfep-1.0.ebuild
4 Log:
5 Fix quoting
6 (Portage version: 2.2_rc61/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.6 app-i18n/canfep/canfep-1.0.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/canfep/canfep-1.0.ebuild?rev=1.6&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/canfep/canfep-1.0.ebuild?rev=1.6&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/canfep/canfep-1.0.ebuild?r1=1.5&r2=1.6
14
15 Index: canfep-1.0.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/app-i18n/canfep/canfep-1.0.ebuild,v
18 retrieving revision 1.5
19 retrieving revision 1.6
20 diff -u -r1.5 -r1.6
21 --- canfep-1.0.ebuild 1 Jan 2005 14:25:56 -0000 1.5
22 +++ canfep-1.0.ebuild 31 Dec 2009 21:11:28 -0000 1.6
23 @@ -1,6 +1,6 @@
24 -# Copyright 1999-2005 Gentoo Foundation
25 +# Copyright 1999-2009 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/canfep/canfep-1.0.ebuild,v 1.5 2005/01/01 14:25:56 eradicator Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/canfep/canfep-1.0.ebuild,v 1.6 2009/12/31 21:11:28 ssuominen Exp $
29
30 inherit eutils
31
32 @@ -20,21 +20,17 @@
33 RDEPEND="app-i18n/canna"
34
35 src_unpack() {
36 -
37 unpack ${P}.tar.gz
38 - cd ${S}
39 - use unicode && epatch ${DISTDIR}/canfep_utf8.diff
40 + cd "${S}"
41 + use unicode && epatch "${DISTDIR}"/canfep_utf8.diff
42 }
43
44 src_compile() {
45 -
46 make CXX="${CXX}" LIBS="-lcanna -lncurses" CFLAGS="${CFLAGS}" \
47 || die "make failed"
48 }
49
50 src_install() {
51 -
52 dobin canfep
53 -
54 dodoc 00changes 00readme
55 }