blob: 02f2db0521a4ad9405bad1d4ee661ad32f27c417 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-themes/nuvola/nuvola-1.0_beta.ebuild,v 1.2 2004/06/24 23:36:36 agriffis Exp $
inherit kde
need-kde 3
MY_P="${P/_beta/beta}"
DESCRIPTION="Nuvola SVG evolution of SKY icon theme."
SRC_URI="http://www.icon-king.com/files/${MY_P}.tgz"
HOMEPAGE="http://www.kde-look.org/content/show.php?content=5358"
KEYWORDS="~x86 ~alpha ~ppc ~sparc"
LICENSE="LGPL-2"
SLOT="0"
IUSE=""
RESTRICT="$RESTRICT nostrip"
S="${WORKDIR}/nuvola"
# necessary to avoid normal compilation steps, we have nothing to compile here
src_compile() {
unpack ${MY_P}.tgz
cd ${S}
}
src_install(){
cd ${S}
dodir $PREFIX/share/icons/
cp -rf ${S} ${D}/${PREFIX}/share/icons/Nuvola-${PV}
}
|