| 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.26 2010/12/18 09:57:24 graaff 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-*}" |
| 69 | |
70 | |
| 70 | if [[ ${RUBY_FAKEGEM_TASK_DOC} != "" ]]; then |
71 | if [[ ${RUBY_FAKEGEM_TASK_DOC} != "" ]]; then |
| 71 | IUSE="$IUSE doc" |
72 | IUSE="$IUSE doc" |
| 72 | ruby_add_bdepend doc "dev-ruby/rake" |
73 | ruby_add_bdepend "doc? ( dev-ruby/rake )" |
|
|
74 | fi |
|
|
75 | |
|
|
76 | if [[ -n ${RUBY_FAKEGEM_DOCDIR} ]]; then |
|
|
77 | IUSE="$IUSE doc" |
| 73 | fi |
78 | fi |
| 74 | |
79 | |
| 75 | if [[ ${RUBY_FAKEGEM_TASK_TEST} != "" ]]; then |
80 | if [[ ${RUBY_FAKEGEM_TASK_TEST} != "" ]]; then |
| 76 | IUSE="$IUSE test" |
81 | IUSE="$IUSE test" |
| 77 | ruby_add_bdepend test "dev-ruby/rake" |
82 | ruby_add_bdepend "test? ( dev-ruby/rake )" |
| 78 | fi |
83 | fi |
| 79 | |
84 | |
| 80 | SRC_URI="mirror://rubygems/${RUBY_FAKEGEM_NAME}-${RUBY_FAKEGEM_VERSION}.gem" |
85 | SRC_URI="mirror://rubygems/${RUBY_FAKEGEM_NAME}-${RUBY_FAKEGEM_VERSION}${RUBY_FAKEGEM_SUFFIX:+-${RUBY_FAKEGEM_SUFFIX}}.gem" |
| 81 | |
86 | |
| 82 | ruby_add_rdepend virtual/rubygems |
87 | ruby_add_rdepend dev-ruby/rubygems |
| 83 | |
88 | |
| 84 | # @FUNCTION: ruby_fakegem_gemsdir |
89 | # @FUNCTION: ruby_fakegem_gemsdir |
| 85 | # @RETURN: Returns the gem data directory |
90 | # @RETURN: Returns the gem data directory |
| 86 | # @DESCRIPTION: |
91 | # @DESCRIPTION: |
| 87 | # This function returns the gems data directory for the ruby |
92 | # This function returns the gems data directory for the ruby |
| 88 | # implementation in question. |
93 | # implementation in question. |
| 89 | ruby_fakegem_gemsdir() { |
94 | ruby_fakegem_gemsdir() { |
| 90 | local _gemsitedir=$(${RUBY} -r rbconfig -e 'print Config::CONFIG["sitelibdir"]' | sed -e 's:site_ruby:gems:') |
95 | has "${EAPI}" 2 && ! use prefix && EPREFIX= |
|
|
96 | |
|
|
97 | local _gemsitedir=$(ruby_rbconfig_value 'sitelibdir') |
|
|
98 | _gemsitedir=${_gemsitedir//site_ruby/gems} |
|
|
99 | _gemsitedir=${_gemsitedir#${EPREFIX}} |
| 91 | |
100 | |
| 92 | [[ -z ${_gemsitedir} ]] && { |
101 | [[ -z ${_gemsitedir} ]] && { |
| 93 | eerror "Unable to find the gems dir" |
102 | eerror "Unable to find the gems dir" |
| 94 | die "Unable to find the gems dir" |
103 | die "Unable to find the gems dir" |
| 95 | } |
104 | } |
| … | |
… | |
| 145 | # copies with different implementations; while for now we're using |
154 | # copies with different implementations; while for now we're using |
| 146 | # the same exact content, we might have differences in the future, |
155 | # the same exact content, we might have differences in the future, |
| 147 | # so better taking this into consideration. |
156 | # so better taking this into consideration. |
| 148 | local quoted_description=${DESCRIPTION//\"/\\\"} |
157 | local quoted_description=${DESCRIPTION//\"/\\\"} |
| 149 | cat - > "${T}"/${RUBY_FAKEGEM_NAME}-${_ruby_implementation} <<EOF |
158 | cat - > "${T}"/${RUBY_FAKEGEM_NAME}-${_ruby_implementation} <<EOF |
|
|
159 | # generated by ruby-fakegem.eclass $Revision: 1.26 $ |
| 150 | Gem::Specification.new do |s| |
160 | Gem::Specification.new do |s| |
| 151 | s.name = "${RUBY_FAKEGEM_NAME}" |
161 | s.name = "${RUBY_FAKEGEM_NAME}" |
| 152 | s.version = "${RUBY_FAKEGEM_VERSION}" |
162 | s.version = "${RUBY_FAKEGEM_VERSION}" |
| 153 | s.summary = "${quoted_description}" |
163 | s.summary = "${quoted_description}" |
| 154 | s.homepage = "${HOMEPAGE}" |
164 | s.homepage = "${HOMEPAGE}" |
| … | |
… | |
| 172 | local newbinary=${2:-/usr/bin/$gembinary} |
182 | local newbinary=${2:-/usr/bin/$gembinary} |
| 173 | local relativegembinary=${RUBY_FAKEGEM_NAME}-${RUBY_FAKEGEM_VERSION}/bin/${gembinary} |
183 | local relativegembinary=${RUBY_FAKEGEM_NAME}-${RUBY_FAKEGEM_VERSION}/bin/${gembinary} |
| 174 | local binpath=$(dirname $newbinary) |
184 | local binpath=$(dirname $newbinary) |
| 175 | [[ ${binpath} = . ]] && binpath=/usr/bin |
185 | [[ ${binpath} = . ]] && binpath=/usr/bin |
| 176 | |
186 | |
|
|
187 | # Try to find out whether the package is going to install for |
|
|
188 | # one or multiple implementations; if we're installing for a |
|
|
189 | # *single* implementation, no need to use “/usr/bin/env ruby” |
|
|
190 | # in the shebang, and we can actually avoid errors when |
|
|
191 | # calling the script by default (see for instance the |
|
|
192 | # JRuby-specific commands). |
|
|
193 | local rubycmd= |
|
|
194 | for implementation in ${USE_RUBY}; do |
|
|
195 | # ignore non-enabled implementations |
|
|
196 | use ruby_targets_${implementation} || continue |
|
|
197 | if [ -z $rubycmd ]; then |
|
|
198 | # if no other implementation was set before, set it. |
|
|
199 | rubycmd="$(ruby_implementation_command ${implementation})" |
|
|
200 | else |
|
|
201 | # if another implementation already arrived, then make |
|
|
202 | # it generic and break out of the loop. This ensures |
|
|
203 | # that we do at most two iterations. |
|
|
204 | rubycmd="/usr/bin/env ruby" |
|
|
205 | break |
|
|
206 | fi |
|
|
207 | done |
|
|
208 | |
| 177 | cat - > "${T}"/gembin-wrapper-${gembinary} <<EOF |
209 | cat - > "${T}"/gembin-wrapper-${gembinary} <<EOF |
| 178 | #!/usr/bin/env ruby |
210 | #!${rubycmd} |
| 179 | # This is a simplified version of the RubyGems wrapper |
211 | # This is a simplified version of the RubyGems wrapper |
| 180 | # |
212 | # |
| 181 | # Generated by ruby-fakegem.eclass |
213 | # Generated by ruby-fakegem.eclass $Revision: 1.26 $ |
| 182 | |
214 | |
| 183 | require 'rubygems' |
215 | require 'rubygems' |
| 184 | |
216 | |
| 185 | load Gem::default_path[-1] + "/gems/${relativegembinary}" |
217 | load Gem::default_path[-1] + "/gems/${relativegembinary}" |
| 186 | |
218 | |
| … | |
… | |
| 206 | # Unpack the source archive, including support for unpacking gems. |
238 | # Unpack the source archive, including support for unpacking gems. |
| 207 | all_ruby_unpack() { |
239 | all_ruby_unpack() { |
| 208 | # Special support for extracting .gem files; the file need to be |
240 | # Special support for extracting .gem files; the file need to be |
| 209 | # extracted twice and the mtime from the archive _has_ to be |
241 | # extracted twice and the mtime from the archive _has_ to be |
| 210 | # ignored (it's always set to epoch 0). |
242 | # ignored (it's always set to epoch 0). |
| 211 | # |
243 | for archive in ${A}; do |
| 212 | # This only works if there is exactly one archive and that archive |
244 | case "${archive}" in |
| 213 | # is a .gem file! |
245 | *.gem) |
| 214 | if [[ $(wc -w <<< ${A}) == 1 ]] && |
246 | # Make sure that we're not running unoack for more than |
| 215 | [[ ${A} == *.gem ]]; then |
247 | # one .gem file, since we won't support that at all. |
|
|
248 | [[ -d "${S}" ]] && die "Unable to unpack ${archive}, ${S} exists" |
|
|
249 | |
| 216 | ebegin "Unpacking .gem file..." |
250 | ebegin "Unpacking .gem file..." |
| 217 | tar -mxf ${DISTDIR}/${A} || die |
251 | tar -mxf ${DISTDIR}/${archive} || die |
| 218 | eend $? |
252 | eend $? |
| 219 | |
253 | |
| 220 | mkdir "${S}" |
254 | mkdir "${S}" |
| 221 | pushd "${S}" &>/dev/null |
255 | pushd "${S}" &>/dev/null |
| 222 | |
256 | |
| 223 | ebegin "Unpacking data.tar.gz" |
257 | ebegin "Unpacking data.tar.gz" |
| 224 | tar -mxf "${my_WORKDIR}"/data.tar.gz || die |
258 | tar -mxf "${my_WORKDIR}"/data.tar.gz || die |
| 225 | eend $? |
259 | eend $? |
| 226 | popd &>/dev/null |
260 | popd &>/dev/null |
| 227 | else |
261 | ;; |
| 228 | [[ -n ${A} ]] && unpack ${A} |
262 | *.patch.bz2) |
| 229 | fi |
263 | # We apply the patches with RUBY_PATCHES directly from DISTDIR, |
|
|
264 | # as the WORKDIR variable changes value between the global-scope |
|
|
265 | # and the time all_ruby_unpack/_prepare are called. Since we can |
|
|
266 | # simply decompress them when applying, this is much easier to |
|
|
267 | # deal with for us. |
|
|
268 | einfo "Keeping ${archive} as-is" |
|
|
269 | ;; |
|
|
270 | *) |
|
|
271 | unpack ${archive} |
|
|
272 | ;; |
|
|
273 | esac |
|
|
274 | done |
| 230 | } |
275 | } |
| 231 | |
276 | |
| 232 | # @FUNCTION: all_ruby_compile |
277 | # @FUNCTION: all_ruby_compile |
| 233 | # @DESCRIPTION: |
278 | # @DESCRIPTION: |
| 234 | # Compile the package. |
279 | # Compile the package. |
| … | |
… | |
| 277 | |
322 | |
| 278 | # @FUNCTION: all_fakegem_install |
323 | # @FUNCTION: all_fakegem_install |
| 279 | # @DESCRIPTION: |
324 | # @DESCRIPTION: |
| 280 | # Install files common to all ruby targets. |
325 | # Install files common to all ruby targets. |
| 281 | all_fakegem_install() { |
326 | all_fakegem_install() { |
| 282 | if [[ -n ${RUBY_FAKEGEM_DOCDIR} ]] && [[ ${RUBY_FAKEGEM_TASK_DOC} != "" ]] && use doc; then |
327 | if [[ -n ${RUBY_FAKEGEM_DOCDIR} ]] && use doc; then |
| 283 | for dir in ${RUBY_FAKEGEM_DOCDIR}; do |
328 | for dir in ${RUBY_FAKEGEM_DOCDIR}; do |
|
|
329 | [[ -d ${dir} ]] || continue |
|
|
330 | |
| 284 | pushd ${dir} &>/dev/null |
331 | pushd ${dir} &>/dev/null |
| 285 | dohtml -r * || die "failed to install documentation" |
332 | dohtml -r * || die "failed to install documentation" |
| 286 | popd &>/dev/null |
333 | popd &>/dev/null |
| 287 | done |
334 | done |
| 288 | fi |
335 | fi |