# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: DESCRIPTION="Candido MetaCity Themes" HOMEPAGE="http://candido.berlios.de" THEME_URI="http://candido.berlios.de/media/download_gallery/" SRC_URI="${THEME_URI}Candido-Selected.tar.bz2" SLOT="0" LICENSE="GPL-2" KEYWORDS="x86 ppc sparc amd64 hppa" IUSE="" RDEPEND="x11-wm/metacity" src_install() { dodir /usr/share/themes cd ${D}/usr/share/themes unpack ${A} find . -exec touch "{}" \; for dir in * do # Fix directory names that contain spaces if echo "${dir}" | egrep -q "[[:space:]]" then new_dir=`echo "${dir}" | sed -e 's: :_:g'` mv "${dir}" $new_dir dir=$new_dir fi if [ ! -d ${dir}/metacity-1 ] then mkdir tmp mv ${dir}/* tmp mv tmp ${dir}/metacity-1 fi done chmod -R ugo=rX * }