# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ EAPI="2" inherit eutils DESCRIPTION="X based boot splash" HOMEPAGE="https://launchpad.net/xsplash" SRC_URI="http://launchpad.net/xsplash/trunk/${PV}/+download/${P}.tar.gz" LICENSE="GPL-3" SLOT="0" KEYWORDS="~x86 ~amd64" IUSE="" DEPEND=">=x11-libs/gtk+-2.20 >=sys-apps/dbus-0.76 " RDEPEND="${DEPEND}" src_prepare() { unpack ${A} cd "${S}" epatch "${FILESDIR}"/${P}-deprecated-gtk_widget_realized.patch } src_configure() { econf || die "econf failed" } src_compile() { emake || die "emake failed" } src_install() { emake DESTDIR="${D}" install || die "install failed" dodoc AUTHORS ChangeLog NEWS README TODO }