blob: 745fe76bb0d42c3ff6652838af64ef8239647e7e (
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
36
37
38
39
40
41
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-themes/alloy/alloy-0.3.ebuild,v 1.10 2004/07/03 20:04:55 carlo Exp $
inherit kde
DESCRIPTION="A neat KDE 3.1 style based on the Java Alloy Look&Feel from Incors (http://www.incors.com)."
HOMEPAGE="http://www.kdelook.org/content/show.php?content=6304"
SRC_URI="http://www.kdelook.org/content/files/6304-${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ppc ~sparc ~alpha"
IUSE=""
DEPEND="kde-base/kdebase"
need-kde 3.1
src_compile(){
./configure --prefix=$KDEDIR || die
emake || die
}
src_install(){
emake DESTDIR=${D} install || die "emake install failed"
}
pkg_postinst(){
ewarn "HOW TO USE THIS THEME FOR KDE:"
einfo ""
einfo "Open the KDE-Menu and start the Control Center."
einfo "Select \"Look and Feel\"."
einfo "Select \"Style\" if the package you installed was a style, or select \"Theme Manager\" if the package you installed was a theme."
einfo "Select your theme or style."
einfo "Click \"Apply\""
einfo ""
einfo "Have fun! :-)"
}
|