blob: c05d95e2f6177b5ae9352a636d971a4b9bf4651a (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/libxml/libxml-0.3.6.ebuild,v 1.1 2006/03/31 14:38:57 caleb Exp $
inherit ruby gems
MY_P=${PN}-ruby-${PV}
DESCRIPTION="libxml for Ruby with a user friendly API, akin to REXML, but feature complete and significantly faster."
HOMEPAGE="http://libxml.rubyforge.org"
SRC_URI="http://gems.rubyforge.org/gems/${MY_P}.gem"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~ia64 ~ppc ~sparc ~x86"
IUSE=""
USE_RUBY="ruby18 ruby19"
DEPEND="virtual/ruby
>=dev-libs/libxml2-2.6.6"
#src_test() {
# cd test
# for i in *.rb ; do
# ruby -rtest/unit $i || die "test $i failed."
# done
#}
|