blob: 2fea94e2e0ed5aa88c38b8db609623d6a00526c5 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit kde
DESCRIPTION="KDE style and native window decoration"
HOMEPAGE="http://www.kde-look.org/content/show.php?content=35954"
SRC_URI="http://maxilys.awardspace.com/archives/${P}.tar.bz2
http://maxilys.awardspace.com/archives/more.colorschemes.tar.bz2"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~ppc ~amd64 ~sparc"
IUSE=""
RESTRICT="nomirror"
DEPEND="|| ( kde-base/kwin kde-base/kdebase )
!x11-themes/serenity-decoration
!x11-themes/serenity-style"
need-kde 3.4
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
insinto /usr/share/apps/kdisplay/color-schemes/
for kcsrc in ../more.colorschemes/Serenity*kcsrc ; do
doins ${kcsrc}
done
}
|