summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans de Graaff <graaff@gentoo.org>2013-01-23 18:15:01 +0000
committerHans de Graaff <graaff@gentoo.org>2013-01-23 18:15:01 +0000
commit92f8783c7a8cbbe0e532d83bac1cb30d9f3ea468 (patch)
tree7abc04cf0ce5d69f25d5c6247dd535d8e62a2a74 /dev-ruby/rmagick
parentAdd myself as maintainer (diff)
downloadgentoo-2-92f8783c7a8cbbe0e532d83bac1cb30d9f3ea468.tar.gz
gentoo-2-92f8783c7a8cbbe0e532d83bac1cb30d9f3ea468.tar.bz2
gentoo-2-92f8783c7a8cbbe0e532d83bac1cb30d9f3ea468.zip
Cleanup.
(Portage version: 2.1.11.31/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
Diffstat (limited to 'dev-ruby/rmagick')
-rw-r--r--dev-ruby/rmagick/ChangeLog7
-rw-r--r--dev-ruby/rmagick/rmagick-2.13.0-r1.ebuild60
2 files changed, 5 insertions, 62 deletions
diff --git a/dev-ruby/rmagick/ChangeLog b/dev-ruby/rmagick/ChangeLog
index e12f70fa5351..a22987ee9fd9 100644
--- a/dev-ruby/rmagick/ChangeLog
+++ b/dev-ruby/rmagick/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-ruby/rmagick
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rmagick/ChangeLog,v 1.191 2012/11/08 10:36:28 blueness Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rmagick/ChangeLog,v 1.192 2013/01/23 18:15:01 graaff Exp $
+
+ 23 Jan 2013; Hans de Graaff <graaff@gentoo.org> -rmagick-2.13.0-r1.ebuild:
+ Cleanup.
08 Nov 2012; Anthony G. Basile <blueness@gentoo.org> rmagick-2.13.1.ebuild:
stable ppc ppc64, bug #435116
diff --git a/dev-ruby/rmagick/rmagick-2.13.0-r1.ebuild b/dev-ruby/rmagick/rmagick-2.13.0-r1.ebuild
deleted file mode 100644
index c9d4a144a2ae..000000000000
--- a/dev-ruby/rmagick/rmagick-2.13.0-r1.ebuild
+++ /dev/null
@@ -1,60 +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/rmagick/rmagick-2.13.0-r1.ebuild,v 1.14 2012/07/01 18:31:37 armin76 Exp $
-
-EAPI="2"
-USE_RUBY="ruby18"
-
-RUBY_FAKEGEM_TASK_TEST=""
-RUBY_FAKEGEM_TASK_DOC=""
-
-RUBY_FAKEGEM_EXTRADOC="ChangeLog README.html README-Mac-OSX.txt"
-
-inherit 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"
-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}"
-
-S="${WORKDIR}/RMagick-${PV}"
-
-RUBY_PATCHES=( "rmagick-2.13.0-magicklibsubversion.patch" )
-
-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.so lib/RMagick2.so
-}
-
-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
-}