diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2010-02-24 14:51:47 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2010-02-24 14:51:47 +0000 |
commit | fa25b033e1bfd326710f7f17fe992ce1021e5971 (patch) | |
tree | d088f34d00b274e2ab8771e95531eea287fff0e9 /x11-themes | |
parent | ebuild.badheader (diff) | |
download | historical-fa25b033e1bfd326710f7f17fe992ce1021e5971.tar.gz historical-fa25b033e1bfd326710f7f17fe992ce1021e5971.tar.bz2 historical-fa25b033e1bfd326710f7f17fe992ce1021e5971.zip |
Redudant cd S statement
Package-Manager: portage-2.2_rc63/cvs/Linux x86_64
Diffstat (limited to 'x11-themes')
-rw-r--r-- | x11-themes/flatsvg/flatsvg-1.0.ebuild | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/x11-themes/flatsvg/flatsvg-1.0.ebuild b/x11-themes/flatsvg/flatsvg-1.0.ebuild index 2a67a392a31c..bf04327ab756 100644 --- a/x11-themes/flatsvg/flatsvg-1.0.ebuild +++ b/x11-themes/flatsvg/flatsvg-1.0.ebuild @@ -1,21 +1,19 @@ -# Copyright 1999-2006 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-themes/flatsvg/flatsvg-1.0.ebuild,v 1.7 2006/07/23 00:49:42 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-themes/flatsvg/flatsvg-1.0.ebuild,v 1.8 2010/02/24 14:51:47 ssuominen Exp $ DESCRIPTION="Flat SVG icon set" SRC_URI="http://www.atqu23.dsl.pipex.com/danny/flatSVG${PV}.tar.gz" HOMEPAGE="http://www.kde-look.org/content/show.php?content=17158" -KEYWORDS="amd64 sparc x86 ~x86-fbsd" LICENSE="LGPL-2" - SLOT="0" +KEYWORDS="amd64 sparc x86 ~x86-fbsd" IUSE="" -S="${WORKDIR}/FlatSVG" +S=${WORKDIR}/FlatSVG -src_install(){ - cd ${S} - dodir "/usr/share/icons/" +src_install() { + dodir /usr/share/icons cp -rf "${S}" "${D}/usr/share/icons/FlatSVG" } |