From: Hans de Graaff <graaff@gentoo.org>
To: gentoo-dev <gentoo-dev@lists.gentoo.org>
Subject: [gentoo-dev] RFC: ruby-ng-gnome2.eclass
Date: Mon, 11 Jan 2010 19:45:08 +0100 [thread overview]
Message-ID: <1263235508.9162.4.camel@localhost> (raw)
[-- Attachment #1.1: Type: text/plain, Size: 412 bytes --]
Hi,
I'd like to request feedback on the attached new ruby-ng-gnome2.eclass.
This eclass supersedes the current ruby-gnome2 eclass. It builds on
ruby-ng.eclass and is used to install the various components and
bindings of the ruby-gnome2 project.
This eclass fixes https://bugs.gentoo.org/show_bug.cgi?id=278012 (can't
install ruby-gnome2 for ruby targets other than Ruby 1.8.
Kind regards,
Hans
[-- Attachment #1.2: ruby-ng-gnome2.eclass --]
[-- Type: text/plain, Size: 1801 bytes --]
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
#
# @ECLASS: ruby-ng-gnome2.eclass
# @MAINTAINER:
# Ruby herd <ruby@gentoo.org>
#
# Author: Hans de Graaff <graaff@gentoo.org>
#
# @BLURB:
# This eclass simplifies installation of the various pieces of
# ruby-gnome2 since they share a very common installation procedure.
inherit ruby-ng multilib
IUSE=""
subbinding=${PN#ruby-} ; subbinding=${subbinding%2}
S=${WORKDIR}/ruby-gnome2-all-${PV}/${subbinding}
SRC_URI="mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-${PV}.tar.gz"
HOMEPAGE="http://ruby-gnome2.sourceforge.jp/"
LICENSE="Ruby"
SLOT="0"
# @FUNCTION: each_ruby_configure
# @DESCRIPTION:
# Run the configure script in the subbinding for each specific ruby target.
each_ruby_configure() {
${RUBY} extconf.rb || die "extconf.rb failed"
}
# @FUNCTION: each_ruby_compile
# @DESCRIPTION:
# Compile the C bindings in the subbinding for each specific ruby target.
each_ruby_compile() {
emake || die "emake failed"
}
# @FUNCTION: each_ruby_install
# @DESCRIPTION:
# Install the files in the subbinding for each specific ruby target.
each_ruby_install() {
# Create the directories, or the package will create them as files.
dodir $(${RUBY} -r rbconfig -e 'print Config::CONFIG["sitearchdir"]') /usr/$(get_libdir)/pkgconfig
emake DESTDIR="${D}" install || die "make install failed"
}
# @FUNCTION: all_ruby_install
# @DESCRIPTION:
# Install the files common to all ruby targets.
all_ruby_install() {
for doc in ../AUTHORS ../NEWS ChangeLog README; do
[ -s "$doc" ] && dodoc $doc
done
if [[ -d sample ]]; then
dodir /usr/share/doc/${PF}
cp -a sample "${D}"/usr/share/doc/${PF} || die "cp failed"
fi
}
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 198 bytes --]
reply other threads:[~2010-01-11 20:08 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1263235508.9162.4.camel@localhost \
--to=graaff@gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox