summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2014-11-05 13:56:52 +0000
committerManuel Rüger <mrueg@gentoo.org>2014-11-05 13:56:52 +0000
commit7e0ffec87156467a3ae2376d88456441f8e7a3b0 (patch)
tree704ceeb51dac11cee88d19cdd42cc491f0511c76 /dev-ruby
parentmedia-gfx/uniconvertor: Add additional HOMEPAGE for version 2, thanks Arfreve... (diff)
downloadgentoo-2-7e0ffec87156467a3ae2376d88456441f8e7a3b0.tar.gz
gentoo-2-7e0ffec87156467a3ae2376d88456441f8e7a3b0.tar.bz2
gentoo-2-7e0ffec87156467a3ae2376d88456441f8e7a3b0.zip
Cleanup old.
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'dev-ruby')
-rw-r--r--dev-ruby/rmagick/ChangeLog5
-rw-r--r--dev-ruby/rmagick/rmagick-2.13.2.ebuild57
2 files changed, 4 insertions, 58 deletions
diff --git a/dev-ruby/rmagick/ChangeLog b/dev-ruby/rmagick/ChangeLog
index 06f939c6c017..a9279b6d3099 100644
--- a/dev-ruby/rmagick/ChangeLog
+++ b/dev-ruby/rmagick/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-ruby/rmagick
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rmagick/ChangeLog,v 1.208 2014/11/05 11:31:51 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rmagick/ChangeLog,v 1.209 2014/11/05 13:56:52 mrueg Exp $
+
+ 05 Nov 2014; Manuel Rüger <mrueg@gentoo.org> -rmagick-2.13.2.ebuild:
+ Cleanup old.
05 Nov 2014; Agostino Sarubbo <ago@gentoo.org> rmagick-2.13.2-r1.ebuild:
Stable for ppc64, wrt bug #512178
diff --git a/dev-ruby/rmagick/rmagick-2.13.2.ebuild b/dev-ruby/rmagick/rmagick-2.13.2.ebuild
deleted file mode 100644
index aa725f900797..000000000000
--- a/dev-ruby/rmagick/rmagick-2.13.2.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rmagick/rmagick-2.13.2.ebuild,v 1.7 2014/04/05 23:30:45 mrueg Exp $
-
-EAPI=5
-USE_RUBY="ruby19"
-
-RUBY_FAKEGEM_TASK_TEST=""
-RUBY_FAKEGEM_TASK_DOC=""
-
-RUBY_FAKEGEM_EXTRADOC="ChangeLog README.html README-Mac-OSX.txt"
-
-inherit multilib ruby-fakegem
-
-DESCRIPTION="An interface between Ruby and the ImageMagick(TM) image processing library"
-HOMEPAGE="http://rmagick.rubyforge.org/"
-SRC_URI="mirror://rubyforge/rmagick/RMagick-${PV}.tar.bz2"
-
-LICENSE="Artistic"
-SLOT="0"
-KEYWORDS="amd64 hppa ~mips ppc ppc64 x86 ~x86-macos"
-IUSE="doc"
-
-# hdri causes extensive changes in the imagemagick internals, and
-# rmagick is not ready to deal with those, see bug 184356.
-RDEPEND=">=media-gfx/imagemagick-6.4.9:=[-hdri]"
-DEPEND="${RDEPEND}"
-
-RUBY_S="RMagick-${PV}"
-
-each_ruby_configure() {
- pushd ext/RMagick
- ${RUBY} extconf.rb || die "extconf.rb failed"
- popd
-}
-
-each_ruby_compile() {
- pushd ext/RMagick
- emake || die "emake failed"
- popd
-}
-
-each_ruby_install() {
- each_fakegem_install
- ruby_fakegem_newins ext/RMagick/RMagick2$(get_modname) lib/RMagick2$(get_modname)
-}
-
-all_ruby_install() {
- all_fakegem_install
-
- docinto examples
- dodoc examples/* || die "failed to install examples"
-
- if use doc ; then
- dohtml -r doc || die "failed to install documentation"
- fi
-}