blob: 66255983764ad8b4b4cb5c7b1fb55d355e031a89 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/oniguruma/oniguruma-1.1.0-r1.ebuild,v 1.1 2010/02/09 18:12:35 graaff Exp $
EAPI="2"
USE_RUBY="ruby18"
RUBY_FAKEGEM_TASK_DOC="docs"
RUBY_FAKEGEM_EXTRADOC="History.txt README.txt Syntax.txt"
inherit ruby-fakegem
DESCRIPTION="Ruby bindings to the Oniguruma"
HOMEPAGE="http://oniguruma.rubyforge.org/"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
IUSE=""
DEPEND="dev-libs/oniguruma"
RUBY_PATCHES=( "${P}-unmonkey.patch" )
ruby_add_bdepend doc dev-ruby/hoe
ruby_add_bdepend test "dev-ruby/hoe virtual/ruby-test-unit"
each_ruby_configure() {
pushd ext >& /dev/null
${RUBY} extconf.rb
popd >& /dev/null
}
each_ruby_compile() {
pushd ext >& /dev/null
emake || die "Compilation failed."
popd >& /dev/null
}
each_ruby_install() {
mv ext/oregexp.so lib || die "Unable to move oregexp.so"
each_fakegem_install
}
|