# Copyright 1999-2009 Sabayon Linux # Distributed under the terms of the GNU General Public License v2 EAPI=3 inherit eutils kde4-base DESCRIPTION="Sabayon Linux Official KDE artwork" HOMEPAGE="http://www.sabayon.org/" SRC_URI="mirror://sabayon/${CATEGORY}/${PN}/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86 ~amd64" IUSE="gtk ksplash" RESTRICT="nomirror" RDEPEND="~x11-themes/sabayon-artwork-core-${PV} || ( >=kde-base/kwin-4.4.0 x11-themes/aurorae ) gtk? ( x11-themes/qtcurve-qt4 kde-misc/kcm_gtk )" S="${WORKDIR}/${PN}" src_configure() { einfo "nothing to configure" } src_compile() { einfo "nothing to compile" } src_install() { # KDM dodir ${KDEDIR}/share/apps/kdm/themes cd ${S}/kdm insinto ${KDEDIR}/share/apps/kdm/themes doins -r ./ # Fixup kdm theme glitches, needs to be merged cp "${FILESDIR}/5.4-hotfixes/sabayon.xml" "${D}/${KDEDIR}/share/apps/kdm/themes/sabayon/" || die # Kwin dodir ${KDEDIR}/share/apps/aurorae/themes/ cd ${S}/kwin insinto ${KDEDIR}/share/apps/aurorae/themes/ doins -r ./ # KSplash if use ksplash; then dodir ${KDEDIR}/share/apps/ksplash/Themes cd ${S}/ksplash insinto ${KDEDIR}/share/apps/ksplash/Themes doins -r ./ fi } pkg_postinst() { einfo "Clearing Plasma Wallpaper Cache" for i in `ls /home` ; do rm -rf /home/$i/.kde4/cache-*/plasma-wallpapers/usr/share/backgrounds/sabayon* done }