diff options
Diffstat (limited to 'dev-ruby/rmagick/rmagick-2.13.0-r1.ebuild')
-rw-r--r-- | dev-ruby/rmagick/rmagick-2.13.0-r1.ebuild | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/dev-ruby/rmagick/rmagick-2.13.0-r1.ebuild b/dev-ruby/rmagick/rmagick-2.13.0-r1.ebuild new file mode 100644 index 000000000000..6c038e50b6cc --- /dev/null +++ b/dev-ruby/rmagick/rmagick-2.13.0-r1.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2010 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.1 2010/01/05 19:41:17 flameeyes Exp $ + +EAPI="2" +USE_RUBY="ruby18 ruby19" + +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="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" +IUSE="" + +# 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.3.5.10[-hdri]" +DEPEND="${RDEPEND}" + +S="${WORKDIR}/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.so lib/RMagick2.so +} + +all_ruby_install() { + all_fakegem_install + + docinto examples + dodoc examples/* || die "failed to install examples" +} |