diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-07-23 01:00:08 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-07-23 01:00:08 +0000 |
commit | 316c3cfd93f91d5d1f8b7273275321b44002c221 (patch) | |
tree | 9beaf5642246079454e96df0bc1de83a6c2f9770 /x11-themes/nuvola/nuvola-1.0-r1.ebuild | |
parent | Punt old versions (diff) | |
download | gentoo-2-316c3cfd93f91d5d1f8b7273275321b44002c221.tar.gz gentoo-2-316c3cfd93f91d5d1f8b7273275321b44002c221.tar.bz2 gentoo-2-316c3cfd93f91d5d1f8b7273275321b44002c221.zip |
Add ~x86-fbsd keyword, add binchecks restrict (installs only icon files), fix installation of documentation files.
(Portage version: 2.1.1_pre3-r3)
Diffstat (limited to 'x11-themes/nuvola/nuvola-1.0-r1.ebuild')
-rw-r--r-- | x11-themes/nuvola/nuvola-1.0-r1.ebuild | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/x11-themes/nuvola/nuvola-1.0-r1.ebuild b/x11-themes/nuvola/nuvola-1.0-r1.ebuild index 36f6b686dbbd..dc2afdcc22fb 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.9 2006/05/05 07:53:13 corsair Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-themes/nuvola/nuvola-1.0-r1.ebuild,v 1.10 2006/07/23 01:00:08 flameeyes Exp $ DESCRIPTION="Nuvola SVG icon theme." SRC_URI="http://www.icon-king.com/files/${P}.tar.gz" @@ -8,10 +8,10 @@ HOMEPAGE="http://www.kde-look.org/content/show.php?content=5358" LICENSE="LGPL-2" IUSE="" -KEYWORDS="alpha amd64 ia64 ~ppc ppc64 sparc x86" +KEYWORDS="alpha amd64 ia64 ~ppc ppc64 sparc x86 ~x86-fbsd" SLOT="0" -RESTRICT="nostrip" +RESTRICT="strip binchecks" S="${WORKDIR}/nuvola" @@ -21,8 +21,11 @@ src_compile() { } src_install(){ - cd ${S} + cd "${S}" - insinto /usr/share/icons/ - doins -r ${S} + 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" } |