blob: 02d8399d7f0315e5b54d5a4676e6986ff0f4caf1 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/haml/haml-2.2.24.ebuild,v 1.2 2010/05/22 13:28:36 flameeyes Exp $
EAPI=2
USE_RUBY="ruby18"
RUBY_FAKEGEM_TASK_DOC="doc"
RUBY_FAKEGEM_EXTRADOC="CONTRIBUTING README.md"
RUBY_FAKEGEM_DOCDIR="doc"
RUBY_FAKEGEM_EXTRAINSTALL="init.rb"
inherit ruby-fakegem
DESCRIPTION="HAML - a ruby web page templating engine"
HOMEPAGE="http://haml.hamptoncatlin.com/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
# TODO: haml has some emacs modes that it could be installing, in case
IUSE=""
all_ruby_prepare() {
sed -i -e '/haml.gemspec/,/Task\[:package\]/s:^:#:' "${S}"/Rakefile
}
each_ruby_install() {
each_fakegem_install
# This is needed otherwise it fails at runtime
ruby_fakegem_doins VERSION VERSION_NAME
}
# The html engine requires hpricot
ruby_add_rdepend dev-ruby/hpricot
# It could use merb during testing as well, but it's not mandatory
ruby_add_bdepend "
test? (
virtual/ruby-test-unit
dev-ruby/actionpack
)
doc? (
dev-ruby/yard
dev-ruby/maruku
)"
|