| 1 | # Copyright 1999-2010 Gentoo Foundation |
1 | # Copyright 1999-2010 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-ng-gnome2.eclass,v 1.4 2010/12/15 12:36:46 graaff Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/ruby-ng-gnome2.eclass,v 1.6 2011/05/29 13:43:16 naota Exp $ |
| 4 | # |
4 | # |
| 5 | # @ECLASS: ruby-ng-gnome2.eclass |
5 | # @ECLASS: ruby-ng-gnome2.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # Ruby herd <ruby@gentoo.org> |
7 | # Ruby herd <ruby@gentoo.org> |
| 8 | # |
8 | # |
| … | |
… | |
| 41 | # We have injected --no-undefined in Ruby as a safety precaution |
41 | # We have injected --no-undefined in Ruby as a safety precaution |
| 42 | # against broken ebuilds, but the Ruby-Gnome bindings |
42 | # against broken ebuilds, but the Ruby-Gnome bindings |
| 43 | # unfortunately rely on the lazy load of other extensions; see bug |
43 | # unfortunately rely on the lazy load of other extensions; see bug |
| 44 | # #320545. |
44 | # #320545. |
| 45 | find . -name Makefile -print0 | xargs -0 \ |
45 | find . -name Makefile -print0 | xargs -0 \ |
| 46 | sed -i -e 's:-Wl,--no-undefined ::' || die "--no-undefined removal failed" |
46 | sed -i -e 's:-Wl,--no-undefined ::' \ |
|
|
47 | -e "s/^ldflags = /ldflags = $\(LDFLAGS\) /" \ |
|
|
48 | || die "--no-undefined removal failed" |
| 47 | |
49 | |
| 48 | emake || die "emake failed" |
50 | emake || die "emake failed" |
| 49 | } |
51 | } |
| 50 | |
52 | |
| 51 | # @FUNCTION: each_ruby_install |
53 | # @FUNCTION: each_ruby_install |
| 52 | # @DESCRIPTION: |
54 | # @DESCRIPTION: |
| 53 | # Install the files in the subbinding for each specific ruby target. |
55 | # Install the files in the subbinding for each specific ruby target. |
| 54 | each_ruby_install() { |
56 | each_ruby_install() { |
| 55 | # Create the directories, or the package will create them as files. |
57 | # Create the directories, or the package will create them as files. |
| 56 | local archdir=ruby_rbconfig_value "sitearchdir" |
58 | local archdir=$(ruby_rbconfig_value "sitearchdir") |
| 57 | dodir ${archdir#${EPREFIX}} /usr/$(get_libdir)/pkgconfig |
59 | dodir ${archdir#${EPREFIX}} /usr/$(get_libdir)/pkgconfig |
| 58 | |
60 | |
| 59 | emake DESTDIR="${D}" install || die "make install failed" |
61 | emake DESTDIR="${D}" install || die "make install failed" |
| 60 | } |
62 | } |
| 61 | |
63 | |