| 1 | # Copyright 1999-2009 Gentoo Foundation |
1 | # Copyright 1999-2009 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/gems.eclass,v 1.29 2009/08/20 08:55:01 graaff Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/gems.eclass,v 1.32 2009/11/29 19:10:01 flameeyes Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: gems.eclass |
5 | # @ECLASS: gems.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # ruby@gentoo.org |
7 | # ruby@gentoo.org |
| 8 | # |
8 | # |
| … | |
… | |
| 18 | # versions that are compatible and installed on the system. Format: rubyDD where |
18 | # versions that are compatible and installed on the system. Format: rubyDD where |
| 19 | # DD is the two-digit version suffix (e.g.: USE_RUBY="ruby19" for Ruby 1.9.1) |
19 | # DD is the two-digit version suffix (e.g.: USE_RUBY="ruby19" for Ruby 1.9.1) |
| 20 | |
20 | |
| 21 | inherit eutils ruby |
21 | inherit eutils ruby |
| 22 | |
22 | |
| 23 | SRC_URI="mirror://rubyforge/gems/${P}.gem" |
23 | SRC_URI="mirror://rubygems/${P}.gem" |
| 24 | |
24 | |
| 25 | IUSE="doc" |
25 | IUSE="doc" |
| 26 | |
26 | |
| 27 | DEPEND=" |
27 | DEPEND=" |
| 28 | || ( >=dev-ruby/rubygems-1.3.1 =dev-lang/ruby-1.9* ) |
28 | || ( >=dev-ruby/rubygems-1.3.1 =dev-lang/ruby-1.9* ) |
| … | |
… | |
| 66 | local myconf |
66 | local myconf |
| 67 | if use doc; then |
67 | if use doc; then |
| 68 | myconf="--rdoc --ri" |
68 | myconf="--rdoc --ri" |
| 69 | else |
69 | else |
| 70 | myconf="--no-rdoc --no-ri" |
70 | myconf="--no-rdoc --no-ri" |
|
|
71 | fi |
|
|
72 | |
|
|
73 | if [[ -n "${GEMS_FORCE_INSTALL}" ]]; then |
|
|
74 | myconf="${myconf} --force" |
| 71 | fi |
75 | fi |
| 72 | |
76 | |
| 73 | # I'm not sure how many ebuilds have correctly set USE_RUBY - let's assume |
77 | # I'm not sure how many ebuilds have correctly set USE_RUBY - let's assume |
| 74 | # ruby18 if they haven't, since even pure Ruby gems that have been written |
78 | # ruby18 if they haven't, since even pure Ruby gems that have been written |
| 75 | # against 1.8 can explode under 1.9. |
79 | # against 1.8 can explode under 1.9. |