| 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.2 2010/05/21 16:54:25 flameeyes Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/ruby-ng-gnome2.eclass,v 1.7 2011/05/29 13:47:14 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 | # |
| 9 | # Author: Hans de Graaff <graaff@gentoo.org> |
9 | # Author: Hans de Graaff <graaff@gentoo.org> |
| 10 | # |
10 | # |
| 11 | # @BLURB: |
11 | # @BLURB: An eclass to simplify handling of various ruby-gnome2 parts. |
|
|
12 | # @DESCRIPTION: |
| 12 | # This eclass simplifies installation of the various pieces of |
13 | # This eclass simplifies installation of the various pieces of |
| 13 | # ruby-gnome2 since they share a very common installation procedure. |
14 | # ruby-gnome2 since they share a very common installation procedure. |
| 14 | |
15 | |
| 15 | inherit ruby-ng multilib |
16 | inherit ruby-ng multilib versionator |
| 16 | |
17 | |
| 17 | IUSE="" |
18 | IUSE="" |
| 18 | |
19 | |
| 19 | subbinding=${PN#ruby-} ; subbinding=${subbinding%2} |
20 | # Define EPREFIX if needed |
|
|
21 | has "${EAPI:-0}" 0 1 2 && ! use prefix && EPREFIX= |
|
|
22 | |
|
|
23 | subbinding=${PN#ruby-} |
|
|
24 | if [ $(get_version_component_range "1-2") == "0.19" ]; then |
|
|
25 | subbinding=${subbinding/%2} |
|
|
26 | else |
|
|
27 | subbinding=${subbinding/-/_} |
|
|
28 | fi |
| 20 | S=${WORKDIR}/ruby-gnome2-all-${PV}/${subbinding} |
29 | S=${WORKDIR}/ruby-gnome2-all-${PV}/${subbinding} |
| 21 | SRC_URI="mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-${PV}.tar.gz" |
30 | SRC_URI="mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-${PV}.tar.gz" |
| 22 | HOMEPAGE="http://ruby-gnome2.sourceforge.jp/" |
31 | HOMEPAGE="http://ruby-gnome2.sourceforge.jp/" |
| 23 | LICENSE="Ruby" |
32 | LICENSE="Ruby" |
| 24 | SLOT="0" |
33 | SLOT="0" |
| … | |
… | |
| 37 | # We have injected --no-undefined in Ruby as a safety precaution |
46 | # We have injected --no-undefined in Ruby as a safety precaution |
| 38 | # against broken ebuilds, but the Ruby-Gnome bindings |
47 | # against broken ebuilds, but the Ruby-Gnome bindings |
| 39 | # unfortunately rely on the lazy load of other extensions; see bug |
48 | # unfortunately rely on the lazy load of other extensions; see bug |
| 40 | # #320545. |
49 | # #320545. |
| 41 | find . -name Makefile -print0 | xargs -0 \ |
50 | find . -name Makefile -print0 | xargs -0 \ |
| 42 | sed -i -e 's:-Wl,--no-undefined ::' || die "--no-undefined removal failed" |
51 | sed -i -e 's:-Wl,--no-undefined ::' \ |
|
|
52 | -e "s/^ldflags = /ldflags = $\(LDFLAGS\) /" \ |
|
|
53 | || die "--no-undefined removal failed" |
| 43 | |
54 | |
| 44 | emake || die "emake failed" |
55 | emake || die "emake failed" |
| 45 | } |
56 | } |
| 46 | |
57 | |
| 47 | # @FUNCTION: each_ruby_install |
58 | # @FUNCTION: each_ruby_install |
| 48 | # @DESCRIPTION: |
59 | # @DESCRIPTION: |
| 49 | # Install the files in the subbinding for each specific ruby target. |
60 | # Install the files in the subbinding for each specific ruby target. |
| 50 | each_ruby_install() { |
61 | each_ruby_install() { |
| 51 | # Create the directories, or the package will create them as files. |
62 | # Create the directories, or the package will create them as files. |
| 52 | dodir $(${RUBY} -r rbconfig -e 'print Config::CONFIG["sitearchdir"]') /usr/$(get_libdir)/pkgconfig |
63 | local archdir=$(ruby_rbconfig_value "sitearchdir") |
|
|
64 | dodir ${archdir#${EPREFIX}} /usr/$(get_libdir)/pkgconfig |
| 53 | |
65 | |
| 54 | emake DESTDIR="${D}" install || die "make install failed" |
66 | emake DESTDIR="${D}" install || die "make install failed" |
| 55 | } |
67 | } |
| 56 | |
68 | |
| 57 | # @FUNCTION: all_ruby_install |
69 | # @FUNCTION: all_ruby_install |