blob: 718af39aac44e019ffd0a0c646342d10ba64251b (
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/fxruby/fxruby-1.6.19.ebuild,v 1.2 2009/08/22 21:10:29 graaff Exp $
EAPI="1"
RUBY_BUG_145222=yes
inherit ruby
MY_P="FXRuby-${PV}"
DESCRIPTION="Ruby language binding to the FOX GUI toolkit"
HOMEPAGE="http://www.fxruby.org/"
SRC_URI="mirror://rubyforge/${PN}/${MY_P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="1.6"
KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
IUSE="examples doc"
DEPEND="x11-libs/fox:1.6
>=x11-libs/fxscintilla-1.62-r1"
USE_RUBY="ruby18 ruby19"
S="${WORKDIR}/${MY_P}"
src_unpack() {
unpack ${A}
cd "${S}"
sed -i -e 's:libs, "fxscintilla":libs, "fxscintilla-1.6":g' \
ext/fox16/extconf.rb || die "sed error"
einfo "Avoid -O0 builds"
sed -i -e 's:-O0 -Iinclude:-Iinclude:g' \
ext/fox16/extconf.rb || die "Can't fix forced -O0"
}
src_install() {
${RUBY} install.rb config --prefix="${D}/usr" "$@" \
${RUBY_ECONF} || die "install.rb config failed"
${RUBY} install.rb install "$@" --prefix="${D}" \
${RUBY_ECONF} || die "install.rb install failed"
# from ruby.eclass, but with use flag control
if use doc; then
local rdbase=/usr/share/doc/${PF}/rd rdfiles=$(find . -name '*.rd*')
einfo "running dodoc for ruby ;)"
insinto ${rdbase}
[ -n "${rdfiles}" ] && doins ${rdfiles}
rmdir "${D}"${rdbase} 2>/dev/null || true
if [ -d doc -o -d docs ] ; then
dohtml -x html -r {doc,docs}/*
dohtml -r {doc,docs}/html/*
else
dohtml -r *
fi
for i in ChangeLog* [[:upper:]][[:upper:]]* ; do
[ -e $i ] && dodoc $i
done
fi
if use examples; then
for dir in sample samples example examples; do
if [ -d ${dir} ] ; then
dodir /usr/share/doc/${PF}
cp -pPR ${dir} "${D}"/usr/share/doc/${PF} || die "cp failed"
fi
done
fi
}
|