blob: 0786a0af71188737ae18859d0d4e402161bdfcaf (
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
|
# 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.1 2006/07/23 01:38:26 flameeyes Exp $
S="${WORKDIR}/lush"
DESCRIPTION="Lush KDE icon theme"
SRC_URI="mirror://gentoo/${P}dave.tar.gz"
HOMEPAGE="http://www.kde-look.org/content/show.php?content=5483"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86"
LICENSE="GPL-1"
SLOT="0"
IUSE=""
RESTRICT="strip binchecks"
src_compile() {
return 0
}
src_install(){
cd "${S}"
dodir /usr/share/icons/
cp -R "${S}" "${D}/usr/share/icons/${PN}"
}
|