| 1 |
# Copyright 1999-2005 Gentoo Foundation |
| 2 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 |
# $Header: /var/cvsroot/gentoo-x86/eclass/gems.eclass,v 1.20 2008/01/16 05:52:20 nichoj Exp $ |
| 4 |
# |
| 5 |
# Author: Rob Cakebread <pythonhead@gentoo.org> |
| 6 |
# Current Maintainer: Ruby Herd <ruby@gentoo.org> |
| 7 |
# |
| 8 |
# The gems eclass is designed to allow easier installation of |
| 9 |
# gems-based ruby packagess and their incorporation into |
| 10 |
# the Gentoo Linux system. |
| 11 |
# |
| 12 |
# - Features: |
| 13 |
# gems_location() - Set ${GEMSDIR} with gem install dir and ${GEM_SRC} with path to gem to install |
| 14 |
# gems_src_unpack() - Does nothing. |
| 15 |
# gems_src_compile() - Does nothing. |
| 16 |
# gems_src_install() - installs a gem into ${D} |
| 17 |
# |
| 18 |
# NOTE: |
| 19 |
# See http://dev.gentoo.org/~pythonhead/ruby/gems.html for notes on using gems with portage |
| 20 |
|
| 21 |
|
| 22 |
inherit eutils ruby |
| 23 |
|
| 24 |
SRC_URI="http://gems.rubyforge.org/gems/${P}.gem" |
| 25 |
|
| 26 |
IUSE="doc" |
| 27 |
|
| 28 |
DEPEND=" |
| 29 |
>=dev-ruby/rubygems-0.9.4 |
| 30 |
!dev-ruby/rdoc |
| 31 |
" |
| 32 |
RDEPEND="${DEPEND}" |
| 33 |
|
| 34 |
gems_location() { |
| 35 |
local sitelibdir |
| 36 |
sitelibdir=$(ruby -r rbconfig -e 'print Config::CONFIG["sitelibdir"]') |
| 37 |
export GEMSDIR=${sitelibdir/site_ruby/gems} |
| 38 |
|
| 39 |
} |
| 40 |
|
| 41 |
gems_src_unpack() { |
| 42 |
true |
| 43 |
} |
| 44 |
|
| 45 |
gems_src_compile() { |
| 46 |
true |
| 47 |
} |
| 48 |
|
| 49 |
gems_src_install() { |
| 50 |
gems_location |
| 51 |
|
| 52 |
if [[ -z "${MY_P}" ]]; then |
| 53 |
[[ -z "${GEM_SRC}" ]] && GEM_SRC="${DISTDIR}/${P}" |
| 54 |
spec_path="${D}/${GEMSDIR}/specifications/${P}.gemspec" |
| 55 |
else |
| 56 |
[[ -z "${GEM_SRC}" ]] && GEM_SRC="${DISTDIR}/${MY_P}" |
| 57 |
spec_path="${D}/${GEMSDIR}/specifications/${MY_P}.gemspec" |
| 58 |
fi |
| 59 |
|
| 60 |
local myconf |
| 61 |
if use doc; then |
| 62 |
myconf="--rdoc --ri" |
| 63 |
else |
| 64 |
myconf="--no-rdoc --no-ri" |
| 65 |
fi |
| 66 |
|
| 67 |
dodir ${GEMSDIR} |
| 68 |
gem install ${GEM_SRC} --version ${PV} ${myconf} \ |
| 69 |
--local --install-dir "${D}/${GEMSDIR}" || die "gem install failed" |
| 70 |
|
| 71 |
if [[ -d "${D}/${GEMSDIR}/bin" ]] ; then |
| 72 |
exeinto /usr/bin |
| 73 |
for exe in ${D}/${GEMSDIR}/bin/* ; do |
| 74 |
doexe ${exe} |
| 75 |
done |
| 76 |
fi |
| 77 |
} |
| 78 |
|
| 79 |
EXPORT_FUNCTIONS src_unpack src_compile src_install |