# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ MY_PN="candido-engine" MY_P=${MY_PN}-${PV} DESCRIPTION="GTK+2 Candido Theme Engine" HOMEPAGE="http://candido.berlios.de/" SRC_URI="http://download.berlios.de/candido/${MY_P}.tar.bz2" KEYWORDS="~amd64 ~x86" IUSE="animation" LICENSE="GPL-2" SLOT="0" RDEPEND=">=x11-libs/gtk+-2.8" DEPEND="${RDEPEND} >=dev-util/pkgconfig-0.9" S=${WORKDIR}/${MY_P} src_compile() { econf $(use_enable animation) || die "Configuration failed" emake || die "Compilation failed" } src_install() { emake DESTDIR="${D}" install || die "Installation failed" dodoc AUTHORS ChangeLog NEWS README }