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-themes/flatsvg: flatsvg-1.0.ebuild
Date: Wed, 24 Feb 2010 14:51:50
Message-Id: E1NkIaa-0002j0-5h@stork.gentoo.org
1 ssuominen 10/02/24 14:51:48
2
3 Modified: flatsvg-1.0.ebuild
4 Log:
5 Redudant cd S statement
6 (Portage version: 2.2_rc63/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.8 x11-themes/flatsvg/flatsvg-1.0.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-themes/flatsvg/flatsvg-1.0.ebuild?rev=1.8&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-themes/flatsvg/flatsvg-1.0.ebuild?rev=1.8&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-themes/flatsvg/flatsvg-1.0.ebuild?r1=1.7&r2=1.8
14
15 Index: flatsvg-1.0.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/x11-themes/flatsvg/flatsvg-1.0.ebuild,v
18 retrieving revision 1.7
19 retrieving revision 1.8
20 diff -u -r1.7 -r1.8
21 --- flatsvg-1.0.ebuild 23 Jul 2006 00:49:42 -0000 1.7
22 +++ flatsvg-1.0.ebuild 24 Feb 2010 14:51:47 -0000 1.8
23 @@ -1,21 +1,19 @@
24 -# Copyright 1999-2006 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/x11-themes/flatsvg/flatsvg-1.0.ebuild,v 1.7 2006/07/23 00:49:42 flameeyes Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/x11-themes/flatsvg/flatsvg-1.0.ebuild,v 1.8 2010/02/24 14:51:47 ssuominen Exp $
29
30 DESCRIPTION="Flat SVG icon set"
31 SRC_URI="http://www.atqu23.dsl.pipex.com/danny/flatSVG${PV}.tar.gz"
32 HOMEPAGE="http://www.kde-look.org/content/show.php?content=17158"
33
34 -KEYWORDS="amd64 sparc x86 ~x86-fbsd"
35 LICENSE="LGPL-2"
36 -
37 SLOT="0"
38 +KEYWORDS="amd64 sparc x86 ~x86-fbsd"
39 IUSE=""
40
41 -S="${WORKDIR}/FlatSVG"
42 +S=${WORKDIR}/FlatSVG
43
44 -src_install(){
45 - cd ${S}
46 - dodir "/usr/share/icons/"
47 +src_install() {
48 + dodir /usr/share/icons
49 cp -rf "${S}" "${D}/usr/share/icons/FlatSVG"
50 }