diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-11-28 00:23:23 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-11-28 00:23:23 +0000 |
commit | e4f118308cf7c00d69bc191b074acbbe8ad68a75 (patch) | |
tree | 9d9e61fd30ab9d62e7a1c5bcfe127385cfe34600 /x11-themes | |
parent | Add binchecks and strip restricts, use doins rather than cp to copy the files. (diff) | |
download | gentoo-2-e4f118308cf7c00d69bc191b074acbbe8ad68a75.tar.gz gentoo-2-e4f118308cf7c00d69bc191b074acbbe8ad68a75.tar.bz2 gentoo-2-e4f118308cf7c00d69bc191b074acbbe8ad68a75.zip |
Remove the dummy src_compile, and use doins instead of cp to copy the icons.
(Portage version: 2.1.2_rc2-r2)
Diffstat (limited to 'x11-themes')
-rw-r--r-- | x11-themes/lush/ChangeLog | 5 | ||||
-rw-r--r-- | x11-themes/lush/lush-0.1.0-r2.ebuild | 13 |
2 files changed, 8 insertions, 10 deletions
diff --git a/x11-themes/lush/ChangeLog b/x11-themes/lush/ChangeLog index 9fbee897e7e9..769175bc43c0 100644 --- a/x11-themes/lush/ChangeLog +++ b/x11-themes/lush/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for x11-themes/lush # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-themes/lush/ChangeLog,v 1.18 2006/09/05 21:56:55 gustavoz Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-themes/lush/ChangeLog,v 1.19 2006/11/28 00:23:23 flameeyes Exp $ + + 28 Nov 2006; Diego Pettenò <flameeyes@gentoo.org> lush-0.1.0-r2.ebuild: + Remove the dummy src_compile, and use doins instead of cp to copy the icons. 05 Sep 2006; Gustavo Zacarias <gustavoz@gentoo.org> lush-0.1.0-r2.ebuild: Stable on sparc diff --git a/x11-themes/lush/lush-0.1.0-r2.ebuild b/x11-themes/lush/lush-0.1.0-r2.ebuild index 2d3548c28ac4..39552867cb44 100644 --- a/x11-themes/lush/lush-0.1.0-r2.ebuild +++ b/x11-themes/lush/lush-0.1.0-r2.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-themes/lush/lush-0.1.0-r2.ebuild,v 1.7 2006/09/05 21:56:55 gustavoz Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-themes/lush/lush-0.1.0-r2.ebuild,v 1.8 2006/11/28 00:23:23 flameeyes Exp $ -S="${WORKDIR}/lush" +S="${WORKDIR}" DESCRIPTION="Lush KDE icon theme" SRC_URI="mirror://gentoo/${P}dave.tar.gz" HOMEPAGE="http://www.kde-look.org/content/show.php?content=5483" @@ -15,12 +15,7 @@ IUSE="" RESTRICT="strip binchecks" -src_compile() { - return 0 -} - src_install(){ - cd "${S}" - dodir /usr/share/icons/ - cp -R "${S}" "${D}/usr/share/icons/${PN}" + insinto /usr/share/icons + doins -r lush } |