| 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/ruby-ng.eclass,v 1.17 2010/05/22 12:31:03 flameeyes Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/ruby-ng.eclass,v 1.24 2010/07/30 16:56:21 flameeyes 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 | # |
| … | |
… | |
| 51 | EXPORT_FUNCTIONS src_unpack src_prepare src_configure src_compile src_test src_install pkg_setup |
51 | EXPORT_FUNCTIONS src_unpack src_prepare src_configure src_compile src_test src_install pkg_setup |
| 52 | |
52 | |
| 53 | case ${EAPI} in |
53 | case ${EAPI} in |
| 54 | 0|1) |
54 | 0|1) |
| 55 | die "Unsupported EAPI=${EAPI} (too old) for ruby-ng.eclass" ;; |
55 | die "Unsupported EAPI=${EAPI} (too old) for ruby-ng.eclass" ;; |
| 56 | 2) ;; |
56 | 2|3) ;; |
| 57 | *) |
57 | *) |
| 58 | die "Unknown EAPI=${EAPI} for ruby-ng.eclass" |
58 | die "Unknown EAPI=${EAPI} for ruby-ng.eclass" |
| 59 | esac |
59 | esac |
| 60 | |
60 | |
| 61 | # @FUNCTION: ruby_implementation_depend |
61 | # @FUNCTION: ruby_implementation_depend |
| … | |
… | |
| 111 | |
111 | |
| 112 | echo "[${res%,}]" |
112 | echo "[${res%,}]" |
| 113 | } |
113 | } |
| 114 | |
114 | |
| 115 | _ruby_atoms_samelib_generic() { |
115 | _ruby_atoms_samelib_generic() { |
|
|
116 | eshopts_push -o noglob |
| 116 | echo "RUBYTARGET? (" |
117 | echo "RUBYTARGET? (" |
| 117 | for token in $*; do |
118 | for token in $*; do |
| 118 | case "$token" in |
119 | case "$token" in |
| 119 | "||" | "(" | ")" | *"?") |
120 | "||" | "(" | ")" | *"?") |
| 120 | echo "${token}" ;; |
121 | echo "${token}" ;; |
|
|
122 | *]) |
|
|
123 | echo "${token%[*}[RUBYTARGET,${token/*[}" ;; |
| 121 | *) |
124 | *) |
| 122 | # TODO we need to deal with merging USE-based |
|
|
| 123 | # dependencies |
|
|
| 124 | echo "${token}[RUBYTARGET]" ;; |
125 | echo "${token}[RUBYTARGET]" ;; |
| 125 | esac |
126 | esac |
| 126 | done |
127 | done |
| 127 | echo ")" |
128 | echo ")" |
|
|
129 | eshopts_pop |
| 128 | } |
130 | } |
| 129 | |
131 | |
| 130 | _ruby_atoms_samelib() { |
132 | _ruby_atoms_samelib() { |
| 131 | local atoms=$(_ruby_atoms_samelib_generic "$*") |
133 | local atoms=$(_ruby_atoms_samelib_generic "$*") |
| 132 | |
134 | |
| … | |
… | |
| 138 | _ruby_wrap_conditions() { |
140 | _ruby_wrap_conditions() { |
| 139 | local conditions="$1" |
141 | local conditions="$1" |
| 140 | local atoms="$2" |
142 | local atoms="$2" |
| 141 | |
143 | |
| 142 | for condition in $conditions; do |
144 | for condition in $conditions; do |
| 143 | hasq $condition "$IUSE" || IUSE="${IUSE} $condition" |
|
|
| 144 | atoms="${condition}? ( ${atoms} )" |
145 | atoms="${condition}? ( ${atoms} )" |
| 145 | done |
146 | done |
| 146 | |
147 | |
| 147 | echo "$atoms" |
148 | echo "$atoms" |
| 148 | } |
149 | } |
| … | |
… | |
| 176 | |
177 | |
| 177 | RDEPEND="${RDEPEND} $dependency" |
178 | RDEPEND="${RDEPEND} $dependency" |
| 178 | |
179 | |
| 179 | # Add the dependency as a test-dependency since we're going to |
180 | # Add the dependency as a test-dependency since we're going to |
| 180 | # execute the code during test phase. |
181 | # execute the code during test phase. |
| 181 | DEPEND="${DEPEND} $(_ruby_wrap_conditions test "${dependency}")" |
182 | DEPEND="${DEPEND} test? ( ${dependency} )" |
|
|
183 | hasq test "$IUSE" || IUSE="${IUSE} test" |
| 182 | } |
184 | } |
| 183 | |
185 | |
| 184 | # @FUNCTION: ruby_add_bdepend |
186 | # @FUNCTION: ruby_add_bdepend |
| 185 | # @USAGE: dependencies |
187 | # @USAGE: dependencies |
| 186 | # @DESCRIPTION: |
188 | # @DESCRIPTION: |
| … | |
… | |
| 204 | esac |
206 | esac |
| 205 | |
207 | |
| 206 | local dependency=$(_ruby_atoms_samelib "$1") |
208 | local dependency=$(_ruby_atoms_samelib "$1") |
| 207 | |
209 | |
| 208 | DEPEND="${DEPEND} $dependency" |
210 | DEPEND="${DEPEND} $dependency" |
|
|
211 | RDEPEND="${RDEPEND}" |
| 209 | } |
212 | } |
| 210 | |
213 | |
| 211 | for _ruby_implementation in $USE_RUBY; do |
214 | for _ruby_implementation in $USE_RUBY; do |
| 212 | IUSE="${IUSE} ruby_targets_${_ruby_implementation}" |
215 | IUSE="${IUSE} ruby_targets_${_ruby_implementation}" |
| 213 | |
216 | |
| … | |
… | |
| 386 | type all_ruby_test &>/dev/null && \ |
389 | type all_ruby_test &>/dev/null && \ |
| 387 | _ruby_invoke_environment all all_ruby_test |
390 | _ruby_invoke_environment all all_ruby_test |
| 388 | } |
391 | } |
| 389 | |
392 | |
| 390 | _each_ruby_check_install() { |
393 | _each_ruby_check_install() { |
|
|
394 | local scancmd=scanelf |
|
|
395 | # we have a Mach-O object here |
|
|
396 | [[ ${CHOST} == *-darwin ]] && scancmd=scanmacho |
|
|
397 | |
|
|
398 | has "${EAPI}" 2 && ! use prefix && EPREFIX= |
|
|
399 | |
| 391 | local libruby_basename=$(${RUBY} -rrbconfig -e 'puts Config::CONFIG["LIBRUBY_SO"]') |
400 | local libruby_basename=$(${RUBY} -rrbconfig -e 'puts Config::CONFIG["LIBRUBY_SO"]') |
| 392 | local libruby_soname=$(scanelf -qS "/usr/$(get_libdir)/${libruby_basename}" | awk '{ print $1 }') |
401 | local libruby_soname=$(basename $(${scancmd} -F "%S#F" -qS "${EPREFIX}/usr/$(get_libdir)/${libruby_basename}")) |
| 393 | local sitedir=$(${RUBY} -rrbconfig -e 'puts Config::CONFIG["sitedir"]') |
402 | local sitedir=$(${RUBY} -rrbconfig -e 'puts Config::CONFIG["sitedir"]') |
| 394 | local sitelibdir=$(${RUBY} -rrbconfig -e 'puts Config::CONFIG["sitelibdir"]') |
403 | local sitelibdir=$(${RUBY} -rrbconfig -e 'puts Config::CONFIG["sitelibdir"]') |
| 395 | |
404 | |
| 396 | # Look for wrong files in sitedir |
405 | # Look for wrong files in sitedir |
| 397 | if [[ -d "${D}${sitedir}" ]]; then |
406 | # if [[ -d "${D}${sitedir}" ]]; then |
| 398 | local f=$(find "${D}${sitedir}" -mindepth 1 -maxdepth 1 -not -wholename "${D}${sitelibdir}") |
407 | # local f=$(find "${D}${sitedir}" -mindepth 1 -maxdepth 1 -not -wholename "${D}${sitelibdir}") |
| 399 | if [[ -n ${f} ]]; then |
408 | # if [[ -n ${f} ]]; then |
| 400 | eerror "Found files in sitedir, outsite sitelibdir:" |
409 | # eerror "Found files in sitedir, outsite sitelibdir:" |
| 401 | eerror "${f}" |
410 | # eerror "${f}" |
| 402 | die "Misplaced files in sitedir" |
411 | # die "Misplaced files in sitedir" |
| 403 | fi |
412 | # fi |
| 404 | fi |
413 | # fi |
| 405 | |
414 | |
| 406 | # The current implementation lacks libruby (i.e.: jruby) |
415 | # The current implementation lacks libruby (i.e.: jruby) |
| 407 | [[ -z ${libruby_soname} ]] && return 0 |
416 | [[ -z ${libruby_soname} ]] && return 0 |
| 408 | |
417 | |
| 409 | scanelf -qnR "${D}${sitedir}" \ |
418 | # Check also the gems directory, since we could be installing compiled |
|
|
419 | # extensions via ruby-fakegem; make sure to check only in sitelibdir, since |
|
|
420 | # that's what changes between two implementations (otherwise you'd get false |
|
|
421 | # positives now that Ruby 1.9.2 installs with the same sitedir as 1.8) |
|
|
422 | ${scancmd} -qnR "${D}${sitelibdir}" "${D}${sitelibdir/site_ruby/gems}" \ |
| 410 | | fgrep -v "${libruby_soname}" \ |
423 | | fgrep -v "${libruby_soname}" \ |
| 411 | > "${T}"/ruby-ng-${_ruby_implementation}-mislink.log |
424 | > "${T}"/ruby-ng-${_ruby_implementation}-mislink.log |
| 412 | |
425 | |
| 413 | if [[ -s "${T}"/ruby-ng-${_ruby_implementation}-mislink.log ]]; then |
426 | if [[ -s "${T}"/ruby-ng-${_ruby_implementation}-mislink.log ]]; then |
| 414 | ewarn "Extensions installed for ${_ruby_implementation} with missing links to ${libruby_soname}" |
427 | ewarn "Extensions installed for ${_ruby_implementation} with missing links to ${libruby_soname}" |
| … | |
… | |
| 443 | # @USAGE: file [file...] |
456 | # @USAGE: file [file...] |
| 444 | # @DESCRIPTION: |
457 | # @DESCRIPTION: |
| 445 | # Installs the specified file(s) into the sitelibdir of the Ruby interpreter in ${RUBY}. |
458 | # Installs the specified file(s) into the sitelibdir of the Ruby interpreter in ${RUBY}. |
| 446 | doruby() { |
459 | doruby() { |
| 447 | [[ -z ${RUBY} ]] && die "\$RUBY is not set" |
460 | [[ -z ${RUBY} ]] && die "\$RUBY is not set" |
|
|
461 | has "${EAPI}" 2 && ! use prefix && EPREFIX= |
| 448 | ( # don't want to pollute calling env |
462 | ( # don't want to pollute calling env |
| 449 | insinto $(ruby_rbconfig_value 'sitelibdir') |
463 | sitelibdir=$(ruby_rbconfig_value 'sitelibdir') |
|
|
464 | insinto ${sitelibdir#${EPREFIX}} |
| 450 | insopts -m 0644 |
465 | insopts -m 0644 |
| 451 | doins "$@" |
466 | doins "$@" |
| 452 | ) || die "failed to install $@" |
467 | ) || die "failed to install $@" |
| 453 | } |
468 | } |
| 454 | |
469 | |