| 1 | # Copyright 1999-2009 Gentoo Foundation |
1 | # Copyright 1999-2009 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.eclass,v 1.11 2010/04/26 15:07:58 a3li Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/ruby-ng.eclass,v 1.20 2010/05/24 07:33:35 flameeyes Exp $ |
| 4 | # |
4 | # |
| 5 | # @ECLASS: ruby-ng.eclass |
5 | # @ECLASS: ruby-ng.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # Ruby herd <ruby@gentoo.org> |
7 | # Ruby herd <ruby@gentoo.org> |
| 8 | # |
8 | # |
| … | |
… | |
| 110 | done |
110 | done |
| 111 | |
111 | |
| 112 | echo "[${res%,}]" |
112 | echo "[${res%,}]" |
| 113 | } |
113 | } |
| 114 | |
114 | |
| 115 | _ruby_implementation_depend() { |
115 | _ruby_atoms_samelib_generic() { |
| 116 | echo "ruby_targets_${1}? ( ${2}[ruby_targets_${1}] )" |
116 | eshopts_push -o noglob |
|
|
117 | echo "RUBYTARGET? (" |
|
|
118 | for token in $*; do |
|
|
119 | case "$token" in |
|
|
120 | "||" | "(" | ")" | *"?") |
|
|
121 | echo "${token}" ;; |
|
|
122 | *) |
|
|
123 | # TODO we need to deal with merging USE-based |
|
|
124 | # dependencies |
|
|
125 | echo "${token}[RUBYTARGET]" ;; |
|
|
126 | esac |
|
|
127 | done |
|
|
128 | echo ")" |
|
|
129 | eshopts_pop |
| 117 | } |
130 | } |
| 118 | |
131 | |
| 119 | _ruby_add_bdepend() { |
132 | _ruby_atoms_samelib() { |
| 120 | local atom=$1 |
133 | local atoms=$(_ruby_atoms_samelib_generic "$*") |
|
|
134 | |
|
|
135 | for _ruby_implementation in $USE_RUBY; do |
|
|
136 | echo "${atoms//RUBYTARGET/ruby_targets_${_ruby_implementation}}" |
|
|
137 | done |
|
|
138 | } |
|
|
139 | |
|
|
140 | _ruby_wrap_conditions() { |
| 121 | local conditions=$2 |
141 | local conditions="$1" |
|
|
142 | local atoms="$2" |
| 122 | |
143 | |
| 123 | for condition in $conditions; do |
144 | for condition in $conditions; do |
| 124 | hasq $condition "$IUSE" || IUSE="${IUSE} $condition" |
|
|
| 125 | atom="${condition}? ( ${atom} )" |
145 | atoms="${condition}? ( ${atoms} )" |
| 126 | done |
146 | done |
| 127 | |
147 | |
| 128 | DEPEND="${DEPEND} ${atom}" |
148 | echo "$atoms" |
| 129 | RDEPEND="${RDEPEND}" |
|
|
| 130 | } |
|
|
| 131 | |
|
|
| 132 | _ruby_add_rdepend() { |
|
|
| 133 | local atom=$1 |
|
|
| 134 | local conditions=$2 |
|
|
| 135 | |
|
|
| 136 | for condition in $conditions; do |
|
|
| 137 | hasq $condition "$IUSE" || IUSE="${IUSE} $condition" |
|
|
| 138 | atom="${condition}? ( ${atom} )" |
|
|
| 139 | done |
|
|
| 140 | |
|
|
| 141 | RDEPEND="${RDEPEND} ${atom}" |
|
|
| 142 | _ruby_add_bdepend "$atom" test |
|
|
| 143 | } |
149 | } |
| 144 | |
150 | |
| 145 | # @FUNCTION: ruby_add_rdepend |
151 | # @FUNCTION: ruby_add_rdepend |
| 146 | # @USAGE: [conditions] atom |
152 | # @USAGE: dependencies |
| 147 | # @DESCRIPTION: |
153 | # @DESCRIPTION: |
| 148 | # Adds the specified atom(s) with optional use condition(s) to |
154 | # Adds the specified dependencies, with use condition(s) to RDEPEND, |
| 149 | # RDEPEND, taking the current set of ruby targets into account. This |
155 | # taking the current set of ruby targets into account. This makes sure |
| 150 | # makes sure that all ruby dependencies of the package are installed |
156 | # that all ruby dependencies of the package are installed for the same |
| 151 | # for the same ruby targets. Use this function for all ruby |
157 | # ruby targets. Use this function for all ruby dependencies instead of |
| 152 | # dependencies instead of setting RDEPEND yourself. Both atom and |
158 | # setting RDEPEND yourself. The list of atoms uses the same syntax as |
| 153 | # conditions can be a space-separated list of atoms or conditions. |
159 | # normal dependencies. |
|
|
160 | # |
|
|
161 | # Note: runtime dependencies are also added as build-time test |
|
|
162 | # dependencies. |
| 154 | ruby_add_rdepend() { |
163 | ruby_add_rdepend() { |
| 155 | local atoms= |
|
|
| 156 | local conditions= |
|
|
| 157 | case $# in |
164 | case $# in |
| 158 | 1) |
165 | 1) ;; |
| 159 | atoms=$1 |
|
|
| 160 | ;; |
|
|
| 161 | 2) |
166 | 2) |
| 162 | conditions=$1 |
167 | [[ "${GENTOO_DEV}" == "yes" ]] && eqawarn "You can now use the usual syntax in ruby_add_rdepend for $CATEGORY/$PF" |
| 163 | atoms=$2 |
168 | ruby_add_rdepend "$(_ruby_wrap_conditions "$1" "$2")" |
|
|
169 | return |
| 164 | ;; |
170 | ;; |
| 165 | *) |
171 | *) |
| 166 | die "bad number of arguments to $0" |
172 | die "bad number of arguments to $0" |
| 167 | ;; |
173 | ;; |
| 168 | esac |
174 | esac |
| 169 | |
175 | |
| 170 | for atom in $atoms; do |
176 | local dependency=$(_ruby_atoms_samelib "$1") |
| 171 | _ruby_add_rdepend "${atom}$(ruby_samelib)" "$conditions" |
177 | |
| 172 | done |
178 | RDEPEND="${RDEPEND} $dependency" |
|
|
179 | |
|
|
180 | # Add the dependency as a test-dependency since we're going to |
|
|
181 | # execute the code during test phase. |
|
|
182 | DEPEND="${DEPEND} test? ( ${dependency} )" |
|
|
183 | hasq test "$IUSE" || IUSE="${IUSE} test" |
| 173 | } |
184 | } |
| 174 | |
185 | |
| 175 | # @FUNCTION: ruby_add_bdepend |
186 | # @FUNCTION: ruby_add_bdepend |
| 176 | # @USAGE: [conditions] atom |
187 | # @USAGE: dependencies |
| 177 | # @DESCRIPTION: |
188 | # @DESCRIPTION: |
| 178 | # Adds the specified atom(s) with optional use condition(s) to both |
189 | # Adds the specified dependencies, with use condition(s) to DEPEND, |
| 179 | # DEPEND and RDEPEND, taking the current set of ruby targets into |
190 | # taking the current set of ruby targets into account. This makes sure |
| 180 | # account. This makes sure that all ruby dependencies of the package |
191 | # that all ruby dependencies of the package are installed for the same |
| 181 | # are installed for the same ruby targets. Use this function for all |
192 | # ruby targets. Use this function for all ruby dependencies instead of |
| 182 | # ruby dependencies instead of setting DEPEND and RDEPEND |
193 | # setting DEPEND yourself. The list of atoms uses the same syntax as |
| 183 | # yourself. Both atom and conditions can be a space-separated list of |
194 | # normal dependencies. |
| 184 | # atoms or conditions. |
|
|
| 185 | ruby_add_bdepend() { |
195 | ruby_add_bdepend() { |
| 186 | local atoms= |
|
|
| 187 | local conditions= |
|
|
| 188 | case $# in |
196 | case $# in |
| 189 | 1) |
197 | 1) ;; |
| 190 | atoms=$1 |
|
|
| 191 | ;; |
|
|
| 192 | 2) |
198 | 2) |
| 193 | conditions=$1 |
199 | [[ "${GENTOO_DEV}" == "yes" ]] && eqawarn "You can now use the usual syntax in ruby_add_bdepend for $CATEGORY/$PF" |
| 194 | atoms=$2 |
200 | ruby_add_bdepend "$(_ruby_wrap_conditions "$1" "$2")" |
|
|
201 | return |
| 195 | ;; |
202 | ;; |
| 196 | *) |
203 | *) |
| 197 | die "bad number of arguments to $0" |
204 | die "bad number of arguments to $0" |
| 198 | ;; |
205 | ;; |
| 199 | esac |
206 | esac |
| 200 | |
207 | |
| 201 | for atom in $atoms; do |
208 | local dependency=$(_ruby_atoms_samelib "$1") |
| 202 | _ruby_add_bdepend "${atom}$(ruby_samelib)" "$conditions" |
209 | |
| 203 | done |
210 | DEPEND="${DEPEND} $dependency" |
|
|
211 | RDEPEND="${RDEPEND}" |
| 204 | } |
212 | } |
| 205 | |
213 | |
| 206 | for _ruby_implementation in $USE_RUBY; do |
214 | for _ruby_implementation in $USE_RUBY; do |
| 207 | IUSE="${IUSE} ruby_targets_${_ruby_implementation}" |
215 | IUSE="${IUSE} ruby_targets_${_ruby_implementation}" |
| 208 | |
216 | |
| … | |
… | |
| 214 | fi |
222 | fi |
| 215 | done |
223 | done |
| 216 | |
224 | |
| 217 | _ruby_invoke_environment() { |
225 | _ruby_invoke_environment() { |
| 218 | old_S=${S} |
226 | old_S=${S} |
| 219 | sub_S=${S#${WORKDIR}} |
227 | sub_S=${S#${WORKDIR}/} |
|
|
228 | |
|
|
229 | # Special case, for the always-lovely GitHub fetches. With this, |
|
|
230 | # we allow the star glob to just expand to whatever directory it's |
|
|
231 | # called. |
|
|
232 | if [[ ${sub_S} = *"*" ]]; then |
|
|
233 | pushd "${WORKDIR}"/all &>/dev/null |
|
|
234 | sub_S=$(eval ls -d ${sub_S} 2>/dev/null) |
|
|
235 | popd &>/dev/null |
|
|
236 | fi |
| 220 | |
237 | |
| 221 | environment=$1; shift |
238 | environment=$1; shift |
| 222 | |
239 | |
| 223 | my_WORKDIR="${WORKDIR}"/${environment} |
240 | my_WORKDIR="${WORKDIR}"/${environment} |
| 224 | S="${my_WORKDIR}"/"${sub_S}" |
241 | S="${my_WORKDIR}"/"${sub_S}" |
| … | |
… | |
| 395 | scanelf -qnR "${D}${sitedir}" \ |
412 | scanelf -qnR "${D}${sitedir}" \ |
| 396 | | fgrep -v "${libruby_soname}" \ |
413 | | fgrep -v "${libruby_soname}" \ |
| 397 | > "${T}"/ruby-ng-${_ruby_implementation}-mislink.log |
414 | > "${T}"/ruby-ng-${_ruby_implementation}-mislink.log |
| 398 | |
415 | |
| 399 | if [[ -s "${T}"/ruby-ng-${_ruby_implementation}-mislink.log ]]; then |
416 | if [[ -s "${T}"/ruby-ng-${_ruby_implementation}-mislink.log ]]; then |
| 400 | ewarn "Extensions installed for ${_ruby_implementation} with missing links to ${libruby}" |
417 | ewarn "Extensions installed for ${_ruby_implementation} with missing links to ${libruby_soname}" |
| 401 | ewarn $(< "${T}"/ruby-ng-${_ruby_implementation}-mislink.log ) |
418 | ewarn $(< "${T}"/ruby-ng-${_ruby_implementation}-mislink.log ) |
| 402 | die "Missing links to ${libruby}" |
419 | die "Missing links to ${libruby_soname}" |
| 403 | fi |
420 | fi |
| 404 | } |
421 | } |
| 405 | |
422 | |
| 406 | # @FUNCTION: ruby-ng_src_install |
423 | # @FUNCTION: ruby-ng_src_install |
| 407 | # @DESCRIPTION: |
424 | # @DESCRIPTION: |