diff options
author | Hans de Graaff <graaff@gentoo.org> | 2012-09-15 09:04:23 +0000 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2012-09-15 09:04:23 +0000 |
commit | 6612fc659daa981b1970e8cb7b5b713b35ab6e34 (patch) | |
tree | b3980943b38b3b1bdfe0383a7c198599cf5cb7c8 /dev-ruby/rcairo | |
parent | Cleanup. (diff) | |
download | gentoo-2-6612fc659daa981b1970e8cb7b5b713b35ab6e34.tar.gz gentoo-2-6612fc659daa981b1970e8cb7b5b713b35ab6e34.tar.bz2 gentoo-2-6612fc659daa981b1970e8cb7b5b713b35ab6e34.zip |
Cleanup.
(Portage version: 2.1.11.9/cvs/Linux x86_64)
Diffstat (limited to 'dev-ruby/rcairo')
-rw-r--r-- | dev-ruby/rcairo/ChangeLog | 5 | ||||
-rw-r--r-- | dev-ruby/rcairo/rcairo-1.10.2.ebuild | 73 |
2 files changed, 4 insertions, 74 deletions
diff --git a/dev-ruby/rcairo/ChangeLog b/dev-ruby/rcairo/ChangeLog index 2ee3a9ab59da..70c38d66c24e 100644 --- a/dev-ruby/rcairo/ChangeLog +++ b/dev-ruby/rcairo/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-ruby/rcairo # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rcairo/ChangeLog,v 1.75 2012/08/17 13:02:53 johu Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rcairo/ChangeLog,v 1.76 2012/09/15 09:04:23 graaff Exp $ + + 15 Sep 2012; Hans de Graaff <graaff@gentoo.org> -rcairo-1.10.2.ebuild: + Cleanup. 17 Aug 2012; Johannes Huber <johu@gentoo.org> rcairo-1.10.2-r1.ebuild: Stable for x86, wrt bug #428040 diff --git a/dev-ruby/rcairo/rcairo-1.10.2.ebuild b/dev-ruby/rcairo/rcairo-1.10.2.ebuild deleted file mode 100644 index 4c009d2bb6e0..000000000000 --- a/dev-ruby/rcairo/rcairo-1.10.2.ebuild +++ /dev/null @@ -1,73 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rcairo/rcairo-1.10.2.ebuild,v 1.5 2012/07/01 18:31:41 armin76 Exp $ - -EAPI=2 - -# jruby → cannot work, it's a compiled extension -USE_RUBY="ruby18 ree18" - -RUBY_FAKEGEM_NAME="cairo" - -# Documentation depends on files that are not distributed. -RUBY_FAKEGEM_TASK_DOC="" - -# Depends on test-unit-2 which is currently masked. -RUBY_FAKEGEM_TASK_TEST="" - -RUBY_FAKEGEM_DOCDIR="doc" - -RUBY_FAKEGEM_EXTRADOC="AUTHORS NEWS" - -inherit multilib ruby-fakegem - -DESCRIPTION="Ruby bindings for cairo" -HOMEPAGE="http://cairographics.org/rcairo/" - -IUSE="" - -SLOT="0" -LICENSE="|| ( Ruby GPL-2 )" -KEYWORDS="~amd64 ~ppc ~x86" - -RDEPEND="${RDEPEND} - >=x11-libs/cairo-1.2.0[svg]" -DEPEND="${DEPEND} - >=x11-libs/cairo-1.2.0[svg]" - -ruby_add_bdepend " - dev-ruby/pkg-config - dev-ruby/ruby-glib2 - test? ( >=dev-ruby/test-unit-2.1.0-r1:2 )" - -each_ruby_configure() { - ${RUBY} -Cext/cairo extconf.rb || die "extconf failed" -} - -each_ruby_compile() { - emake -Cext/cairo || die "make failed" - - # again, try to make it more standard, to install it more easily. - cp ext/cairo/cairo$(get_modname) lib/ || die -} - -each_ruby_test() { - # don't rely on the Rakefile because it's a mess to load with - # their hierarchy, do it manually. - ${RUBY} -Ilib -r ./test/cairo-test-utils.rb \ - -e 'gem "test-unit"; require "test/unit"; Dir.glob("test/**/test_*.rb") {|f| load f}' || die "tests failed" -} - -each_ruby_install() { - each_fakegem_install - - insinto $(ruby_get_hdrdir) - doins ext/cairo/rb_cairo.h || die "Cannot install header file." -} - -all_ruby_install() { - all_fakegem_install - - insinto /usr/share/doc/${PF}/samples - doins -r samples/* || die "Cannot install sample files." -} |