blob: 79bda077c5d5ec9b9661b0d47a0f57019ed7dfe5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rmagick/rmagick-1.15.7.ebuild,v 1.7 2007/07/10 18:54:39 armin76 Exp $
inherit ruby
# The gem for this package doesn't seem to play well with portage. It
# runs a GNUish configure script, with argument passed directly from
# the gem install command, but gem install doesn't use the same style
# of arguments. Thus, unless you're smart enough to come up with a
# fix, please leave this as a source package install.
DESCRIPTION="An interface between Ruby and the ImageMagick(TM) image processing library"
HOMEPAGE="http://rmagick.rubyforge.org/"
SRC_URI="http://rubyforge.org/frs/download.php/21576/RMagick-${PV}.tar.bz2"
LICENSE="Artistic"
SLOT="0"
KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 ~sparc x86"
IUSE="examples doc"
DEPEND="virtual/ruby
>=media-gfx/imagemagick-6.0"
S=${WORKDIR}/RMagick-${PV}
# Using a custom src_compile instead of the ruby one because the ruby
# one gets confused by an additional setup.rb that should not be used
# here.
src_compile() {
myconf="${RUBY_ECONF} ${EXTRA_ECONF}"
# When documentation is built many examples are also run. Not all
# of them may work (e.g. due to missing additional dependencies)
# so we allow the examples to fail.
if ! use doc ; then
myconf="${myconf} --disable-htmldoc --enable-allow-example-errors"
fi
./configure \
--prefix=/usr \
--host=${CHOST} \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--datadir=/usr/share \
--sysconfdir=/etc \
--localstatedir=/var/lib \
--with-ruby=${RUBY} \
${myconf} \
"$@" || die "econf failed"
ruby_emake "$@" || die
}
# Use a custom src_install instead of the default one in ruby.eclass
# because the one in ruby.eclass does not include setting the prefix
# for the installation step.
src_install() {
RUBY_ECONF="${RUBY_ECONF} ${EXTRA_ECONF}"
${RUBY} setup.rb config --prefix=${D}/usr "$@" \
${RUBY_ECONF} || die "setup.rb config failed"
${RUBY} setup.rb install --prefix=${D} "$@" \
${RUBY_ECONF} || die "setup.rb install failed"
cd "${S}"
dodoc ChangeLog README.html README-Mac-OSX.txt README.txt
}
|