diff options
author | Hans de Graaff <graaff@gentoo.org> | 2010-03-14 15:05:00 +0000 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2010-03-14 15:05:00 +0000 |
commit | b72aabcf63fcf9d5f5cbb40499de9b24bfc92f6b (patch) | |
tree | 2cd454e548312a7dc5829a78bf9c940c464b2b42 /dev-ruby/shorturl/shorturl-0.8.8.ebuild | |
parent | [www-client/uzbl] makefile patch applied upstream in experimental branch, don... (diff) | |
download | gentoo-2-b72aabcf63fcf9d5f5cbb40499de9b24bfc92f6b.tar.gz gentoo-2-b72aabcf63fcf9d5f5cbb40499de9b24bfc92f6b.tar.bz2 gentoo-2-b72aabcf63fcf9d5f5cbb40499de9b24bfc92f6b.zip |
Version bump: add VURL service.
(Portage version: 2.1.7.17/cvs/Linux x86_64)
Diffstat (limited to 'dev-ruby/shorturl/shorturl-0.8.8.ebuild')
-rw-r--r-- | dev-ruby/shorturl/shorturl-0.8.8.ebuild | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/dev-ruby/shorturl/shorturl-0.8.8.ebuild b/dev-ruby/shorturl/shorturl-0.8.8.ebuild new file mode 100644 index 000000000000..51a85dd49b3c --- /dev/null +++ b/dev-ruby/shorturl/shorturl-0.8.8.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/shorturl/shorturl-0.8.8.ebuild,v 1.1 2010/03/14 15:05:00 graaff Exp $ + +EAPI=2 + +USE_RUBY="ruby18 ruby19 jruby" + +RUBY_FAKEGEM_TASK_TEST="" +RUBY_FAKEGEM_TASK_DOC="" + +RUBY_FAKEGEM_EXTRADOC="ChangeLog README TODO" + +inherit ruby-fakegem eutils + +DESCRIPTION="A very simple library to use URL shortening services such as TinyURL or RubyURL." +HOMEPAGE="http://shorturl.rubyforge.org/" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~x86-fbsd" +IUSE="" + +all_ruby_prepare() { + epatch "${FILESDIR}"/${PN}-0.8.7+ruby-1.9.patch +} + +each_ruby_test() { + ${RUBY} -Ilib test/ts_all.rb || die "tests failed" +} + +all_ruby_install() { + all_fakegem_install + + pushd doc &>/dev/null + dohtml -r . || die + popd &>/dev/null +} |