blob: 24e558ce7aaae3d6e0c589e37235cac96131274c (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# 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.3 2003/09/06 07:28:56 msterret Exp $
inherit kde-base
need-kde 3.1
S=${WORKDIR}/${P}
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"
LICENSE="GPL-2"
SLOT="0"
DEPEND="kde-base/kdebase"
KEYWORDS="~x86 ~ppc ~sparc ~alpha"
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! :-)"
}
|