blob: 27d148ee55a3eee984726bc330c09a9e4ea8df6e (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-glib2/ruby-glib2-0.12.0.ebuild,v 1.3 2005/06/27 19:23:27 gustavoz Exp $
inherit ruby ruby-gnome2 eutils
DESCRIPTION="Ruby Glib2 bindings"
KEYWORDS="~alpha x86 ~ppc ~ia64 sparc ~amd64"
IUSE=""
USE_RUBY="ruby16 ruby18 ruby19"
DEPEND=">=dev-libs/glib-2"
src_test() {
if [ -z "$DISPLAY" ] || ! (/usr/X11R6/bin/xhost &>/dev/null) ; then
ewarn
ewarn "You are not authorised to connect to X server to run test."
ewarn "Disabling run test."
ewarn
epause; ebeep; epause
else
cd tests
ruby test-glib2.rb || die "test-glib2.rb failed"
fi
}
|