blob: 7cc2a183eb0c185e1f52447d5177a1e23e64f3bd (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-themes/flatsvg/flatsvg-1.0.ebuild,v 1.4 2006/02/14 17:59:44 gustavoz Exp $
inherit kde
need-kde 3.3
DESCRIPTION="Flat SVG icon set"
SRC_URI="http://www.atqu23.dsl.pipex.com/danny/flatSVG${PV}.tar.gz"
HOMEPAGE="http://www.kde-look.org/content/show.php?content=17158"
KEYWORDS="sparc x86"
LICENSE="LGPL-2"
SLOT="0"
IUSE=""
S="${WORKDIR}/FlatSVG"
src_compile() {
einfo "Nothing to compile..."
}
src_install(){
cd ${S}
dodir ${PREFIX}/share/icons/
cp -rf ${S} ${D}/${PREFIX}/share/icons/FlatSVG
}
|