# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit eutils DESCRIPTION="A small, lightweight calendar for Gnome" HOMEPAGE="http://projects.o-hand.com/dates" SRC_URI="http://projects.o-hand.com/sources/dates/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86" IUSE="" DEPEND=">=gnome-extra/evolution-data-server-1.8.2 >=x11-libs/gtk+-2.6" RDEPEND="${DEPEND}" #S="${WORKDIR}/${P}" src_compile() { econf || die "econf failed" ./configure \ --host=${CHOST} \ --prefix=/usr \ --infodir=/usr/share/info \ --mandir=/usr/share/man || die "./configure failed" emake || die "emake failed" } src_install() { emake DESTDIR="${D}" install || die "emake install failed" #einstall || die "einstall failed" } pkg_postrm() { gtk-update-icon-cache -f -t /usr/share/icons/hicolor }