diff options
author | Justin Lecher <jlec@gentoo.org> | 2010-06-28 22:28:32 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2010-06-28 22:28:32 +0000 |
commit | 684b290735463169da4667ed990d1de028ab1950 (patch) | |
tree | 458bbc8effb12b3f421916acbf15faa1df72a60a /x11-libs/guile-gtk/guile-gtk-2.1.ebuild | |
parent | old (diff) | |
download | gentoo-2-684b290735463169da4667ed990d1de028ab1950.tar.gz gentoo-2-684b290735463169da4667ed990d1de028ab1950.tar.bz2 gentoo-2-684b290735463169da4667ed990d1de028ab1950.zip |
Fix prrll installation, 298803 and remoed broken test, #298802
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'x11-libs/guile-gtk/guile-gtk-2.1.ebuild')
-rw-r--r-- | x11-libs/guile-gtk/guile-gtk-2.1.ebuild | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/x11-libs/guile-gtk/guile-gtk-2.1.ebuild b/x11-libs/guile-gtk/guile-gtk-2.1.ebuild index b7b7cedf1b59..1ecd2bf5ad2e 100644 --- a/x11-libs/guile-gtk/guile-gtk-2.1.ebuild +++ b/x11-libs/guile-gtk/guile-gtk-2.1.ebuild @@ -1,8 +1,10 @@ # Copyright 1999-2010 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.4 2010/06/28 21:35:34 angelos Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/guile-gtk/guile-gtk-2.1.ebuild,v 1.5 2010/06/28 22:28:32 jlec Exp $ -inherit virtualx eutils +EAPI="2" + +inherit autotools eutils virtualx DESCRIPTION="GTK+ bindings for guile" HOMEPAGE="http://www.gnu.org/software/guile-gtk/" @@ -18,9 +20,6 @@ RDEPEND="dev-scheme/guile >=x11-libs/gtkglarea-1.90" DEPEND="${RDEPEND}" -# needs X -RESTRICT="test" - pkg_setup() { if has_version =dev-scheme/guile-1.8*; then local flags="deprecated" @@ -29,19 +28,20 @@ pkg_setup() { fi } -src_unpack() { - unpack ${A} - cd "${S}" +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_test() { + Xemake check || die "tests failed" +} src_install() { # bug #298803 - emake -j1 DESTDIR="${D}" install || die "make install failed" + emake DESTDIR="${D}" install || die "make install failed" dodoc README AUTHORS ChangeLog NEWS TODO insinto /usr/share/doc/${PF}/examples doins -r examples/ |