blob: 1ff05f517f18b5cf854a3dbcbf50185cdc3194a5 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/rails-2.3.14.ebuild,v 1.4 2011/08/24 19:20:56 maekke Exp $
EAPI=2
USE_RUBY="ruby18 ree18"
RUBY_FAKEGEM_EXTRAINSTALL="builtin configs doc dispatches environments fresh_rakefile helpers html README"
RUBY_FAKEGEM_EXTRADOC="README CHANGELOG"
RUBY_FAKEGEM_BINWRAP=""
# gem lacks tests
RUBY_FAKEGEM_TASK_TEST=""
inherit ruby-fakegem
DESCRIPTION="ruby on rails is a web-application and persistance framework"
HOMEPAGE="http://www.rubyonrails.org"
LICENSE="MIT"
SLOT="2.3"
KEYWORDS="amd64 ~ia64 ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris"
IUSE=""
RDEPEND=">=app-admin/eselect-rails-0.15"
ruby_add_rdepend ">=dev-ruby/rake-0.8.3
dev-ruby/rdoc
~dev-ruby/activerecord-${PV}
~dev-ruby/activeresource-${PV}
~dev-ruby/activesupport-${PV}
~dev-ruby/actionmailer-${PV}
~dev-ruby/actionpack-${PV}"
ruby_add_bdepend "doc? ( dev-ruby/redcloth )"
all_ruby_prepare() {
sed -i -e '/horo/d' Rakefile || die "Could not remove reference to unavailable documentation template."
# Create the documentation that we create on the fly in a separate
# directory, since we need to install the doc directory for the
# rails script.
sed -i -e "s/rdoc_dir = 'doc'/rdoc_dir = 'rdoc'/" Rakefile || die
}
all_ruby_install() {
all_fakegem_install
ruby_fakegem_binwrapper rails rails-${PV}
if use doc; then
pushd rdoc
docinto api
dohtml -r *
popd
fi
}
pkg_postinst() {
elog "To select between slots of rails, use:"
elog "\teselect rails"
eselect rails update
}
pkg_postrm() {
eselect rails update
}
|