diff options
author | Hans de Graaff <graaff@gentoo.org> | 2011-01-07 15:01:46 +0000 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2011-01-07 15:01:46 +0000 |
commit | 115da6e4347202740c741e598de8401bf67ec4d4 (patch) | |
tree | 2dd8c201330e96d0941a50ca988067726b96ea77 /dev-ruby/rcairo | |
parent | Use proper call to install gemspec now that the eclass changed interface. (diff) | |
download | gentoo-2-115da6e4347202740c741e598de8401bf67ec4d4.tar.gz gentoo-2-115da6e4347202740c741e598de8401bf67ec4d4.tar.bz2 gentoo-2-115da6e4347202740c741e598de8401bf67ec4d4.zip |
Remove old version.
(Portage version: 2.1.9.25/cvs/Linux x86_64)
Diffstat (limited to 'dev-ruby/rcairo')
-rw-r--r-- | dev-ruby/rcairo/ChangeLog | 7 | ||||
-rw-r--r-- | dev-ruby/rcairo/rcairo-1.8.0-r1.ebuild | 44 |
2 files changed, 5 insertions, 46 deletions
diff --git a/dev-ruby/rcairo/ChangeLog b/dev-ruby/rcairo/ChangeLog index e72edb220bc2..f55a1c34ec7e 100644 --- a/dev-ruby/rcairo/ChangeLog +++ b/dev-ruby/rcairo/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-ruby/rcairo -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rcairo/ChangeLog,v 1.45 2010/10/20 21:45:30 ranger Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rcairo/ChangeLog,v 1.46 2011/01/07 15:01:46 graaff Exp $ + + 07 Jan 2011; Hans de Graaff <graaff@gentoo.org> -rcairo-1.8.0-r1.ebuild: + Remove old version. 20 Oct 2010; Brent Baude <ranger@gentoo.org> rcairo-1.8.1.ebuild: Marking rcairo-1.8.1 ppc for bug 329807 diff --git a/dev-ruby/rcairo/rcairo-1.8.0-r1.ebuild b/dev-ruby/rcairo/rcairo-1.8.0-r1.ebuild deleted file mode 100644 index 8d102c275a7f..000000000000 --- a/dev-ruby/rcairo/rcairo-1.8.0-r1.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rcairo/rcairo-1.8.0-r1.ebuild,v 1.8 2009/09/27 13:47:19 nixnut Exp $ - -EAPI=2 -inherit ruby - -IUSE="svg" - -DESCRIPTION="Ruby bindings for cairo" -HOMEPAGE="http://cairographics.org/rcairo/" -SRC_URI="http://cairographics.org/releases/${P}.tar.gz" - -SLOT="0" -LICENSE="|| ( Ruby GPL-2 )" -KEYWORDS="alpha amd64 ia64 ppc sparc x86" - -USE_RUBY="ruby18" - -RDEPEND=">=x11-libs/cairo-1.2.0[svg?]" -DEPEND="${RDEPEND} - dev-util/pkgconfig" - -dofakegemspec() { - cat - > "${T}"/${P}.gemspec <<EOF -Gem::Specification.new do |s| - s.name = "${PN}" - s.version = "${PV}" - s.summary = "${DESCRIPTION}" - s.homepage = "${HOMEPAGE}" -end -EOF - - # Note: this only works with 1.8 so if you need to make it work - # with 1.9 you better wait for ruby-fakegem.eclass. - insinto $(${RUBY} -r rbconfig -e 'print Config::CONFIG["sitedir"]')/../gems/1.8/specifications - doins "${T}"/${P}.gemspec || die "Unable to install fake gemspec" -} - -src_install() { - ruby_src_install - - dofakegemspec -} |