| 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.17 2010/02/19 11:59:38 flameeyes Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/ruby-fakegem.eclass,v 1.20 2010/07/21 10:43:57 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 | # |
| … | |
… | |
| 68 | |
68 | |
| 69 | RUBY_FAKEGEM_BINWRAP="${RUBY_FAKEGEM_BINWRAP-*}" |
69 | RUBY_FAKEGEM_BINWRAP="${RUBY_FAKEGEM_BINWRAP-*}" |
| 70 | |
70 | |
| 71 | if [[ ${RUBY_FAKEGEM_TASK_DOC} != "" ]]; then |
71 | if [[ ${RUBY_FAKEGEM_TASK_DOC} != "" ]]; then |
| 72 | IUSE="$IUSE doc" |
72 | IUSE="$IUSE doc" |
| 73 | ruby_add_bdepend doc "dev-ruby/rake" |
73 | ruby_add_bdepend "doc? ( dev-ruby/rake )" |
| 74 | fi |
74 | fi |
| 75 | |
75 | |
| 76 | if [[ ${RUBY_FAKEGEM_TASK_TEST} != "" ]]; then |
76 | if [[ ${RUBY_FAKEGEM_TASK_TEST} != "" ]]; then |
| 77 | IUSE="$IUSE test" |
77 | IUSE="$IUSE test" |
| 78 | ruby_add_bdepend test "dev-ruby/rake" |
78 | ruby_add_bdepend "test? ( dev-ruby/rake )" |
| 79 | fi |
79 | fi |
| 80 | |
80 | |
| 81 | SRC_URI="mirror://rubygems/${RUBY_FAKEGEM_NAME}-${RUBY_FAKEGEM_VERSION}${RUBY_FAKEGEM_SUFFIX:+-${RUBY_FAKEGEM_SUFFIX}}.gem" |
81 | SRC_URI="mirror://rubygems/${RUBY_FAKEGEM_NAME}-${RUBY_FAKEGEM_VERSION}${RUBY_FAKEGEM_SUFFIX:+-${RUBY_FAKEGEM_SUFFIX}}.gem" |
| 82 | |
82 | |
| 83 | ruby_add_rdepend virtual/rubygems |
83 | ruby_add_rdepend virtual/rubygems |
| … | |
… | |
| 146 | # copies with different implementations; while for now we're using |
146 | # copies with different implementations; while for now we're using |
| 147 | # the same exact content, we might have differences in the future, |
147 | # the same exact content, we might have differences in the future, |
| 148 | # so better taking this into consideration. |
148 | # so better taking this into consideration. |
| 149 | local quoted_description=${DESCRIPTION//\"/\\\"} |
149 | local quoted_description=${DESCRIPTION//\"/\\\"} |
| 150 | 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 $ |
151 | # generated by ruby-fakegem.eclass $Revision: 1.20 $ |
| 152 | Gem::Specification.new do |s| |
152 | Gem::Specification.new do |s| |
| 153 | s.name = "${RUBY_FAKEGEM_NAME}" |
153 | s.name = "${RUBY_FAKEGEM_NAME}" |
| 154 | s.version = "${RUBY_FAKEGEM_VERSION}" |
154 | s.version = "${RUBY_FAKEGEM_VERSION}" |
| 155 | s.summary = "${quoted_description}" |
155 | s.summary = "${quoted_description}" |
| 156 | s.homepage = "${HOMEPAGE}" |
156 | s.homepage = "${HOMEPAGE}" |
| … | |
… | |
| 200 | |
200 | |
| 201 | cat - > "${T}"/gembin-wrapper-${gembinary} <<EOF |
201 | cat - > "${T}"/gembin-wrapper-${gembinary} <<EOF |
| 202 | #!${rubycmd} |
202 | #!${rubycmd} |
| 203 | # This is a simplified version of the RubyGems wrapper |
203 | # This is a simplified version of the RubyGems wrapper |
| 204 | # |
204 | # |
| 205 | # Generated by ruby-fakegem.eclass $Revision: 1.17 $ |
205 | # Generated by ruby-fakegem.eclass $Revision: 1.20 $ |
| 206 | |
206 | |
| 207 | require 'rubygems' |
207 | require 'rubygems' |
| 208 | |
208 | |
| 209 | load Gem::default_path[-1] + "/gems/${relativegembinary}" |
209 | load Gem::default_path[-1] + "/gems/${relativegembinary}" |
| 210 | |
210 | |
| … | |
… | |
| 230 | # Unpack the source archive, including support for unpacking gems. |
230 | # Unpack the source archive, including support for unpacking gems. |
| 231 | all_ruby_unpack() { |
231 | all_ruby_unpack() { |
| 232 | # Special support for extracting .gem files; the file need to be |
232 | # Special support for extracting .gem files; the file need to be |
| 233 | # extracted twice and the mtime from the archive _has_ to be |
233 | # extracted twice and the mtime from the archive _has_ to be |
| 234 | # ignored (it's always set to epoch 0). |
234 | # ignored (it's always set to epoch 0). |
| 235 | # |
235 | for archive in ${A}; do |
| 236 | # This only works if there is exactly one archive and that archive |
|
|
| 237 | # is a .gem file! |
|
|
| 238 | if [[ $(wc -w <<< ${A}) == 1 ]] && |
|
|
| 239 | [[ ${A} == *.gem ]]; then |
236 | if [[ ${archive} == *.gem ]]; then |
|
|
237 | # Make sure that we're not running unoack for more than |
|
|
238 | # one .gem file, since we won't support that at all. |
|
|
239 | [[ -d "${S}" ]] && die "Unable to unpack ${archive}, ${S} exists" |
|
|
240 | |
| 240 | ebegin "Unpacking .gem file..." |
241 | ebegin "Unpacking .gem file..." |
| 241 | tar -mxf ${DISTDIR}/${A} || die |
242 | tar -mxf ${DISTDIR}/${archive} || die |
| 242 | eend $? |
243 | eend $? |
| 243 | |
244 | |
| 244 | mkdir "${S}" |
245 | mkdir "${S}" |
| 245 | pushd "${S}" &>/dev/null |
246 | pushd "${S}" &>/dev/null |
| 246 | |
247 | |
| 247 | ebegin "Unpacking data.tar.gz" |
248 | ebegin "Unpacking data.tar.gz" |
| 248 | tar -mxf "${my_WORKDIR}"/data.tar.gz || die |
249 | tar -mxf "${my_WORKDIR}"/data.tar.gz || die |
| 249 | eend $? |
250 | eend $? |
| 250 | popd &>/dev/null |
251 | popd &>/dev/null |
| 251 | else |
252 | else |
| 252 | [[ -n ${A} ]] && unpack ${A} |
253 | unpack ${archive} |
| 253 | fi |
254 | fi |
|
|
255 | done |
| 254 | } |
256 | } |
| 255 | |
257 | |
| 256 | # @FUNCTION: all_ruby_compile |
258 | # @FUNCTION: all_ruby_compile |
| 257 | # @DESCRIPTION: |
259 | # @DESCRIPTION: |
| 258 | # Compile the package. |
260 | # Compile the package. |
| … | |
… | |
| 301 | |
303 | |
| 302 | # @FUNCTION: all_fakegem_install |
304 | # @FUNCTION: all_fakegem_install |
| 303 | # @DESCRIPTION: |
305 | # @DESCRIPTION: |
| 304 | # Install files common to all ruby targets. |
306 | # Install files common to all ruby targets. |
| 305 | all_fakegem_install() { |
307 | all_fakegem_install() { |
| 306 | if [[ -n ${RUBY_FAKEGEM_DOCDIR} ]] && [[ ${RUBY_FAKEGEM_TASK_DOC} != "" ]] && use doc; then |
308 | if [[ -n ${RUBY_FAKEGEM_DOCDIR} ]] && use doc; then |
| 307 | for dir in ${RUBY_FAKEGEM_DOCDIR}; do |
309 | for dir in ${RUBY_FAKEGEM_DOCDIR}; do |
|
|
310 | [[ -d ${dir} ]] || continue |
|
|
311 | |
| 308 | pushd ${dir} &>/dev/null |
312 | pushd ${dir} &>/dev/null |
| 309 | dohtml -r * || die "failed to install documentation" |
313 | dohtml -r * || die "failed to install documentation" |
| 310 | popd &>/dev/null |
314 | popd &>/dev/null |
| 311 | done |
315 | done |
| 312 | fi |
316 | fi |