| 1 | # Copyright 1999-2004 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/ruby-ng.eclass,v 1.3 2009/12/05 11:32:19 flameeyes Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/ruby-ng.eclass,v 1.9 2010/04/02 20:26:21 a3li Exp $ |
| 4 | # |
4 | # |
| 5 | # @ECLASS: ruby-ng.eclass |
5 | # @ECLASS: ruby-ng.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # Ruby herd <ruby@gentoo.org> |
7 | # Ruby herd <ruby@gentoo.org> |
| 8 | # |
8 | # |
| … | |
… | |
| 119 | _ruby_add_bdepend() { |
119 | _ruby_add_bdepend() { |
| 120 | local atom=$1 |
120 | local atom=$1 |
| 121 | local conditions=$2 |
121 | local conditions=$2 |
| 122 | |
122 | |
| 123 | for condition in $conditions; do |
123 | for condition in $conditions; do |
|
|
124 | hasq $condition "$IUSE" || IUSE="${IUSE} $condition" |
| 124 | atom="${condition}? ( ${atom} )" |
125 | atom="${condition}? ( ${atom} )" |
| 125 | done |
126 | done |
| 126 | |
127 | |
| 127 | DEPEND="${DEPEND} ${atom}" |
128 | DEPEND="${DEPEND} ${atom}" |
| 128 | RDEPEND="${RDEPEND}" |
129 | RDEPEND="${RDEPEND}" |
| … | |
… | |
| 131 | _ruby_add_rdepend() { |
132 | _ruby_add_rdepend() { |
| 132 | local atom=$1 |
133 | local atom=$1 |
| 133 | local conditions=$2 |
134 | local conditions=$2 |
| 134 | |
135 | |
| 135 | for condition in $conditions; do |
136 | for condition in $conditions; do |
|
|
137 | hasq $condition "$IUSE" || IUSE="${IUSE} $condition" |
| 136 | atom="${condition}? ( ${atom} )" |
138 | atom="${condition}? ( ${atom} )" |
| 137 | done |
139 | done |
| 138 | |
140 | |
| 139 | RDEPEND="${RDEPEND} ${atom}" |
141 | RDEPEND="${RDEPEND} ${atom}" |
| 140 | _ruby_add_bdepend "$atom" test |
142 | _ruby_add_bdepend "$atom" test |
| … | |
… | |
| 240 | local invoked=no |
242 | local invoked=no |
| 241 | for _ruby_implementation in ${USE_RUBY}; do |
243 | for _ruby_implementation in ${USE_RUBY}; do |
| 242 | # only proceed if it's requested |
244 | # only proceed if it's requested |
| 243 | use ruby_targets_${_ruby_implementation} || continue |
245 | use ruby_targets_${_ruby_implementation} || continue |
| 244 | |
246 | |
|
|
247 | local _ruby_name=$_ruby_implementation |
|
|
248 | |
|
|
249 | # Add all USE_RUBY values where the flag name diverts from the binary here |
|
|
250 | case $_ruby_implementation in |
|
|
251 | ree18) |
|
|
252 | _ruby_name=rubyee18 |
|
|
253 | ;; |
|
|
254 | esac |
|
|
255 | |
| 245 | RUBY=$(type -p $_ruby_implementation 2>/dev/null) |
256 | RUBY=$(type -p $_ruby_name 2>/dev/null) |
| 246 | invoked=yes |
257 | invoked=yes |
| 247 | |
258 | |
| 248 | if [[ -n "$1" ]]; then |
259 | if [[ -n "$1" ]]; then |
| 249 | _ruby_invoke_environment $_ruby_implementation "$@" |
260 | _ruby_invoke_environment $_ruby_implementation "$@" |
| 250 | fi |
261 | fi |
| … | |
… | |
| 265 | _ruby_each_implementation |
276 | _ruby_each_implementation |
| 266 | } |
277 | } |
| 267 | |
278 | |
| 268 | # @FUNCTION: ruby-ng_src_unpack |
279 | # @FUNCTION: ruby-ng_src_unpack |
| 269 | # @DESCRIPTION: |
280 | # @DESCRIPTION: |
| 270 | # Unpack the source archive, including gems. |
281 | # Unpack the source archive. |
| 271 | ruby-ng_src_unpack() { |
282 | ruby-ng_src_unpack() { |
| 272 | mkdir "${WORKDIR}"/all |
283 | mkdir "${WORKDIR}"/all |
| 273 | pushd "${WORKDIR}"/all &>/dev/null |
284 | pushd "${WORKDIR}"/all &>/dev/null |
| 274 | |
285 | |
| 275 | # We don't support an each-unpack, it's either all or nothing! |
286 | # We don't support an each-unpack, it's either all or nothing! |
| … | |
… | |
| 316 | # almost every other ebuild. |
327 | # almost every other ebuild. |
| 317 | find . -name '._*' -delete |
328 | find . -name '._*' -delete |
| 318 | |
329 | |
| 319 | _ruby_invoke_environment all _ruby_apply_patches |
330 | _ruby_invoke_environment all _ruby_apply_patches |
| 320 | |
331 | |
|
|
332 | _PHASE="source copy" \ |
| 321 | _ruby_each_implementation _ruby_source_copy |
333 | _ruby_each_implementation _ruby_source_copy |
| 322 | |
334 | |
| 323 | if type each_ruby_prepare &>/dev/null; then |
335 | if type each_ruby_prepare &>/dev/null; then |
| 324 | _ruby_each_implementation each_ruby_prepare |
336 | _ruby_each_implementation each_ruby_prepare |
| 325 | fi |
337 | fi |
| 326 | } |
338 | } |
| … | |
… | |
| 409 | # @FUNCTION: doruby |
421 | # @FUNCTION: doruby |
| 410 | # @USAGE: file [file...] |
422 | # @USAGE: file [file...] |
| 411 | # @DESCRIPTION: |
423 | # @DESCRIPTION: |
| 412 | # Installs the specified file(s) into the sitelibdir of the Ruby interpreter in ${RUBY}. |
424 | # Installs the specified file(s) into the sitelibdir of the Ruby interpreter in ${RUBY}. |
| 413 | doruby() { |
425 | doruby() { |
|
|
426 | [[ -z ${RUBY} ]] && die "\$RUBY is not set" |
| 414 | ( # don't want to pollute calling env |
427 | ( # don't want to pollute calling env |
| 415 | insinto $(${RUBY} -r rbconfig -e 'print Config::CONFIG["sitelibdir"]') |
428 | insinto $(${RUBY} -rrbconfig -e 'print Config::CONFIG["sitelibdir"]') |
| 416 | insopts -m 0644 |
429 | insopts -m 0644 |
| 417 | doins "$@" |
430 | doins "$@" |
| 418 | ) || die "failed to install $@" |
431 | ) || die "failed to install $@" |
| 419 | } |
432 | } |
| 420 | |
433 | |