blob: 0628e44186ad9645471e0a71a9b7f8b56376b964 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/racc/racc-1.4.3.ebuild,v 1.7 2004/02/22 22:23:09 agriffis Exp $
S=${WORKDIR}/${P}-all
DESCRIPTION="LALR parser generator for Ruby"
SRC_URI="http://www.loveruby.net/archive/racc/${P}-all.tar.gz"
HOMEPAGE="http://www.loveruby.net/en/racc.html"
LICENSE="LGPL-2.1"
KEYWORDS="alpha hppa mips sparc x86"
IUSE=""
SLOT="0"
DEPEND=">=dev-lang/ruby-1.6.1
>=dev-ruby/amstd-1.9.5"
src_compile() {
ruby setup.rb config --without=amstd || die
ruby setup.rb setup || die
}
src_install () {
# It appears that this reconfig doesn't hurt anything.
# The --prefix and --rb-dir args don't work on the install line.
RB_DIR=`ruby -e 'require "rbconfig"; puts Config::CONFIG["sitelibdir"]'`
ruby setup.rb config \
--prefix=${D}/usr \
--rb-dir=${D}${RB_DIR} || die
ruby setup.rb install || die
}
|