blob: 0b0462536fdda6e7c48bd782e9b3aab0d0c53ab7 (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/guile-gtk/guile-gtk-2.1.ebuild,v 1.7 2011/03/23 17:48:39 eva Exp $
EAPI="2"
inherit autotools eutils virtualx
DESCRIPTION="GTK+ bindings for guile"
HOMEPAGE="http://www.gnu.org/software/guile-gtk/"
SRC_URI="ftp://ftp.gnu.org/gnu/guile-gtk/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 ~ppc x86"
IUSE=""
RDEPEND="dev-scheme/guile
x11-libs/gtk+:2
gnome-base/libglade:2.0
>=x11-libs/gtkglarea-1.90:2"
DEPEND="${RDEPEND}"
pkg_setup() {
if has_version =dev-scheme/guile-1.8*; then
local flags="deprecated"
built_with_use dev-scheme/guile ${flags} \
|| die "guile must be built with \"${flags}\" use flag"
fi
}
src_prepare() {
epatch "${FILESDIR}/${PN}-2.0-g-object-ref.diff"
epatch "${FILESDIR}"/${PV}-prll-install.patch
epatch "${FILESDIR}"/${PV}-brokentest.patch
eautoreconf
}
src_test() {
Xemake check || die "tests failed"
}
src_install() {
# bug #298803
emake DESTDIR="${D}" install || die "make install failed"
dodoc README AUTHORS ChangeLog NEWS TODO
insinto /usr/share/doc/${PF}/examples
doins -r examples/
}
|