| 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-fakegem.eclass,v 1.2 2009/12/15 15:32:27 flameeyes Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/ruby-fakegem.eclass,v 1.7 2009/12/21 19:07:38 flameeyes Exp $ |
| 4 | # |
4 | # |
| 5 | # @ECLASS: ruby-fakegem.eclass |
5 | # @ECLASS: ruby-fakegem.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # Ruby herd <ruby@gentoo.org> |
7 | # Ruby herd <ruby@gentoo.org> |
| 8 | # |
8 | # |
| … | |
… | |
| 16 | # providing integration into the RubyGems system even for "regular" packages. |
16 | # providing integration into the RubyGems system even for "regular" packages. |
| 17 | # |
17 | # |
| 18 | |
18 | |
| 19 | inherit ruby-ng |
19 | inherit ruby-ng |
| 20 | |
20 | |
| 21 | SRC_URI="mirror://rubygems/${P}.gem" |
|
|
| 22 | |
|
|
| 23 | # @ECLASS-VARIABLE: RUBY_FAKEGEM_NAME |
21 | # @ECLASS-VARIABLE: RUBY_FAKEGEM_NAME |
| 24 | # @DESCRIPTION: |
22 | # @DESCRIPTION: |
| 25 | # Sets the Gem name for the generated fake gemspec. |
23 | # Sets the Gem name for the generated fake gemspec. |
| 26 | # RUBY_FAKEGEM_NAME="${PN}" |
24 | # RUBY_FAKEGEM_NAME="${PN}" |
| 27 | |
25 | |
| … | |
… | |
| 31 | # RUBY_FAKEGEM_VERSION="${PV}" |
29 | # RUBY_FAKEGEM_VERSION="${PV}" |
| 32 | |
30 | |
| 33 | # @ECLASS-VARIABLE: RUBY_FAKEGEM_TASK_DOC |
31 | # @ECLASS-VARIABLE: RUBY_FAKEGEM_TASK_DOC |
| 34 | # @DESCRIPTION: |
32 | # @DESCRIPTION: |
| 35 | # Specify the rake(1) task to run to generate documentation. |
33 | # Specify the rake(1) task to run to generate documentation. |
| 36 | # RUBY_FAKEGEM_VERSION="rdoc" |
34 | # RUBY_FAKEGEM_TASK_DOC="rdoc" |
| 37 | |
35 | |
| 38 | # @ECLASS-VARIABLE: RUBY_FAKEGEM_TASK_TEST |
36 | # @ECLASS-VARIABLE: RUBY_FAKEGEM_TASK_TEST |
| 39 | # @DESCRIPTION: |
37 | # @DESCRIPTION: |
| 40 | # Specify the rake(1) task used for executing tests. |
38 | # Specify the rake(1) task used for executing tests. |
| 41 | # RUBY_FAKEGEM_VERSION="test" |
39 | # RUBY_FAKEGEM_TASK_TEST="test" |
|
|
40 | |
|
|
41 | # @ECLASS-VARIABLE: RUBY_FAKEGEM_DOCDIR |
|
|
42 | # @DESCRIPTION: |
|
|
43 | # Specify the directory under which the documentation is built; |
|
|
44 | # if empty no documentation will be installed automatically. |
|
|
45 | # RUBY_FAKEGEM_DOCDIR="" |
|
|
46 | |
|
|
47 | # @ECLASS-VARIABLE: RUBY_FAKEGEM_EXTRADOC |
|
|
48 | # @DESCRIPTION: |
|
|
49 | # Extra documentation to install (readme, changelogs, …). |
|
|
50 | # RUBY_FAKEGEM_EXTRADOC="" |
|
|
51 | |
|
|
52 | # @ECLASS-VARIABLE: RUBY_FAKEGEM_BINWRAP |
|
|
53 | # @DESCRIPTION: |
|
|
54 | # Binaries to wrap around (relative to the bin/ directory) |
|
|
55 | # RUBY_FAKEGEM_BINWRAP="*" |
| 42 | |
56 | |
| 43 | RUBY_FAKEGEM_NAME="${RUBY_FAKEGEM_NAME:-${PN}}" |
57 | RUBY_FAKEGEM_NAME="${RUBY_FAKEGEM_NAME:-${PN}}" |
| 44 | RUBY_FAKEGEM_VERSION="${RUBY_FAKEGEM_VERSION:-${PV}}" |
58 | RUBY_FAKEGEM_VERSION="${RUBY_FAKEGEM_VERSION:-${PV}}" |
| 45 | |
59 | |
| 46 | RUBY_FAKEGEM_TASK_DOC="${RUBY_FAKEGEM_TASK_DOC-rdoc}" |
60 | RUBY_FAKEGEM_TASK_DOC="${RUBY_FAKEGEM_TASK_DOC-rdoc}" |
| 47 | RUBY_FAKEGEM_TASK_TEST="${RUBY_FAKEGEM_TASK_TEST-test}" |
61 | RUBY_FAKEGEM_TASK_TEST="${RUBY_FAKEGEM_TASK_TEST-test}" |
|
|
62 | |
|
|
63 | RUBY_FAKEGEM_BINWRAP="${RUBY_FAKEGEM_BINWRAP-*}" |
| 48 | |
64 | |
| 49 | if [[ ${RUBY_FAKEGEM_TASK_DOC} != "" ]]; then |
65 | if [[ ${RUBY_FAKEGEM_TASK_DOC} != "" ]]; then |
| 50 | IUSE="$IUSE doc" |
66 | IUSE="$IUSE doc" |
| 51 | ruby_add_bdepend doc "dev-ruby/rake" |
67 | ruby_add_bdepend doc "dev-ruby/rake" |
| 52 | fi |
68 | fi |
| 53 | |
69 | |
| 54 | if [[ ${RUBY_FAKEGEM_TASK_TEST} != "" ]]; then |
70 | if [[ ${RUBY_FAKEGEM_TASK_TEST} != "" ]]; then |
| 55 | IUSE="$IUSE test" |
71 | IUSE="$IUSE test" |
| 56 | ruby_add_bdepend test "dev-ruby/rake" |
72 | ruby_add_bdepend test "dev-ruby/rake" |
| 57 | fi |
73 | fi |
|
|
74 | |
|
|
75 | SRC_URI="mirror://rubygems/${RUBY_FAKEGEM_NAME}-${RUBY_FAKEGEM_VERSION}.gem" |
| 58 | |
76 | |
| 59 | ruby_add_rdepend virtual/rubygems |
77 | ruby_add_rdepend virtual/rubygems |
| 60 | |
78 | |
| 61 | # @FUNCTION: ruby_fakegem_gemsdir |
79 | # @FUNCTION: ruby_fakegem_gemsdir |
| 62 | # @RETURN: Returns the gem data directory |
80 | # @RETURN: Returns the gem data directory |
| … | |
… | |
| 138 | # path defaults to /usr/bin/$command |
156 | # path defaults to /usr/bin/$command |
| 139 | ruby_fakegem_binwrapper() { |
157 | ruby_fakegem_binwrapper() { |
| 140 | ( |
158 | ( |
| 141 | local gembinary=$1 |
159 | local gembinary=$1 |
| 142 | local newbinary=${2:-/usr/bin/$gembinary} |
160 | local newbinary=${2:-/usr/bin/$gembinary} |
|
|
161 | local relativegembinary=${RUBY_FAKEGEM_NAME}-${RUBY_FAKEGEM_VERSION}/bin/${gembinary} |
| 143 | |
162 | |
| 144 | cat - > "${T}"/gembin-wrapper-${gembinary} <<EOF |
163 | cat - > "${T}"/gembin-wrapper-${gembinary} <<EOF |
| 145 | #!/usr/bin/env ruby |
164 | #!/usr/bin/env ruby |
| 146 | # This is a simplified version of the RubyGems wrapper |
165 | # This is a simplified version of the RubyGems wrapper |
| 147 | # |
166 | # |
| 148 | # Generated by ruby-fakegem.eclass |
167 | # Generated by ruby-fakegem.eclass |
| 149 | |
168 | |
| 150 | require 'rubygems' |
169 | require 'rubygems' |
| 151 | |
170 | |
| 152 | load Gem::GemPathSearcher.new.find('$(tr [A-Z] [a-z] <<< ${RUBY_FAKEGEM_NAME})').full_gem_path + "/bin/${gembinary}" |
171 | load Gem::default_path[-1] + "/gems/${relativegembinary}" |
| 153 | |
172 | |
| 154 | EOF |
173 | EOF |
| 155 | |
174 | |
| 156 | exeinto $(dirname $newbinary) |
175 | exeinto $(dirname $newbinary) |
| 157 | newexe "${T}"/gembin-wrapper-${gembinary} $(basename $newbinary) |
176 | newexe "${T}"/gembin-wrapper-${gembinary} $(basename $newbinary) |
| … | |
… | |
| 246 | # @FUNCTION: all_fakegem_install |
265 | # @FUNCTION: all_fakegem_install |
| 247 | # @DESCRIPTION: |
266 | # @DESCRIPTION: |
| 248 | # Install files common to all ruby targets. |
267 | # Install files common to all ruby targets. |
| 249 | all_fakegem_install() { |
268 | all_fakegem_install() { |
| 250 | if [[ -n ${RUBY_FAKEGEM_DOCDIR} ]] && use doc; then |
269 | if [[ -n ${RUBY_FAKEGEM_DOCDIR} ]] && use doc; then |
| 251 | pushd ${RUBY_FAKEGEM_DOCDIR} |
270 | for dir in ${RUBY_FAKEGEM_DOCDIR}; do |
|
|
271 | pushd ${dir} |
| 252 | dohtml -r * || die "failed to install documentation" |
272 | dohtml -r * || die "failed to install documentation" |
| 253 | popd |
273 | popd |
|
|
274 | done |
| 254 | fi |
275 | fi |
| 255 | |
276 | |
| 256 | if [[ -n ${RUBY_FAKEGEM_EXTRADOC} ]]; then |
277 | if [[ -n ${RUBY_FAKEGEM_EXTRADOC} ]]; then |
| 257 | dodoc ${RUBY_FAKEGEM_EXTRADOC} || die "failed to install further documentation" |
278 | dodoc ${RUBY_FAKEGEM_EXTRADOC} || die "failed to install further documentation" |
|
|
279 | fi |
|
|
280 | |
|
|
281 | # binary wrappers; we assume that all the implementations get the |
|
|
282 | # same binaries, or something is wrong anyway, so... |
|
|
283 | if [[ -n ${RUBY_FAKEGEM_BINWRAP} ]]; then |
|
|
284 | local bindir=$(find "${D}" -type d -path "*/gems/${RUBY_FAKEGEM_NAME}-${RUBY_FAKEGEM_VERSION}/bin" -print -quit) |
|
|
285 | |
|
|
286 | if [[ -d "${bindir}" ]]; then |
|
|
287 | pushd "${bindir}" |
|
|
288 | local binaries=$(eval ls ${RUBY_FAKEGEM_BINWRAP}) |
|
|
289 | for binary in $binaries; do |
|
|
290 | ruby_fakegem_binwrapper $binary |
|
|
291 | done |
|
|
292 | popd |
|
|
293 | fi |
| 258 | fi |
294 | fi |
| 259 | } |
295 | } |
| 260 | |
296 | |
| 261 | # @FUNCTION: all_ruby_install |
297 | # @FUNCTION: all_ruby_install |
| 262 | # @DESCRIPTION: |
298 | # @DESCRIPTION: |