Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-ruby/rmagick: rmagick-2.13.0-r1.ebuild ChangeLog
Date: Tue, 05 Jan 2010 19:41:25
Message-Id: E1NSFHK-0003X8-9W@stork.gentoo.org
1 flameeyes 10/01/05 19:41:18
2
3 Modified: ChangeLog
4 Added: rmagick-2.13.0-r1.ebuild
5 Log:
6 Make use of ruby-fakegem rather than just ruby-ng; add support for Ruby 1.9 as it seems to work fine; no tests are available with the package; documentation is not currently generated (setup.rb is incompatible with the fakegem method).
7 (Portage version: 2.2_rc61/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.168 dev-ruby/rmagick/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rmagick/ChangeLog?rev=1.168&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rmagick/ChangeLog?rev=1.168&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rmagick/ChangeLog?r1=1.167&r2=1.168
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rmagick/ChangeLog,v
19 retrieving revision 1.167
20 retrieving revision 1.168
21 diff -u -r1.167 -r1.168
22 --- ChangeLog 28 Dec 2009 11:16:03 -0000 1.167
23 +++ ChangeLog 5 Jan 2010 19:41:17 -0000 1.168
24 @@ -1,6 +1,15 @@
25 # ChangeLog for dev-ruby/rmagick
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rmagick/ChangeLog,v 1.167 2009/12/28 11:16:03 graaff Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rmagick/ChangeLog,v 1.168 2010/01/05 19:41:17 flameeyes Exp $
30 +
31 +*rmagick-2.13.0-r1 (05 Jan 2010)
32 +
33 + 05 Jan 2010; Diego E. Pettenò <flameeyes@g.o>
34 + +rmagick-2.13.0-r1.ebuild:
35 + Make use of ruby-fakegem rather than just ruby-ng; add support for Ruby
36 + 1.9 as it seems to work fine; no tests are available with the package;
37 + documentation is not currently generated (setup.rb is incompatible with
38 + the fakegem method).
39
40 *rmagick-2.13.0 (28 Dec 2009)
41
42
43
44
45 1.1 dev-ruby/rmagick/rmagick-2.13.0-r1.ebuild
46
47 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rmagick/rmagick-2.13.0-r1.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rmagick/rmagick-2.13.0-r1.ebuild?rev=1.1&content-type=text/plain
49
50 Index: rmagick-2.13.0-r1.ebuild
51 ===================================================================
52 # Copyright 1999-2010 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $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 $
55
56 EAPI="2"
57 USE_RUBY="ruby18 ruby19"
58
59 RUBY_FAKEGEM_TASK_TEST=""
60 RUBY_FAKEGEM_TASK_DOC=""
61
62 RUBY_FAKEGEM_EXTRADOC="ChangeLog README.html README-Mac-OSX.txt"
63
64 inherit ruby-fakegem
65
66 DESCRIPTION="An interface between Ruby and the ImageMagick(TM) image processing library"
67 HOMEPAGE="http://rmagick.rubyforge.org/"
68 SRC_URI="mirror://rubyforge/rmagick/RMagick-${PV}.tar.bz2"
69
70 LICENSE="Artistic"
71 SLOT="0"
72 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
73 IUSE=""
74
75 # hdri causes extensive changes in the imagemagick internals, and
76 # rmagick is not ready to deal with those, see bug 184356.
77 RDEPEND=">=media-gfx/imagemagick-6.3.5.10[-hdri]"
78 DEPEND="${RDEPEND}"
79
80 S="${WORKDIR}/RMagick-${PV}"
81
82 each_ruby_configure() {
83 pushd ext/RMagick
84 ${RUBY} extconf.rb || die "extconf.rb failed"
85 popd
86 }
87
88 each_ruby_compile() {
89 pushd ext/RMagick
90 emake || die "emake failed"
91 popd
92 }
93
94 each_ruby_install() {
95 each_fakegem_install
96 ruby_fakegem_newins ext/RMagick/RMagick2.so lib/RMagick2.so
97 }
98
99 all_ruby_install() {
100 all_fakegem_install
101
102 docinto examples
103 dodoc examples/* || die "failed to install examples"
104 }