diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2010-02-24 14:25:44 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2010-02-24 14:25:44 +0000 |
commit | 55e207e824d759b09eb1d60176892b55d9b9548d (patch) | |
tree | 753d504f0c769e40566b97eef344f492e1680ae5 /x11-themes | |
parent | Fix quoting (diff) | |
download | gentoo-2-55e207e824d759b09eb1d60176892b55d9b9548d.tar.gz gentoo-2-55e207e824d759b09eb1d60176892b55d9b9548d.tar.bz2 gentoo-2-55e207e824d759b09eb1d60176892b55d9b9548d.zip |
Fix quoting
(Portage version: 2.2_rc63/cvs/Linux x86_64)
Diffstat (limited to 'x11-themes')
-rw-r--r-- | x11-themes/iceicons/iceicons-0.10.0.ebuild | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/x11-themes/iceicons/iceicons-0.10.0.ebuild b/x11-themes/iceicons/iceicons-0.10.0.ebuild index ad0c948bab71..2e6a1ccbcf97 100644 --- a/x11-themes/iceicons/iceicons-0.10.0.ebuild +++ b/x11-themes/iceicons/iceicons-0.10.0.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2009 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/iceicons/iceicons-0.10.0.ebuild,v 1.9 2009/01/07 14:53:39 ranger Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-themes/iceicons/iceicons-0.10.0.ebuild,v 1.10 2010/02/24 14:25:44 ssuominen Exp $ DESCRIPTION="IceWM Icons is a set of XPM 16x16, 32x32, and 48x48 XPM and PNG icons for IceWM" HOMEPAGE="http://themes.freshmeat.net/projects/iceicons/" @@ -16,14 +16,14 @@ DEPEND="${RDEPEND} app-arch/gzip app-arch/tar" -S="${WORKDIR}" +S=${WORKDIR} ICEICONSDIR="/usr/share/icewm/icons/iceicons" src_install() { dodir ${ICEICONSDIR} - cp -pPR icons/* ${D}/${ICEICONSDIR} - chown -R root:0 ${D}/${ICEICONSDIR} - chmod -R o-w ${D}/${ICEICONSDIR} + cp -pPR icons/* "${D}"/${ICEICONSDIR} + chown -R root:0 "${D}"/${ICEICONSDIR} + chmod -R o-w "${D}"/${ICEICONSDIR} dodoc CHANGELOG README TODO winoptions } |