| 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.6 2009/12/20 23:39:43 flameeyes Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/ruby-fakegem.eclass,v 1.9 2010/01/01 23:13:26 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 | # |
| … | |
… | |
| 51 | |
51 | |
| 52 | # @ECLASS-VARIABLE: RUBY_FAKEGEM_BINWRAP |
52 | # @ECLASS-VARIABLE: RUBY_FAKEGEM_BINWRAP |
| 53 | # @DESCRIPTION: |
53 | # @DESCRIPTION: |
| 54 | # Binaries to wrap around (relative to the bin/ directory) |
54 | # Binaries to wrap around (relative to the bin/ directory) |
| 55 | # RUBY_FAKEGEM_BINWRAP="*" |
55 | # RUBY_FAKEGEM_BINWRAP="*" |
|
|
56 | |
|
|
57 | # @ECLASS-VARIABLE: RUBY_FAKEGEM_REQUIRE_PATHS |
|
|
58 | # @DESCRIPTION: |
|
|
59 | # Extra require paths (beside lib) to add to the specification |
|
|
60 | # RUBY_FAKEGEM_BINWRAP="" |
| 56 | |
61 | |
| 57 | RUBY_FAKEGEM_NAME="${RUBY_FAKEGEM_NAME:-${PN}}" |
62 | RUBY_FAKEGEM_NAME="${RUBY_FAKEGEM_NAME:-${PN}}" |
| 58 | RUBY_FAKEGEM_VERSION="${RUBY_FAKEGEM_VERSION:-${PV}}" |
63 | RUBY_FAKEGEM_VERSION="${RUBY_FAKEGEM_VERSION:-${PV}}" |
| 59 | |
64 | |
| 60 | RUBY_FAKEGEM_TASK_DOC="${RUBY_FAKEGEM_TASK_DOC-rdoc}" |
65 | RUBY_FAKEGEM_TASK_DOC="${RUBY_FAKEGEM_TASK_DOC-rdoc}" |
| … | |
… | |
| 126 | # Generates a gemspec for the package and places it into the "specifications" |
131 | # Generates a gemspec for the package and places it into the "specifications" |
| 127 | # directory of RubyGems. |
132 | # directory of RubyGems. |
| 128 | # In the gemspec, the following values are set: name, version, summary, |
133 | # In the gemspec, the following values are set: name, version, summary, |
| 129 | # homepage, and require_paths=["lib"]. |
134 | # homepage, and require_paths=["lib"]. |
| 130 | # See RUBY_FAKEGEM_NAME and RUBY_FAKEGEM_VERSION for setting name and version. |
135 | # See RUBY_FAKEGEM_NAME and RUBY_FAKEGEM_VERSION for setting name and version. |
|
|
136 | # See RUBY_FAKEGEM_REQUIRE_PATHS for setting extra require paths. |
| 131 | ruby_fakegem_genspec() { |
137 | ruby_fakegem_genspec() { |
| 132 | ( |
138 | ( |
|
|
139 | local required_paths="'lib'" |
|
|
140 | for path in ${RUBY_FAKEGEM_REQUIRE_PATHS}; do |
|
|
141 | required_paths="${required_paths}, '${path}'" |
|
|
142 | done |
|
|
143 | |
| 133 | # We use the _ruby_implementation variable to avoid having stray |
144 | # We use the _ruby_implementation variable to avoid having stray |
| 134 | # copies with different implementations; while for now we're using |
145 | # copies with different implementations; while for now we're using |
| 135 | # the same exact content, we might have differences in the future, |
146 | # the same exact content, we might have differences in the future, |
| 136 | # so better taking this into consideration. |
147 | # so better taking this into consideration. |
| 137 | cat - > "${T}"/${RUBY_FAKEGEM_NAME}-${_ruby_implementation} <<EOF |
148 | cat - > "${T}"/${RUBY_FAKEGEM_NAME}-${_ruby_implementation} <<EOF |
| 138 | Gem::Specification.new do |s| |
149 | Gem::Specification.new do |s| |
| 139 | s.name = "${RUBY_FAKEGEM_NAME}" |
150 | s.name = "${RUBY_FAKEGEM_NAME}" |
| 140 | s.version = "${RUBY_FAKEGEM_VERSION}" |
151 | s.version = "${RUBY_FAKEGEM_VERSION}" |
| 141 | s.summary = "${DESCRIPTION}" |
152 | s.summary = "${DESCRIPTION}" |
| 142 | s.homepage = "${HOMEPAGE}" |
153 | s.homepage = "${HOMEPAGE}" |
| 143 | s.require_paths = ["lib"] |
154 | s.require_paths = [${required_paths}] |
| 144 | end |
155 | end |
| 145 | EOF |
156 | EOF |
| 146 | |
157 | |
| 147 | insinto $(ruby_fakegem_gemsdir)/specifications |
158 | insinto $(ruby_fakegem_gemsdir)/specifications |
| 148 | newins "${T}"/${RUBY_FAKEGEM_NAME}-${_ruby_implementation} ${RUBY_FAKEGEM_NAME}-${RUBY_FAKEGEM_VERSION}.gemspec |
159 | newins "${T}"/${RUBY_FAKEGEM_NAME}-${_ruby_implementation} ${RUBY_FAKEGEM_NAME}-${RUBY_FAKEGEM_VERSION}.gemspec |
| … | |
… | |
| 250 | local _gemlibdirs= |
261 | local _gemlibdirs= |
| 251 | for directory in bin lib ${RUBY_FAKEGEM_EXTRAINSTALL}; do |
262 | for directory in bin lib ${RUBY_FAKEGEM_EXTRAINSTALL}; do |
| 252 | [[ -d ${directory} ]] && _gemlibdirs="${_gemlibdirs} ${directory}" |
263 | [[ -d ${directory} ]] && _gemlibdirs="${_gemlibdirs} ${directory}" |
| 253 | done |
264 | done |
| 254 | |
265 | |
|
|
266 | [[ -n ${_gemlibdirs} ]] && \ |
| 255 | ruby_fakegem_doins -r ${_gemlibdirs} |
267 | ruby_fakegem_doins -r ${_gemlibdirs} |
| 256 | } |
268 | } |
| 257 | |
269 | |
| 258 | # @FUNCTION: each_ruby_install |
270 | # @FUNCTION: each_ruby_install |
| 259 | # @DESCRIPTION: |
271 | # @DESCRIPTION: |
| 260 | # Install the package for each target. |
272 | # Install the package for each target. |
| … | |
… | |
| 265 | # @FUNCTION: all_fakegem_install |
277 | # @FUNCTION: all_fakegem_install |
| 266 | # @DESCRIPTION: |
278 | # @DESCRIPTION: |
| 267 | # Install files common to all ruby targets. |
279 | # Install files common to all ruby targets. |
| 268 | all_fakegem_install() { |
280 | all_fakegem_install() { |
| 269 | if [[ -n ${RUBY_FAKEGEM_DOCDIR} ]] && use doc; then |
281 | if [[ -n ${RUBY_FAKEGEM_DOCDIR} ]] && use doc; then |
| 270 | pushd ${RUBY_FAKEGEM_DOCDIR} |
282 | for dir in ${RUBY_FAKEGEM_DOCDIR}; do |
|
|
283 | pushd ${dir} |
| 271 | dohtml -r * || die "failed to install documentation" |
284 | dohtml -r * || die "failed to install documentation" |
| 272 | popd |
285 | popd |
|
|
286 | done |
| 273 | fi |
287 | fi |
| 274 | |
288 | |
| 275 | if [[ -n ${RUBY_FAKEGEM_EXTRADOC} ]]; then |
289 | if [[ -n ${RUBY_FAKEGEM_EXTRADOC} ]]; then |
| 276 | dodoc ${RUBY_FAKEGEM_EXTRADOC} || die "failed to install further documentation" |
290 | dodoc ${RUBY_FAKEGEM_EXTRADOC} || die "failed to install further documentation" |
| 277 | fi |
291 | fi |