blob: 5ba6139b9afd88972164d360fa415a63b2651e18 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/haml/haml-2.2.16.ebuild,v 1.1 2009/12/21 00:13:10 flameeyes Exp $
EAPI=2
USE_RUBY="ruby18 ruby19 jruby"
RUBY_FAKEGEM_TASK_DOC="doc"
RUBY_FAKEGEM_EXTRADOC="CONTRIBUTING README.md"
RUBY_FAKEGEM_DOCDIR="doc"
inherit ruby-fakegem
DESCRIPTION="HAML - a ruby web page templating engine"
HOMEPAGE="http://haml.hamptoncatlin.com/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
# 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
}
ruby_add_bdepend test virtual/ruby-test-unit
ruby_add_bdepend doc "dev-ruby/yard dev-ruby/maruku"
|