# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/x11-themes/gnome-colors-common/gnome-colors-common-5.5.1.ebuild,v 1.1 2010/02/09 13:19:29 pacho Exp $ EAPI=2 SLREV=4 inherit gnome2-utils DESCRIPTION="Colorized icons shared between all gnome-colors iconsets" HOMEPAGE="http://code.google.com/p/gnome-colors/" SRC_URI="http://gnome-colors.googlecode.com/files/gnome-colors-${PV}.tar.gz branding? ( mirror://argent/x11-themes/fdo-icons-argent${SLREV}.tar.gz )" LICENSE="GPL-2 public-domain" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="+branding" RDEPEND="x11-themes/gnome-icon-theme" DEPEND="" RESTRICT="binchecks strip" src_prepare() { if use branding; then cp -r fdo-icons-argent/* ${PN} || die "Argent branding failed" fi } src_compile() { einfo "Nothing to compile" } src_install() { dodir /usr/share/icons insinto /usr/share/icons doins -r "${WORKDIR}/${PN}" || die "Installing icons failed" dodoc AUTHORS ChangeLog README } pkg_preinst() { gnome2_icon_savelist } pkg_postinst() { gnome2_icon_cache_update } pkg_postrm() { gnome2_icon_cache_update }