45 lines
1.1 KiB
Bash
45 lines
1.1 KiB
Bash
# Copyright 1999-2014 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/compass/compass-0.12.7.ebuild,v 1.1 2014/08/18 05:48:14 graaff Exp $
|
|
|
|
EAPI=5
|
|
|
|
USE_RUBY="ruby19"
|
|
|
|
RUBY_FAKEGEM_TASK_TEST="-Ilib test features"
|
|
RUBY_FAKEGEM_EXTRAINSTALL="frameworks"
|
|
RUBY_FAKEGEM_RECIPE_DOC="rdoc"
|
|
|
|
inherit ruby-fakegem
|
|
|
|
DESCRIPTION="Sass-based Stylesheet Framework"
|
|
HOMEPAGE="http://compass-style.org/"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE="test"
|
|
|
|
ruby_add_bdepend "
|
|
>=dev-ruby/sass-3.2.19:0
|
|
>=dev-ruby/chunky_png-1.2
|
|
>=dev-ruby/fssm-0.2.7
|
|
test? (
|
|
dev-ruby/mocha:0.13
|
|
dev-ruby/css_parser
|
|
dev-util/cucumber
|
|
)
|
|
"
|
|
|
|
all_ruby_prepare() {
|
|
sed -e '/.*[Bb]undler.*/d' \
|
|
-i Rakefile || die "sed failed"
|
|
sed -e '/require \"mocha\/test_unit\"/d' \
|
|
-i test/test_helper.rb || die "sed failed"
|
|
|
|
sed -i -e '1igem "mocha", "~> 0.13.0"' test/test_helper.rb || die
|
|
|
|
sed -i -e "s:/tmp:${TMPDIR}:" features/step_definitions/command_line_steps.rb || die
|
|
# This scenario fails, not clear yet why.
|
|
sed -i -e '/Watching a project for changes/,/^$/ d' features/command_line.feature || die
|
|
}
|