blob: 34b08282020fe83fe02e348f082de54cb81a3271 (
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
42
43
44
45
46
47
48
49
50
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-themes/fusionx-aqua/fusionx-aqua-1.1.ebuild,v 1.2 2003/06/27 14:07:55 vapier Exp $
inherit kde-base
need-kde 3.1
MY_P="FusionX-Aqua-${PV}"
S=${WORKDIR}/${MY_P}
DESCRIPTION="stylish \"Fusion X Aqua\" theme for KDE"
HOMEPAGE="http://www.kdelook.org/content/show.php?content=5296"
SRC_URI="http://www.kdelook.org/content/files/5296-${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~ppc ~sparc ~alpha"
DEPEND="kde-base/kdebase"
src_compile(){
# nothing to compile, but don't want the eclass to try to compile anything
return 0
}
src_install(){
mkdir -p ${D}/${KDEDIR}/share/apps/kstyle
cp -R -f ${WORKDIR}/${MY_P}/pixmaps ${D}/${KDEDIR}/share/apps/kstyle/ || die
cp -R -f ${WORKDIR}/${MY_P}/themes ${D}/${KDEDIR}/share/apps/kstyle/ || die
mkdir -p ${D}/${KDEDIR}/share/apps/kwin
cp -R -f ${WORKDIR}/${MY_P}/icewm-themes ${D}/${KDEDIR}/share/apps/kwin || die
mkdir -p ${D}/${KDEDIR}/share/apps/kdisplay
cp -R -f ${WORKDIR}/${MY_P}/color-schemes ${D}/${KDEDIR}/share/apps/kdisplay || die
dodoc ${WORKDIR}/${MY_P}/{CREDITS,README,CHANGELOG}
}
pkg_postinst(){
einfo "This theme is an IceWM pixmap theme for KDE."
einfo ""
einfo "To use this theme set the following options in the"
einfo "KDE Control Center:"
einfo " o Appearance & Themes"
einfo " - Style = \"fusionx-aqua\""
einfo " - Window Decorations = \"IceWM\""
einfo " - Configuration [IceWM] = \"fusionX-aqua\""
einfo ""
einfo "To make the theme visible in any currently running KDE session"
einfo "execute the following command from a shell or the"
einfo "KDE \"Run Command\" dialog:"
einfo " kinstalltheme"
}
|