| 1 | # Copyright 1999-2010 Gentoo Foundation |
1 | # Copyright 1999-2011 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.1 2010/01/13 18:33:32 graaff Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/ruby-ng-gnome2.eclass,v 1.13 2011/10/09 09:39:59 graaff 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 | # @AUTHOR: |
| 9 | # Author: Hans de Graaff <graaff@gentoo.org> |
9 | # Author: Hans de Graaff <graaff@gentoo.org> |
| 10 | # |
10 | # @BLURB: An eclass to simplify handling of various ruby-gnome2 parts. |
| 11 | # @BLURB: |
11 | # @DESCRIPTION: |
| 12 | # This eclass simplifies installation of the various pieces of |
12 | # This eclass simplifies installation of the various pieces of |
| 13 | # ruby-gnome2 since they share a very common installation procedure. |
13 | # ruby-gnome2 since they share a very common installation procedure. |
| 14 | |
14 | |
| 15 | inherit ruby-ng multilib |
15 | RUBY_FAKEGEM_NAME="${RUBY_FAKEGEM_NAME:-${PN#ruby-}}" |
|
|
16 | RUBY_FAKEGEM_TASK_TEST="" |
|
|
17 | RUBY_FAKEGEM_TASK_DOC="" |
|
|
18 | |
|
|
19 | inherit ruby-fakegem multilib versionator |
| 16 | |
20 | |
| 17 | IUSE="" |
21 | IUSE="" |
| 18 | |
22 | |
| 19 | subbinding=${PN#ruby-} ; subbinding=${subbinding%2} |
23 | # Define EPREFIX if needed |
|
|
24 | has "${EAPI:-0}" 0 1 2 && ! use prefix && EPREFIX= |
|
|
25 | |
|
|
26 | subbinding=${PN#ruby-} |
|
|
27 | if [ $(get_version_component_range "1-2") == "0.19" ]; then |
|
|
28 | subbinding=${subbinding/%2} |
|
|
29 | else |
|
|
30 | subbinding=${subbinding/-/_} |
|
|
31 | DEPEND="dev-util/pkgconfig" |
|
|
32 | ruby_add_bdepend "dev-ruby/pkg-config |
|
|
33 | dev-ruby/rubygems" |
|
|
34 | fi |
| 20 | S=${WORKDIR}/ruby-gnome2-all-${PV}/${subbinding} |
35 | S=${WORKDIR}/ruby-gnome2-all-${PV}/${subbinding} |
| 21 | SRC_URI="mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-${PV}.tar.gz" |
36 | SRC_URI="mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-${PV}.tar.gz" |
| 22 | HOMEPAGE="http://ruby-gnome2.sourceforge.jp/" |
37 | HOMEPAGE="http://ruby-gnome2.sourceforge.jp/" |
| 23 | LICENSE="Ruby" |
38 | LICENSE="Ruby" |
| 24 | SLOT="0" |
39 | SLOT="0" |
| … | |
… | |
| 32 | |
47 | |
| 33 | # @FUNCTION: each_ruby_compile |
48 | # @FUNCTION: each_ruby_compile |
| 34 | # @DESCRIPTION: |
49 | # @DESCRIPTION: |
| 35 | # Compile the C bindings in the subbinding for each specific ruby target. |
50 | # Compile the C bindings in the subbinding for each specific ruby target. |
| 36 | each_ruby_compile() { |
51 | each_ruby_compile() { |
|
|
52 | # We have injected --no-undefined in Ruby as a safety precaution |
|
|
53 | # against broken ebuilds, but the Ruby-Gnome bindings |
|
|
54 | # unfortunately rely on the lazy load of other extensions; see bug |
|
|
55 | # #320545. |
|
|
56 | find . -name Makefile -print0 | xargs -0 \ |
|
|
57 | sed -i -e 's:-Wl,--no-undefined ::' \ |
|
|
58 | -e "s/^ldflags = /ldflags = $\(LDFLAGS\) /" \ |
|
|
59 | || die "--no-undefined removal failed" |
|
|
60 | |
| 37 | emake || die "emake failed" |
61 | emake || die "emake failed" |
| 38 | } |
62 | } |
| 39 | |
63 | |
| 40 | # @FUNCTION: each_ruby_install |
64 | # @FUNCTION: each_ruby_install |
| 41 | # @DESCRIPTION: |
65 | # @DESCRIPTION: |
| 42 | # Install the files in the subbinding for each specific ruby target. |
66 | # Install the files in the subbinding for each specific ruby target. |
| 43 | each_ruby_install() { |
67 | each_ruby_install() { |
| 44 | # Create the directories, or the package will create them as files. |
68 | # Create the directories, or the package will create them as files. |
| 45 | dodir $(${RUBY} -r rbconfig -e 'print Config::CONFIG["sitearchdir"]') /usr/$(get_libdir)/pkgconfig |
69 | local archdir=$(ruby_rbconfig_value "sitearchdir") |
|
|
70 | dodir ${archdir#${EPREFIX}} /usr/$(get_libdir)/pkgconfig |
| 46 | |
71 | |
| 47 | emake DESTDIR="${D}" install || die "make install failed" |
72 | emake DESTDIR="${D}" install || die "make install failed" |
|
|
73 | |
|
|
74 | each_fakegem_install |
| 48 | } |
75 | } |
| 49 | |
76 | |
| 50 | # @FUNCTION: all_ruby_install |
77 | # @FUNCTION: all_ruby_install |
| 51 | # @DESCRIPTION: |
78 | # @DESCRIPTION: |
| 52 | # Install the files common to all ruby targets. |
79 | # Install the files common to all ruby targets. |
| 53 | all_ruby_install() { |
80 | all_ruby_install() { |
| 54 | for doc in ../AUTHORS ../NEWS ChangeLog README; do |
81 | for doc in ../AUTHORS ../NEWS ChangeLog README; do |
| 55 | [ -s "$doc" ] && dodoc $doc |
82 | [ -s "$doc" ] && dodoc $doc |
| 56 | done |
83 | done |
| 57 | if [[ -d sample ]]; then |
84 | if [[ -d sample ]]; then |
| 58 | dodir /usr/share/doc/${PF} |
85 | insinto /usr/share/doc/${PF} |
| 59 | cp -a sample "${D}"/usr/share/doc/${PF} || die "cp failed" |
86 | doins -r sample || die "sample install failed" |
| 60 | fi |
87 | fi |
|
|
88 | |
|
|
89 | all_fakegem_install |
| 61 | } |
90 | } |