diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-11-28 00:28:32 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-11-28 00:28:32 +0000 |
commit | 911adfc941959b3c2a3fd72d4138706282b87287 (patch) | |
tree | 53f67e71916092036a6090c62425722dd62d02d0 /x11-themes/nuvola | |
parent | adding missing tcpdump dependency wrt bug 141849 (diff) | |
download | gentoo-2-911adfc941959b3c2a3fd72d4138706282b87287.tar.gz gentoo-2-911adfc941959b3c2a3fd72d4138706282b87287.tar.bz2 gentoo-2-911adfc941959b3c2a3fd72d4138706282b87287.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/nuvola')
-rw-r--r-- | x11-themes/nuvola/ChangeLog | 5 | ||||
-rw-r--r-- | x11-themes/nuvola/nuvola-1.0-r1.ebuild | 17 |
2 files changed, 10 insertions, 12 deletions
diff --git a/x11-themes/nuvola/ChangeLog b/x11-themes/nuvola/ChangeLog index 211dcd99d05e..d10c85e576d9 100644 --- a/x11-themes/nuvola/ChangeLog +++ b/x11-themes/nuvola/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for x11-themes/nuvola # Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-themes/nuvola/ChangeLog,v 1.18 2006/09/01 18:07:29 dertobi123 Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-themes/nuvola/ChangeLog,v 1.19 2006/11/28 00:28:32 flameeyes Exp $ + + 28 Nov 2006; Diego Pettenò <flameeyes@gentoo.org> nuvola-1.0-r1.ebuild: + Remove the dummy src_compile, and use doins instead of cp to copy the icons. 01 Sep 2006; Tobias Scherbaum <dertobi123@gentoo.org> nuvola-1.0-r1.ebuild: diff --git a/x11-themes/nuvola/nuvola-1.0-r1.ebuild b/x11-themes/nuvola/nuvola-1.0-r1.ebuild index 2fdcadef8a9f..6cb5876bf50f 100644 --- a/x11-themes/nuvola/nuvola-1.0-r1.ebuild +++ b/x11-themes/nuvola/nuvola-1.0-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-themes/nuvola/nuvola-1.0-r1.ebuild,v 1.11 2006/09/01 18:07:29 dertobi123 Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-themes/nuvola/nuvola-1.0-r1.ebuild,v 1.12 2006/11/28 00:28:32 flameeyes Exp $ DESCRIPTION="Nuvola SVG icon theme." SRC_URI="http://www.icon-king.com/files/${P}.tar.gz" @@ -13,19 +13,14 @@ SLOT="0" RESTRICT="strip binchecks" -S="${WORKDIR}/nuvola" - -# necessary to avoid normal compilation steps, we have nothing to compile here -src_compile() { - einfo "Nothing to compile..." -} +S="${WORKDIR}" src_install(){ - cd "${S}" - + cd nuvola dodoc thanks.to readme.txt author license.txt rm thanks.to thanks.to~ readme.txt author license.txt - dodir /usr/share/icons - cp -R "${S}" "${D}/usr/share/icons" + cd "${S}" + insinto /usr/share/icons + doins -r nuvola } |