| 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.14 2010/02/13 08:45:03 graaff Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/ruby-fakegem.eclass,v 1.17 2010/02/19 11:59: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 | # |
| … | |
… | |
| 58 | # @DESCRIPTION: |
58 | # @DESCRIPTION: |
| 59 | # Extra require paths (beside lib) to add to the specification |
59 | # Extra require paths (beside lib) to add to the specification |
| 60 | # RUBY_FAKEGEM_REQUIRE_PATHS="" |
60 | # RUBY_FAKEGEM_REQUIRE_PATHS="" |
| 61 | |
61 | |
| 62 | RUBY_FAKEGEM_NAME="${RUBY_FAKEGEM_NAME:-${PN}}" |
62 | RUBY_FAKEGEM_NAME="${RUBY_FAKEGEM_NAME:-${PN}}" |
| 63 | RUBY_FAKEGEM_VERSION="${RUBY_FAKEGEM_VERSION:-${PV}}" |
63 | RUBY_FAKEGEM_VERSION="${RUBY_FAKEGEM_VERSION:-${PV/_pre/.pre}}" |
|
|
64 | RUBY_FAKEGEM_SUFFIX="${RUBY_FAKEGEM_SUFFIX:-}" |
| 64 | |
65 | |
| 65 | RUBY_FAKEGEM_TASK_DOC="${RUBY_FAKEGEM_TASK_DOC-rdoc}" |
66 | RUBY_FAKEGEM_TASK_DOC="${RUBY_FAKEGEM_TASK_DOC-rdoc}" |
| 66 | RUBY_FAKEGEM_TASK_TEST="${RUBY_FAKEGEM_TASK_TEST-test}" |
67 | RUBY_FAKEGEM_TASK_TEST="${RUBY_FAKEGEM_TASK_TEST-test}" |
| 67 | |
68 | |
| 68 | RUBY_FAKEGEM_BINWRAP="${RUBY_FAKEGEM_BINWRAP-*}" |
69 | RUBY_FAKEGEM_BINWRAP="${RUBY_FAKEGEM_BINWRAP-*}" |
| … | |
… | |
| 75 | if [[ ${RUBY_FAKEGEM_TASK_TEST} != "" ]]; then |
76 | if [[ ${RUBY_FAKEGEM_TASK_TEST} != "" ]]; then |
| 76 | IUSE="$IUSE test" |
77 | IUSE="$IUSE test" |
| 77 | ruby_add_bdepend test "dev-ruby/rake" |
78 | ruby_add_bdepend test "dev-ruby/rake" |
| 78 | fi |
79 | fi |
| 79 | |
80 | |
| 80 | SRC_URI="mirror://rubygems/${RUBY_FAKEGEM_NAME}-${RUBY_FAKEGEM_VERSION}.gem" |
81 | SRC_URI="mirror://rubygems/${RUBY_FAKEGEM_NAME}-${RUBY_FAKEGEM_VERSION}${RUBY_FAKEGEM_SUFFIX:+-${RUBY_FAKEGEM_SUFFIX}}.gem" |
| 81 | |
82 | |
| 82 | ruby_add_rdepend virtual/rubygems |
83 | ruby_add_rdepend virtual/rubygems |
| 83 | |
84 | |
| 84 | # @FUNCTION: ruby_fakegem_gemsdir |
85 | # @FUNCTION: ruby_fakegem_gemsdir |
| 85 | # @RETURN: Returns the gem data directory |
86 | # @RETURN: Returns the gem data directory |
| … | |
… | |
| 145 | # copies with different implementations; while for now we're using |
146 | # copies with different implementations; while for now we're using |
| 146 | # the same exact content, we might have differences in the future, |
147 | # the same exact content, we might have differences in the future, |
| 147 | # so better taking this into consideration. |
148 | # so better taking this into consideration. |
| 148 | local quoted_description=${DESCRIPTION//\"/\\\"} |
149 | local quoted_description=${DESCRIPTION//\"/\\\"} |
| 149 | cat - > "${T}"/${RUBY_FAKEGEM_NAME}-${_ruby_implementation} <<EOF |
150 | cat - > "${T}"/${RUBY_FAKEGEM_NAME}-${_ruby_implementation} <<EOF |
|
|
151 | # generated by ruby-fakegem.eclass $Revision: 1.17 $ |
| 150 | Gem::Specification.new do |s| |
152 | Gem::Specification.new do |s| |
| 151 | s.name = "${RUBY_FAKEGEM_NAME}" |
153 | s.name = "${RUBY_FAKEGEM_NAME}" |
| 152 | s.version = "${RUBY_FAKEGEM_VERSION}" |
154 | s.version = "${RUBY_FAKEGEM_VERSION}" |
| 153 | s.summary = "${quoted_description}" |
155 | s.summary = "${quoted_description}" |
| 154 | s.homepage = "${HOMEPAGE}" |
156 | s.homepage = "${HOMEPAGE}" |
| … | |
… | |
| 172 | local newbinary=${2:-/usr/bin/$gembinary} |
174 | local newbinary=${2:-/usr/bin/$gembinary} |
| 173 | local relativegembinary=${RUBY_FAKEGEM_NAME}-${RUBY_FAKEGEM_VERSION}/bin/${gembinary} |
175 | local relativegembinary=${RUBY_FAKEGEM_NAME}-${RUBY_FAKEGEM_VERSION}/bin/${gembinary} |
| 174 | local binpath=$(dirname $newbinary) |
176 | local binpath=$(dirname $newbinary) |
| 175 | [[ ${binpath} = . ]] && binpath=/usr/bin |
177 | [[ ${binpath} = . ]] && binpath=/usr/bin |
| 176 | |
178 | |
|
|
179 | # Try to find out whether the package is going to install for |
|
|
180 | # one or multiple implementations; if we're installing for a |
|
|
181 | # *single* implementation, no need to use “/usr/bin/env ruby” |
|
|
182 | # in the shebang, and we can actually avoid errors when |
|
|
183 | # calling the script by default (see for instance the |
|
|
184 | # JRuby-specific commands). |
|
|
185 | local rubycmd= |
|
|
186 | for implementation in ${USE_RUBY}; do |
|
|
187 | # ignore non-enabled implementations |
|
|
188 | use ruby_targets_${implementation} || continue |
|
|
189 | if [ -z $rubycmd ]; then |
|
|
190 | # if no other implementation was set before, set it. |
|
|
191 | rubycmd="/usr/bin/${implementation}" |
|
|
192 | else |
|
|
193 | # if another implementation already arrived, then make |
|
|
194 | # it generic and break out of the loop. This ensures |
|
|
195 | # that we do at most two iterations. |
|
|
196 | rubycmd="/usr/bin/env ruby" |
|
|
197 | break |
|
|
198 | fi |
|
|
199 | done |
|
|
200 | |
| 177 | cat - > "${T}"/gembin-wrapper-${gembinary} <<EOF |
201 | cat - > "${T}"/gembin-wrapper-${gembinary} <<EOF |
| 178 | #!/usr/bin/env ruby |
202 | #!${rubycmd} |
| 179 | # This is a simplified version of the RubyGems wrapper |
203 | # This is a simplified version of the RubyGems wrapper |
| 180 | # |
204 | # |
| 181 | # Generated by ruby-fakegem.eclass |
205 | # Generated by ruby-fakegem.eclass $Revision: 1.17 $ |
| 182 | |
206 | |
| 183 | require 'rubygems' |
207 | require 'rubygems' |
| 184 | |
208 | |
| 185 | load Gem::default_path[-1] + "/gems/${relativegembinary}" |
209 | load Gem::default_path[-1] + "/gems/${relativegembinary}" |
| 186 | |
210 | |