diff options
Diffstat (limited to 'dev-ruby/simple-rss/simple-rss-1.3.1-r1.ebuild')
-rw-r--r-- | dev-ruby/simple-rss/simple-rss-1.3.1-r1.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/dev-ruby/simple-rss/simple-rss-1.3.1-r1.ebuild b/dev-ruby/simple-rss/simple-rss-1.3.1-r1.ebuild new file mode 100644 index 000000000000..b2f98b12cc93 --- /dev/null +++ b/dev-ruby/simple-rss/simple-rss-1.3.1-r1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +USE_RUBY="ruby19 ruby20 ruby21 ruby22" + +RUBY_FAKEGEM_TASK_DOC="doc" +RUBY_FAKEGEM_EXTRADOC="README.markdown" + +inherit ruby-fakegem + +DESCRIPTION="A simple, flexible, extensible, and liberal RSS and Atom reader for Ruby" +HOMEPAGE="http://simple-rss.rubyforge.org/" +LICENSE="LGPL-2" + +KEYWORDS="~amd64 ~x86" +SLOT="0" +IUSE="" + +ruby_add_bdepend "test? ( dev-ruby/rspec )" + +all_ruby_prepare() { + # Avoid dependency on bundler + sed -i -e '/bundler/d' Rakefile || die + + # https://github.com/cardmagic/simple-rss/pull/14 + sed -i -e 's/README/README.markdown/' Rakefile || die +} |