diff options
author | Manuel Rüger <mrueg@gentoo.org> | 2014-09-18 17:35:09 +0000 |
---|---|---|
committer | Manuel Rüger <mrueg@gentoo.org> | 2014-09-18 17:35:09 +0000 |
commit | 111c56053f1835df339938c1237cf0d6f3ca3156 (patch) | |
tree | 6c1d06f9603e1cfb5f6078dc7513d107dd1cf9f8 /dev-ruby/ruby-mp3info/ruby-mp3info-0.8.5.ebuild | |
parent | Version bump. (diff) | |
download | historical-111c56053f1835df339938c1237cf0d6f3ca3156.tar.gz historical-111c56053f1835df339938c1237cf0d6f3ca3156.tar.bz2 historical-111c56053f1835df339938c1237cf0d6f3ca3156.zip |
Version bump.
Package-Manager: portage-2.2.13/cvs/Linux x86_64
Diffstat (limited to 'dev-ruby/ruby-mp3info/ruby-mp3info-0.8.5.ebuild')
-rw-r--r-- | dev-ruby/ruby-mp3info/ruby-mp3info-0.8.5.ebuild | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/dev-ruby/ruby-mp3info/ruby-mp3info-0.8.5.ebuild b/dev-ruby/ruby-mp3info/ruby-mp3info-0.8.5.ebuild new file mode 100644 index 000000000000..3a5eea24cf74 --- /dev/null +++ b/dev-ruby/ruby-mp3info/ruby-mp3info-0.8.5.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-mp3info/ruby-mp3info-0.8.5.ebuild,v 1.1 2014/09/18 17:35:05 mrueg Exp $ + +EAPI=5 +USE_RUBY="ruby19 ruby20 ruby21" + +RUBY_FAKEGEM_TASK_DOC="docs" +RUBY_FAKEGEM_DOCDIR="doc" +RUBY_FAKEGEM_EXTRADOC="History.txt README.md" + +inherit ruby-fakegem + +DESCRIPTION="A pure Ruby library for access to mp3 files (internal infos and tags)" +HOMEPAGE="http://rubyforge.org/projects/ruby-mp3info/" +SRC_URI="https://github.com/moumar/${PN}/archive/v${PV}.tar.gz -> ${P}-git.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +IUSE="" + +DEPEND+=" test? ( media-sound/id3v2 )" + +ruby_add_bdepend "doc? ( dev-ruby/hoe )" +ruby_add_bdepend "test? ( dev-ruby/hoe dev-ruby/test-unit:2 )" + +all_ruby_prepare() { + # Use a newer test-unit than is shipped with ruby19 + sed -i -e '6igem "test-unit"' test/test_ruby-mp3info.rb || die +} |