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-plugins/fsviewer: fsviewer-0.2.5.ebuild
Date: Sat, 26 Jun 2010 23:45:40
Message-Id: 20100626234536.E90752CF84@corvid.gentoo.org
1 ssuominen 10/06/26 23:45:36
2
3 Modified: fsviewer-0.2.5.ebuild
4 Log:
5 Fix bad quoting too.
6 (Portage version: 2.2_rc67/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.9 x11-plugins/fsviewer/fsviewer-0.2.5.ebuild
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/fsviewer/fsviewer-0.2.5.ebuild?rev=1.9&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/fsviewer/fsviewer-0.2.5.ebuild?rev=1.9&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/fsviewer/fsviewer-0.2.5.ebuild?r1=1.8&r2=1.9
14
15 Index: fsviewer-0.2.5.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/x11-plugins/fsviewer/fsviewer-0.2.5.ebuild,v
18 retrieving revision 1.8
19 retrieving revision 1.9
20 diff -u -r1.8 -r1.9
21 --- fsviewer-0.2.5.ebuild 3 Mar 2010 19:07:57 -0000 1.8
22 +++ fsviewer-0.2.5.ebuild 26 Jun 2010 23:45:36 -0000 1.9
23 @@ -1,10 +1,10 @@
24 # Copyright 1999-2010 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/fsviewer/fsviewer-0.2.5.ebuild,v 1.8 2010/03/03 19:07:57 ssuominen Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/fsviewer/fsviewer-0.2.5.ebuild,v 1.9 2010/06/26 23:45:36 ssuominen Exp $
28
29 inherit eutils
30
31 -MY_PN="FSViewer"
32 +MY_PN=FSViewer
33
34 DESCRIPTION="file system viewer for Window Maker"
35 HOMEPAGE="http://www.bayernline.de/~gscholz/linux/fsviewer/"
36 @@ -13,7 +13,6 @@
37 LICENSE="GPL-2"
38 SLOT="0"
39 KEYWORDS="amd64 ppc x86"
40 -
41 IUSE=""
42
43 DEPEND=">=x11-wm/windowmaker-0.92.0-r3
44 @@ -40,21 +39,20 @@
45 dev-libs/expat
46 sys-libs/zlib"
47
48 -S="${WORKDIR}/${MY_PN}.app-${PV}"
49 +S=${WORKDIR}/${MY_PN}.app-${PV}
50
51 src_unpack() {
52 unpack ${A}
53 - cd ${S}
54 - epatch ${FILESDIR}/${P}-windowmaker.patch
55 + cd "${S}"
56 + epatch "${FILESDIR}"/${P}-windowmaker.patch
57 }
58
59 src_compile() {
60 econf --with-appspath=/usr/lib/GNUstep \
61 - --with-extralibs=-lXft \
62 - || die "econf failed"
63 - emake || die "emake failed"
64 + --with-extralibs=-lXft
65 + emake || die
66 }
67
68 src_install() {
69 - make DESTDIR=${D} install || die "make install failed"
70 + emake DESTDIR="${D}" install || die
71 }