# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/eclass/ruby-ng-gnome2.eclass,v 1.5 2010/12/15 12:38:47 graaff Exp $ # # @ECLASS: ruby-ng-gnome2.eclass # @MAINTAINER: # Ruby herd # # Author: Hans de Graaff # # @BLURB: An eclass to simplify handling of various ruby-gnome2 parts. # @DESCRIPTION: # This eclass simplifies installation of the various pieces of # ruby-gnome2 since they share a very common installation procedure. inherit ruby-ng multilib IUSE="" # Define EPREFIX if needed has "${EAPI:-0}" 0 1 2 && ! use prefix && EPREFIX= 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() { # We have injected --no-undefined in Ruby as a safety precaution # against broken ebuilds, but the Ruby-Gnome bindings # unfortunately rely on the lazy load of other extensions; see bug # #320545. find . -name Makefile -print0 | xargs -0 \ sed -i -e 's:-Wl,--no-undefined ::' || die "--no-undefined removal failed" 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. local archdir=$(ruby_rbconfig_value "sitearchdir") dodir ${archdir#${EPREFIX}} /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 insinto /usr/share/doc/${PF} doins -r sample || die "sample install failed" fi }