blob: 10eb55e6ddd450eb6d864a0cf510ddcb244de8d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# Copyright 1999-2012 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"
IUSE=""
RDEPEND="dev-libs/dbus-glib
sys-apps/dbus
>=x11-libs/gtk+-2.20:2
x11-libs/libX11
x11-libs/libXcomposite
"
DEPEND="${RDEPEND}
dev-util/pkgconfig
"
src_prepare() {
epatch "${FILESDIR}"/${P}-deprecated-gtk_widget_realized.patch
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc AUTHORS ChangeLog NEWS README TODO || die
}
|