blob: 74b5caf3cd1b28813dc69663a0b452c11375023a (
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
51
52
|
# Copyright 1999-2005 Gentoo Foundation
# 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.13 2005/08/26 13:37:23 agriffis Exp $
inherit kde
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="~alpha amd64 ~ia64 ppc ~sparc x86"
IUSE=""
DEPEND="|| ( kde-base/kwin kde-base/kdebase )"
need-kde 3.1
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 execute the following command"
einfo "from a shell or the KDE \"Run Command\" dialog:"
einfo " kinstalltheme"
}
|