1 | # Copyright 1999-2002 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2006 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 | # Author: Martin Schlemmer <azarah@gentoo.org> |
|
|
4 | # $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.12 2002/12/14 21:46:25 azarah Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.257 2006/11/01 23:46:17 vapier Exp $ |
|
|
4 | # |
5 | # This eclass is for general purpose functions that most ebuilds |
5 | # This eclass is for general purpose functions that most ebuilds |
6 | # have to implement themselves. |
6 | # have to implement themselves. |
7 | # |
7 | # |
8 | # NB: If you add anything, please comment it! |
8 | # NB: If you add anything, please comment it! |
|
|
9 | # |
|
|
10 | # Maintainer: see each individual function, base-system@gentoo.org as default |
9 | |
11 | |
10 | ECLASS=eutils |
12 | inherit multilib portability |
11 | INHERITED="$INHERITED $ECLASS" |
|
|
12 | |
|
|
13 | newdepend "!bootstrap? ( sys-devel/patch )" |
|
|
14 | |
13 | |
15 | DESCRIPTION="Based on the ${ECLASS} eclass" |
14 | DESCRIPTION="Based on the ${ECLASS} eclass" |
|
|
15 | |
|
|
16 | # Wait for the supplied number of seconds. If no argument is supplied, defaults |
|
|
17 | # to five seconds. If the EPAUSE_IGNORE env var is set, don't wait. If we're not |
|
|
18 | # outputting to a terminal, don't wait. For compatability purposes, the argument |
|
|
19 | # must be an integer greater than zero. |
|
|
20 | # Bug 62950, Ciaran McCreesh <ciaranm@gentoo.org> (05 Sep 2004) |
|
|
21 | epause() { |
|
|
22 | [[ -z ${EPAUSE_IGNORE} ]] && sleep ${1:-5} |
|
|
23 | } |
|
|
24 | |
|
|
25 | # Beep the specified number of times (defaults to five). If our output |
|
|
26 | # is not a terminal, don't beep. If the EBEEP_IGNORE env var is set, |
|
|
27 | # don't beep. |
|
|
28 | # Bug 62950, Ciaran McCreesh <ciaranm@gentoo.org> (05 Sep 2004) |
|
|
29 | ebeep() { |
|
|
30 | local n |
|
|
31 | if [[ -z ${EBEEP_IGNORE} ]] ; then |
|
|
32 | for ((n=1 ; n <= ${1:-5} ; n++)) ; do |
|
|
33 | echo -ne "\a" |
|
|
34 | sleep 0.1 &>/dev/null ; sleep 0,1 &>/dev/null |
|
|
35 | echo -ne "\a" |
|
|
36 | sleep 1 |
|
|
37 | done |
|
|
38 | fi |
|
|
39 | } |
16 | |
40 | |
17 | # This function generate linker scripts in /usr/lib for dynamic |
41 | # This function generate linker scripts in /usr/lib for dynamic |
18 | # libs in /lib. This is to fix linking problems when you have |
42 | # libs in /lib. This is to fix linking problems when you have |
19 | # the .so in /lib, and the .a in /usr/lib. What happens is that |
43 | # the .so in /lib, and the .a in /usr/lib. What happens is that |
20 | # in some cases when linking dynamic, the .a in /usr/lib is used |
44 | # in some cases when linking dynamic, the .a in /usr/lib is used |
… | |
… | |
31 | # to point to the latest version of the library present. |
55 | # to point to the latest version of the library present. |
32 | # |
56 | # |
33 | # <azarah@gentoo.org> (26 Oct 2002) |
57 | # <azarah@gentoo.org> (26 Oct 2002) |
34 | # |
58 | # |
35 | gen_usr_ldscript() { |
59 | gen_usr_ldscript() { |
|
|
60 | if [[ $(type -t _tc_gen_usr_ldscript) == "function" ]] ; then |
|
|
61 | _tc_gen_usr_ldscript "$@" |
|
|
62 | return $? |
|
|
63 | fi |
36 | |
64 | |
|
|
65 | ewarn "QA Notice: Please upgrade your ebuild to use toolchain-funcs" |
|
|
66 | ewarn "QA Notice: rather than gen_usr_ldscript() from eutils" |
|
|
67 | |
|
|
68 | local lib libdir=$(get_libdir) |
37 | # Just make sure it exists |
69 | # Just make sure it exists |
38 | dodir /usr/lib |
70 | dodir /usr/${libdir} |
39 | |
71 | |
|
|
72 | for lib in "${@}" ; do |
40 | cat > ${D}/usr/lib/$1 <<"END_LDSCRIPT" |
73 | cat > "${D}/usr/${libdir}/${lib}" <<-END_LDSCRIPT |
41 | /* GNU ld script |
74 | /* GNU ld script |
42 | Because Gentoo have critical dynamic libraries |
75 | Since Gentoo has critical dynamic libraries |
43 | in /lib, and the static versions in /usr/lib, we |
76 | in /lib, and the static versions in /usr/lib, |
44 | need to have a "fake" dynamic lib in /usr/lib, |
77 | we need to have a "fake" dynamic lib in /usr/lib, |
45 | otherwise we run into linking problems. |
78 | otherwise we run into linking problems. |
46 | See bug #4411 on http://bugs.gentoo.org/ for |
79 | |
47 | more info. */ |
80 | See bug http://bugs.gentoo.org/4411 for more info. |
48 | GROUP ( /lib/libxxx ) |
81 | */ |
|
|
82 | GROUP ( /${libdir}/${lib} ) |
49 | END_LDSCRIPT |
83 | END_LDSCRIPT |
50 | |
84 | fperms a+x "/usr/${libdir}/${lib}" || die "could not change perms on ${lib}" |
51 | dosed "s:libxxx:$1:" /usr/lib/$1 |
|
|
52 | |
|
|
53 | return 0 |
|
|
54 | } |
|
|
55 | |
|
|
56 | # Simple function to draw a line consisting of '=' the same length as $* |
|
|
57 | # |
|
|
58 | # <azarah@gentoo.org> (11 Nov 2002) |
|
|
59 | # |
|
|
60 | draw_line() { |
|
|
61 | local i=0 |
|
|
62 | local str_length="" |
|
|
63 | |
|
|
64 | # Handle calls that do not have args, or wc not being installed ... |
|
|
65 | if [ -z "$1" -o ! -x "$(which wc 2>/dev/null)" ] |
|
|
66 | then |
|
|
67 | echo "===============================================================" |
|
|
68 | return 0 |
|
|
69 | fi |
|
|
70 | |
|
|
71 | # Get the length of $* |
|
|
72 | str_length="$(echo -n "$*" | wc -m)" |
|
|
73 | |
|
|
74 | while [ "$i" -lt "${str_length}" ] |
|
|
75 | do |
|
|
76 | echo -n "=" |
|
|
77 | |
|
|
78 | i=$((i + 1)) |
|
|
79 | done |
85 | done |
80 | |
|
|
81 | echo |
|
|
82 | |
|
|
83 | return 0 |
|
|
84 | } |
86 | } |
|
|
87 | |
85 | |
88 | |
86 | # Default directory where patches are located |
89 | # Default directory where patches are located |
87 | EPATCH_SOURCE="${WORKDIR}/patch" |
90 | EPATCH_SOURCE="${WORKDIR}/patch" |
88 | # Default extension for patches |
91 | # Default extension for patches |
89 | EPATCH_SUFFIX="patch.bz2" |
92 | EPATCH_SUFFIX="patch.bz2" |
90 | # Default options for patch |
93 | # Default options for patch |
91 | EPATCH_OPTS="" |
94 | # Set -g0 to keep RCS, ClearCase, Perforce and SCCS happy. Bug #24571 |
|
|
95 | # Set --no-backup-if-mismatch so we don't leave '.orig' files behind. |
|
|
96 | # Set -E to automatically remove empty files. |
|
|
97 | EPATCH_OPTS="-g0 -E --no-backup-if-mismatch" |
92 | # List of patches not to apply. Not this is only file names, |
98 | # List of patches not to apply. Not this is only file names, |
93 | # and not the full path .. |
99 | # and not the full path .. |
94 | EPATCH_EXCLUDE="" |
100 | EPATCH_EXCLUDE="" |
95 | # Change the printed message for a single patch. |
101 | # Change the printed message for a single patch. |
96 | EPATCH_SINGLE_MSG="" |
102 | EPATCH_SINGLE_MSG="" |
|
|
103 | # Change the printed message for multiple patches. |
|
|
104 | EPATCH_MULTI_MSG="Applying various patches (bugfixes/updates) ..." |
|
|
105 | # Force applying bulk patches even if not following the style: |
|
|
106 | # |
|
|
107 | # ??_${ARCH}_foo.${EPATCH_SUFFIX} |
|
|
108 | # |
|
|
109 | EPATCH_FORCE="no" |
97 | |
110 | |
98 | # This function is for bulk patching, or in theory for just one |
111 | # This function is for bulk patching, or in theory for just one |
99 | # or two patches. |
112 | # or two patches. |
100 | # |
113 | # |
101 | # It should work with .bz2, .gz, .zip and plain text patches. |
114 | # It should work with .bz2, .gz, .zip and plain text patches. |
… | |
… | |
127 | # hand its a directory, it will set EPATCH_SOURCE to this. |
140 | # hand its a directory, it will set EPATCH_SOURCE to this. |
128 | # |
141 | # |
129 | # <azarah@gentoo.org> (10 Nov 2002) |
142 | # <azarah@gentoo.org> (10 Nov 2002) |
130 | # |
143 | # |
131 | epatch() { |
144 | epatch() { |
|
|
145 | _epatch_draw_line() { |
|
|
146 | [[ -z $1 ]] && set "$(printf "%65s" '')" |
|
|
147 | echo "${1//?/=}" |
|
|
148 | } |
|
|
149 | _epatch_assert() { local _pipestatus=${PIPESTATUS[*]}; [[ ${_pipestatus// /} -eq 0 ]] ; } |
132 | local PIPE_CMD="" |
150 | local PIPE_CMD="" |
133 | local STDERR_TARGET="${T}/$$.out" |
151 | local STDERR_TARGET="${T}/$$.out" |
134 | local PATCH_TARGET="${T}/$$.patch" |
152 | local PATCH_TARGET="${T}/$$.patch" |
135 | local PATCH_SUFFIX="" |
153 | local PATCH_SUFFIX="" |
136 | local SINGLE_PATCH="no" |
154 | local SINGLE_PATCH="no" |
137 | local x="" |
155 | local x="" |
138 | |
156 | |
|
|
157 | unset P4CONFIG P4PORT P4USER # keep perforce at bay #56402 |
|
|
158 | |
139 | if [ "$#" -gt 1 ] |
159 | if [ "$#" -gt 1 ] |
140 | then |
160 | then |
141 | eerror "Invalid arguments to epatch()" |
161 | local m="" |
142 | die "Invalid arguments to epatch()" |
162 | for m in "$@" ; do |
|
|
163 | epatch "${m}" |
|
|
164 | done |
|
|
165 | return 0 |
143 | fi |
166 | fi |
144 | |
167 | |
145 | if [ -n "$1" -a -f "$1" ] |
168 | if [ -n "$1" -a -f "$1" ] |
146 | then |
169 | then |
147 | SINGLE_PATCH="yes" |
170 | SINGLE_PATCH="yes" |
148 | |
171 | |
149 | local EPATCH_SOURCE="$1" |
172 | local EPATCH_SOURCE="$1" |
150 | local EPATCH_SUFFIX="${1##*\.}" |
173 | local EPATCH_SUFFIX="${1##*\.}" |
151 | |
174 | |
152 | elif [ -n "$1" -a -d "$1" ] |
175 | elif [ -n "$1" -a -d "$1" ] |
153 | then |
176 | then |
|
|
177 | # Allow no extension if EPATCH_FORCE=yes ... used by vim for example ... |
|
|
178 | if [ "${EPATCH_FORCE}" = "yes" ] && [ -z "${EPATCH_SUFFIX}" ] |
|
|
179 | then |
|
|
180 | local EPATCH_SOURCE="$1/*" |
|
|
181 | else |
154 | local EPATCH_SOURCE="$1/*.${EPATCH_SUFFIX}" |
182 | local EPATCH_SOURCE="$1/*.${EPATCH_SUFFIX}" |
|
|
183 | fi |
155 | else |
184 | else |
156 | if [ ! -d ${EPATCH_SOURCE} ] |
185 | if [ ! -d ${EPATCH_SOURCE} ] || [ -n "$1" ] |
157 | then |
186 | then |
|
|
187 | if [ -n "$1" -a "${EPATCH_SOURCE}" = "${WORKDIR}/patch" ] |
|
|
188 | then |
|
|
189 | EPATCH_SOURCE="$1" |
|
|
190 | fi |
|
|
191 | |
158 | echo |
192 | echo |
159 | eerror "Cannot find \$EPATCH_SOURCE! Value for \$EPATCH_SOURCE is:" |
193 | eerror "Cannot find \$EPATCH_SOURCE! Value for \$EPATCH_SOURCE is:" |
160 | eerror |
194 | eerror |
161 | eerror " ${EPATCH_SOURCE}" |
195 | eerror " ${EPATCH_SOURCE}" |
|
|
196 | eerror " ( ${EPATCH_SOURCE##*/} )" |
162 | echo |
197 | echo |
163 | die "Cannot find \$EPATCH_SOURCE!" |
198 | die "Cannot find \$EPATCH_SOURCE!" |
164 | fi |
199 | fi |
165 | |
200 | |
166 | local EPATCH_SOURCE="${EPATCH_SOURCE}/*.${EPATCH_SUFFIX}" |
201 | local EPATCH_SOURCE="${EPATCH_SOURCE}/*.${EPATCH_SUFFIX}" |
167 | fi |
202 | fi |
168 | |
203 | |
169 | case ${EPATCH_SUFFIX##*\.} in |
204 | case ${EPATCH_SUFFIX##*\.} in |
170 | bz2) |
205 | bz2) |
… | |
… | |
185 | ;; |
220 | ;; |
186 | esac |
221 | esac |
187 | |
222 | |
188 | if [ "${SINGLE_PATCH}" = "no" ] |
223 | if [ "${SINGLE_PATCH}" = "no" ] |
189 | then |
224 | then |
190 | einfo "Applying various patches (bugfixes/updates)..." |
225 | einfo "${EPATCH_MULTI_MSG}" |
191 | fi |
226 | fi |
192 | for x in ${EPATCH_SOURCE} |
227 | for x in ${EPATCH_SOURCE} |
193 | do |
228 | do |
194 | # New ARCH dependant patch naming scheme... |
229 | # New ARCH dependant patch naming scheme ... |
195 | # |
230 | # |
196 | # ???_arch_foo.patch |
231 | # ???_arch_foo.patch |
197 | # |
232 | # |
198 | if [ -f ${x} ] && \ |
233 | if [ -f ${x} ] && \ |
199 | [ "${SINGLE_PATCH}" = "yes" -o "${x/_all_}" != "${x}" -o "`eval echo \$\{x/_${ARCH}_\}`" != "${x}" ] |
234 | ([ "${SINGLE_PATCH}" = "yes" -o "${x/_all_}" != "${x}" -o "${x/_${ARCH}_}" != "${x}" ] || \ |
|
|
235 | [ "${EPATCH_FORCE}" = "yes" ]) |
200 | then |
236 | then |
201 | local count=0 |
237 | local count=0 |
202 | local popts="${EPATCH_OPTS}" |
238 | local popts="${EPATCH_OPTS}" |
|
|
239 | local patchname=${x##*/} |
203 | |
240 | |
204 | if [ -n "${EPATCH_EXCLUDE}" ] |
241 | if [ -n "${EPATCH_EXCLUDE}" ] |
205 | then |
242 | then |
206 | if [ "`eval echo \$\{EPATCH_EXCLUDE/${x##*/}\}`" != "${EPATCH_EXCLUDE}" ] |
243 | if [ "${EPATCH_EXCLUDE/${patchname}}" != "${EPATCH_EXCLUDE}" ] |
207 | then |
244 | then |
208 | continue |
245 | continue |
209 | fi |
246 | fi |
210 | fi |
247 | fi |
211 | |
248 | |
212 | if [ "${SINGLE_PATCH}" = "yes" ] |
249 | if [ "${SINGLE_PATCH}" = "yes" ] |
213 | then |
250 | then |
214 | if [ -n "${EPATCH_SINGLE_MSG}" ] |
251 | if [ -n "${EPATCH_SINGLE_MSG}" ] |
215 | then |
252 | then |
216 | einfo "${EPATCH_SINGLE_MSG}" |
253 | einfo "${EPATCH_SINGLE_MSG}" |
217 | else |
254 | else |
218 | einfo "Applying ${x##*/}..." |
255 | einfo "Applying ${patchname} ..." |
219 | fi |
256 | fi |
220 | else |
257 | else |
221 | einfo " ${x##*/}..." |
258 | einfo " ${patchname} ..." |
222 | fi |
259 | fi |
223 | |
260 | |
224 | echo "***** ${x##*/} *****" > ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
261 | echo "***** ${patchname} *****" > ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
225 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
262 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
226 | |
263 | |
227 | # Allow for prefix to differ ... im lazy, so shoot me :/ |
264 | # Allow for prefix to differ ... im lazy, so shoot me :/ |
228 | while [ "${count}" -lt 5 ] |
265 | while [ "${count}" -lt 5 ] |
229 | do |
266 | do |
230 | # Generate some useful debug info ... |
267 | # Generate some useful debug info ... |
231 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
268 | _epatch_draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
232 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
269 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
233 | |
270 | |
234 | if [ "${PATCH_SUFFIX}" != "patch" ] |
271 | if [ "${PATCH_SUFFIX}" != "patch" ] |
235 | then |
272 | then |
236 | echo -n "PIPE_COMMAND: " >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
273 | echo -n "PIPE_COMMAND: " >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
237 | echo "${PIPE_CMD} ${x} > ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
274 | echo "${PIPE_CMD} ${x} > ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
238 | else |
275 | else |
239 | PATCH_TARGET="${x}" |
276 | PATCH_TARGET="${x}" |
240 | fi |
277 | fi |
241 | |
278 | |
242 | echo -n "PATCH COMMAND: " >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
279 | echo -n "PATCH COMMAND: " >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
243 | echo "patch ${popts} -p${count} < ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
280 | echo "patch -p${count} ${popts} < ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
244 | |
281 | |
245 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
282 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
246 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
283 | _epatch_draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
247 | |
284 | |
248 | if [ "${PATCH_SUFFIX}" != "patch" ] |
285 | if [ "${PATCH_SUFFIX}" != "patch" ] |
249 | then |
286 | then |
250 | if ! (${PIPE_CMD} ${x} > ${PATCH_TARGET}) >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} 2>&1 |
287 | if ! (${PIPE_CMD} ${x} > ${PATCH_TARGET}) >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} 2>&1 |
251 | then |
288 | then |
252 | echo |
289 | echo |
253 | eerror "Could not extract patch!" |
290 | eerror "Could not extract patch!" |
254 | #die "Could not extract patch!" |
291 | #die "Could not extract patch!" |
255 | count=5 |
292 | count=5 |
256 | break |
293 | break |
257 | fi |
294 | fi |
258 | fi |
295 | fi |
259 | |
296 | |
260 | if patch ${popts} --dry-run -f -p${count} < ${PATCH_TARGET} >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} 2>&1 |
297 | if (cat ${PATCH_TARGET} | patch -p${count} ${popts} --dry-run -f ; _epatch_assert) >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} 2>&1 |
261 | then |
298 | then |
262 | draw_line "***** ${x##*/} *****" > ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
299 | _epatch_draw_line "***** ${patchname} *****" > ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
263 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
300 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
264 | echo "ACTUALLY APPLYING ${x##*/}..." >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
301 | echo "ACTUALLY APPLYING ${patchname} ..." >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
265 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
302 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
266 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
303 | _epatch_draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
267 | |
304 | |
268 | patch ${popts} -p${count} < ${PATCH_TARGET} >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real 2>&1 |
305 | cat ${PATCH_TARGET} | patch -p${count} ${popts} >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real 2>&1 |
|
|
306 | _epatch_assert |
269 | |
307 | |
270 | if [ "$?" -ne 0 ] |
308 | if [ "$?" -ne 0 ] |
271 | then |
309 | then |
272 | cat ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
310 | cat ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
273 | echo |
311 | echo |
274 | eerror "A dry-run of patch command succeeded, but actually" |
312 | eerror "A dry-run of patch command succeeded, but actually" |
275 | eerror "applying the patch failed!" |
313 | eerror "applying the patch failed!" |
276 | #die "Real world sux compared to the dreamworld!" |
314 | #die "Real world sux compared to the dreamworld!" |
277 | count=5 |
315 | count=5 |
278 | fi |
316 | fi |
279 | |
317 | |
280 | rm -f ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
318 | rm -f ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
281 | |
319 | |
282 | break |
320 | break |
283 | fi |
321 | fi |
284 | |
322 | |
285 | count=$((count + 1)) |
323 | count=$((count + 1)) |
286 | done |
324 | done |
… | |
… | |
291 | fi |
329 | fi |
292 | |
330 | |
293 | if [ "${count}" -eq 5 ] |
331 | if [ "${count}" -eq 5 ] |
294 | then |
332 | then |
295 | echo |
333 | echo |
296 | eerror "Failed Patch: ${x##*/}!" |
334 | eerror "Failed Patch: ${patchname} !" |
|
|
335 | eerror " ( ${PATCH_TARGET} )" |
297 | eerror |
336 | eerror |
298 | eerror "Include in your bugreport the contents of:" |
337 | eerror "Include in your bugreport the contents of:" |
299 | eerror |
338 | eerror |
300 | eerror " ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}" |
339 | eerror " ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}" |
301 | echo |
340 | echo |
302 | die "Failed Patch: ${x##*/}!" |
341 | die "Failed Patch: ${patchname}!" |
303 | fi |
342 | fi |
304 | |
343 | |
305 | rm -f ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
344 | rm -f ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
306 | |
345 | |
307 | eend 0 |
346 | eend 0 |
308 | fi |
347 | fi |
309 | done |
348 | done |
310 | if [ "${SINGLE_PATCH}" = "no" ] |
349 | if [ "${SINGLE_PATCH}" = "no" ] |
311 | then |
350 | then |
312 | einfo "Done with patching" |
351 | einfo "Done with patching" |
313 | fi |
352 | fi |
314 | } |
353 | } |
315 | |
354 | |
316 | # This function check how many cpu's are present, and then set |
355 | # Cheap replacement for when debianutils (and thus mktemp) |
317 | # -j in MAKEOPTS accordingly. |
356 | # does not exist on the users system |
|
|
357 | # vapier@gentoo.org |
318 | # |
358 | # |
319 | # Thanks to nall <nall@gentoo.org> for this. |
359 | # Takes just 1 optional parameter (the directory to create tmpfile in) |
|
|
360 | emktemp() { |
|
|
361 | local exe="touch" |
|
|
362 | [[ $1 == -d ]] && exe="mkdir" && shift |
|
|
363 | local topdir=$1 |
|
|
364 | |
|
|
365 | if [[ -z ${topdir} ]] ; then |
|
|
366 | [[ -z ${T} ]] \ |
|
|
367 | && topdir="/tmp" \ |
|
|
368 | || topdir=${T} |
|
|
369 | fi |
|
|
370 | |
|
|
371 | if [[ -z $(type -p mktemp) ]] ; then |
|
|
372 | local tmp=/ |
|
|
373 | while [[ -e ${tmp} ]] ; do |
|
|
374 | tmp=${topdir}/tmp.${RANDOM}.${RANDOM}.${RANDOM} |
|
|
375 | done |
|
|
376 | ${exe} "${tmp}" || ${exe} -p "${tmp}" |
|
|
377 | echo "${tmp}" |
|
|
378 | else |
|
|
379 | if [[ ${exe} == "touch" ]] ; then |
|
|
380 | [[ ${USERLAND} == "GNU" ]] \ |
|
|
381 | && mktemp -p "${topdir}" \ |
|
|
382 | || TMPDIR="${topdir}" mktemp -t tmp |
|
|
383 | else |
|
|
384 | [[ ${USERLAND} == "GNU" ]] \ |
|
|
385 | && mktemp -d "${topdir}" \ |
|
|
386 | || TMPDIR="${topdir}" mktemp -dt tmp |
|
|
387 | fi |
|
|
388 | fi |
|
|
389 | } |
|
|
390 | |
|
|
391 | # Small wrapper for getent (Linux), nidump (Mac OS X), |
|
|
392 | # and pw (FreeBSD) used in enewuser()/enewgroup() |
|
|
393 | # Joe Jezak <josejx@gmail.com> and usata@gentoo.org |
|
|
394 | # FBSD stuff: Aaron Walker <ka0ttic@gentoo.org> |
320 | # |
395 | # |
321 | get_number_of_jobs() { |
396 | # egetent(database, key) |
322 | if [ ! -r /proc/cpuinfo ] |
397 | egetent() { |
|
|
398 | case ${CHOST} in |
|
|
399 | *-darwin*) |
|
|
400 | case "$2" in |
|
|
401 | *[!0-9]*) # Non numeric |
|
|
402 | nidump $1 . | awk -F":" "{ if (\$1 ~ /^$2$/) {print \$0;exit;} }" |
|
|
403 | ;; |
|
|
404 | *) # Numeric |
|
|
405 | nidump $1 . | awk -F":" "{ if (\$3 == $2) {print \$0;exit;} }" |
|
|
406 | ;; |
|
|
407 | esac |
|
|
408 | ;; |
|
|
409 | *-freebsd*|*-dragonfly*) |
|
|
410 | local opts action="user" |
|
|
411 | [[ $1 == "passwd" ]] || action="group" |
|
|
412 | |
|
|
413 | # lookup by uid/gid |
|
|
414 | if [[ $2 == [[:digit:]]* ]] ; then |
|
|
415 | [[ ${action} == "user" ]] && opts="-u" || opts="-g" |
|
|
416 | fi |
|
|
417 | |
|
|
418 | pw show ${action} ${opts} "$2" -q |
|
|
419 | ;; |
|
|
420 | *-netbsd*|*-openbsd*) |
|
|
421 | grep "$2:\*:" /etc/$1 |
|
|
422 | ;; |
|
|
423 | *) |
|
|
424 | type -p nscd >& /dev/null && nscd -i "$1" |
|
|
425 | getent "$1" "$2" |
|
|
426 | ;; |
|
|
427 | esac |
|
|
428 | } |
|
|
429 | |
|
|
430 | # Simplify/standardize adding users to the system |
|
|
431 | # vapier@gentoo.org |
|
|
432 | # |
|
|
433 | # enewuser(username, uid, shell, homedir, groups, extra options) |
|
|
434 | # |
|
|
435 | # Default values if you do not specify any: |
|
|
436 | # username: REQUIRED ! |
|
|
437 | # uid: next available (see useradd(8)) |
|
|
438 | # note: pass -1 to get default behavior |
|
|
439 | # shell: /bin/false |
|
|
440 | # homedir: /dev/null |
|
|
441 | # groups: none |
|
|
442 | # extra: comment of 'added by portage for ${PN}' |
|
|
443 | enewuser() { |
|
|
444 | case ${EBUILD_PHASE} in |
|
|
445 | unpack|compile|test|install) |
|
|
446 | eerror "'enewuser()' called from '${EBUILD_PHASE}()' which is not a pkg_* function." |
|
|
447 | eerror "Package fails at QA and at life. Please file a bug." |
|
|
448 | die "Bad package! enewuser is only for use in pkg_* functions!" |
|
|
449 | esac |
|
|
450 | |
|
|
451 | # get the username |
|
|
452 | local euser=$1; shift |
|
|
453 | if [[ -z ${euser} ]] ; then |
|
|
454 | eerror "No username specified !" |
|
|
455 | die "Cannot call enewuser without a username" |
|
|
456 | fi |
|
|
457 | |
|
|
458 | # lets see if the username already exists |
|
|
459 | if [[ -n $(egetent passwd "${euser}") ]] ; then |
|
|
460 | return 0 |
|
|
461 | fi |
|
|
462 | einfo "Adding user '${euser}' to your system ..." |
|
|
463 | |
|
|
464 | # options to pass to useradd |
|
|
465 | local opts= |
|
|
466 | |
|
|
467 | # handle uid |
|
|
468 | local euid=$1; shift |
|
|
469 | if [[ -n ${euid} && ${euid} != -1 ]] ; then |
|
|
470 | if [[ ${euid} -gt 0 ]] ; then |
|
|
471 | if [[ -n $(egetent passwd ${euid}) ]] ; then |
|
|
472 | euid="next" |
|
|
473 | fi |
|
|
474 | else |
|
|
475 | eerror "Userid given but is not greater than 0 !" |
|
|
476 | die "${euid} is not a valid UID" |
|
|
477 | fi |
|
|
478 | else |
|
|
479 | euid="next" |
|
|
480 | fi |
|
|
481 | if [[ ${euid} == "next" ]] ; then |
|
|
482 | for ((euid = 101; euid <= 999; euid++)); do |
|
|
483 | [[ -z $(egetent passwd ${euid}) ]] && break |
|
|
484 | done |
|
|
485 | fi |
|
|
486 | opts="${opts} -u ${euid}" |
|
|
487 | einfo " - Userid: ${euid}" |
|
|
488 | |
|
|
489 | # handle shell |
|
|
490 | local eshell=$1; shift |
|
|
491 | if [[ ! -z ${eshell} ]] && [[ ${eshell} != "-1" ]] ; then |
|
|
492 | if [[ ! -e ${ROOT}${eshell} ]] ; then |
|
|
493 | eerror "A shell was specified but it does not exist !" |
|
|
494 | die "${eshell} does not exist in ${ROOT}" |
|
|
495 | fi |
|
|
496 | if [[ ${eshell} == */false || ${eshell} == */nologin ]] ; then |
|
|
497 | eerror "Do not specify ${eshell} yourself, use -1" |
|
|
498 | die "Pass '-1' as the shell parameter" |
|
|
499 | fi |
|
|
500 | else |
|
|
501 | for shell in /sbin/nologin /usr/sbin/nologin /bin/false /usr/bin/false /dev/null ; do |
|
|
502 | [[ -x ${ROOT}${shell} ]] && break |
|
|
503 | done |
|
|
504 | |
|
|
505 | if [[ ${shell} == "/dev/null" ]] ; then |
|
|
506 | eerror "Unable to identify the shell to use, proceeding with userland default." |
|
|
507 | case ${USERLAND} in |
|
|
508 | GNU) shell="/bin/false" ;; |
|
|
509 | BSD) shell="/sbin/nologin" ;; |
|
|
510 | Darwin) shell="/usr/sbin/nologin" ;; |
|
|
511 | *) die "Unable to identify the default shell for userland ${USERLAND}" |
|
|
512 | esac |
|
|
513 | fi |
|
|
514 | |
|
|
515 | eshell=${shell} |
|
|
516 | fi |
|
|
517 | einfo " - Shell: ${eshell}" |
|
|
518 | opts="${opts} -s ${eshell}" |
|
|
519 | |
|
|
520 | # handle homedir |
|
|
521 | local ehome=$1; shift |
|
|
522 | if [[ -z ${ehome} ]] || [[ ${ehome} == "-1" ]] ; then |
|
|
523 | ehome="/dev/null" |
|
|
524 | fi |
|
|
525 | einfo " - Home: ${ehome}" |
|
|
526 | opts="${opts} -d ${ehome}" |
|
|
527 | |
|
|
528 | # handle groups |
|
|
529 | local egroups=$1; shift |
|
|
530 | if [[ ! -z ${egroups} ]] ; then |
|
|
531 | local oldifs=${IFS} |
|
|
532 | local defgroup="" exgroups="" |
|
|
533 | |
|
|
534 | export IFS="," |
|
|
535 | for g in ${egroups} ; do |
|
|
536 | export IFS=${oldifs} |
|
|
537 | if [[ -z $(egetent group "${g}") ]] ; then |
|
|
538 | eerror "You must add group ${g} to the system first" |
|
|
539 | die "${g} is not a valid GID" |
|
|
540 | fi |
|
|
541 | if [[ -z ${defgroup} ]] ; then |
|
|
542 | defgroup=${g} |
|
|
543 | else |
|
|
544 | exgroups="${exgroups},${g}" |
|
|
545 | fi |
|
|
546 | export IFS="," |
|
|
547 | done |
|
|
548 | export IFS=${oldifs} |
|
|
549 | |
|
|
550 | opts="${opts} -g ${defgroup}" |
|
|
551 | if [[ ! -z ${exgroups} ]] ; then |
|
|
552 | opts="${opts} -G ${exgroups:1}" |
|
|
553 | fi |
|
|
554 | else |
|
|
555 | egroups="(none)" |
|
|
556 | fi |
|
|
557 | einfo " - Groups: ${egroups}" |
|
|
558 | |
|
|
559 | # handle extra and add the user |
|
|
560 | local oldsandbox=${SANDBOX_ON} |
|
|
561 | export SANDBOX_ON="0" |
|
|
562 | case ${CHOST} in |
|
|
563 | *-darwin*) |
|
|
564 | ### Make the user |
|
|
565 | if [[ -z $@ ]] ; then |
|
|
566 | dscl . create /users/${euser} uid ${euid} |
|
|
567 | dscl . create /users/${euser} shell ${eshell} |
|
|
568 | dscl . create /users/${euser} home ${ehome} |
|
|
569 | dscl . create /users/${euser} realname "added by portage for ${PN}" |
|
|
570 | ### Add the user to the groups specified |
|
|
571 | local oldifs=${IFS} |
|
|
572 | export IFS="," |
|
|
573 | for g in ${egroups} ; do |
|
|
574 | dscl . merge /groups/${g} users ${euser} |
|
|
575 | done |
|
|
576 | export IFS=${oldifs} |
|
|
577 | else |
|
|
578 | einfo "Extra options are not supported on Darwin yet" |
|
|
579 | einfo "Please report the ebuild along with the info below" |
|
|
580 | einfo "eextra: $@" |
|
|
581 | die "Required function missing" |
|
|
582 | fi |
|
|
583 | ;; |
|
|
584 | *-freebsd*|*-dragonfly*) |
|
|
585 | if [[ -z $@ ]] ; then |
|
|
586 | pw useradd ${euser} ${opts} \ |
|
|
587 | -c "added by portage for ${PN}" \ |
|
|
588 | die "enewuser failed" |
|
|
589 | else |
|
|
590 | einfo " - Extra: $@" |
|
|
591 | pw useradd ${euser} ${opts} \ |
|
|
592 | "$@" || die "enewuser failed" |
|
|
593 | fi |
|
|
594 | ;; |
|
|
595 | |
|
|
596 | *-netbsd*) |
|
|
597 | if [[ -z $@ ]] ; then |
|
|
598 | useradd ${opts} ${euser} || die "enewuser failed" |
|
|
599 | else |
|
|
600 | einfo " - Extra: $@" |
|
|
601 | useradd ${opts} ${euser} "$@" || die "enewuser failed" |
|
|
602 | fi |
|
|
603 | ;; |
|
|
604 | |
|
|
605 | *-openbsd*) |
|
|
606 | if [[ -z $@ ]] ; then |
|
|
607 | useradd -u ${euid} -s ${eshell} \ |
|
|
608 | -d ${ehome} -c "Added by portage for ${PN}" \ |
|
|
609 | -g ${egroups} ${euser} || die "enewuser failed" |
|
|
610 | else |
|
|
611 | einfo " - Extra: $@" |
|
|
612 | useradd -u ${euid} -s ${eshell} \ |
|
|
613 | -d ${ehome} -c "Added by portage for ${PN}" \ |
|
|
614 | -g ${egroups} ${euser} "$@" || die "enewuser failed" |
|
|
615 | fi |
|
|
616 | ;; |
|
|
617 | |
|
|
618 | *) |
|
|
619 | if [[ -z $@ ]] ; then |
|
|
620 | useradd ${opts} ${euser} \ |
|
|
621 | -c "added by portage for ${PN}" \ |
|
|
622 | || die "enewuser failed" |
|
|
623 | else |
|
|
624 | einfo " - Extra: $@" |
|
|
625 | useradd ${opts} ${euser} "$@" \ |
|
|
626 | || die "enewuser failed" |
|
|
627 | fi |
|
|
628 | ;; |
|
|
629 | esac |
|
|
630 | |
|
|
631 | if [[ ! -e ${ROOT}/${ehome} ]] ; then |
|
|
632 | einfo " - Creating ${ehome} in ${ROOT}" |
|
|
633 | mkdir -p "${ROOT}/${ehome}" |
|
|
634 | chown ${euser} "${ROOT}/${ehome}" |
|
|
635 | chmod 755 "${ROOT}/${ehome}" |
|
|
636 | fi |
|
|
637 | |
|
|
638 | export SANDBOX_ON=${oldsandbox} |
|
|
639 | } |
|
|
640 | |
|
|
641 | # Simplify/standardize adding groups to the system |
|
|
642 | # vapier@gentoo.org |
|
|
643 | # |
|
|
644 | # enewgroup(group, gid) |
|
|
645 | # |
|
|
646 | # Default values if you do not specify any: |
|
|
647 | # groupname: REQUIRED ! |
|
|
648 | # gid: next available (see groupadd(8)) |
|
|
649 | # extra: none |
|
|
650 | enewgroup() { |
|
|
651 | case ${EBUILD_PHASE} in |
|
|
652 | unpack|compile|test|install) |
|
|
653 | eerror "'enewgroup()' called from '${EBUILD_PHASE}()' which is not a pkg_* function." |
|
|
654 | eerror "Package fails at QA and at life. Please file a bug." |
|
|
655 | die "Bad package! enewgroup is only for use in pkg_* functions!" |
|
|
656 | esac |
|
|
657 | |
|
|
658 | # get the group |
|
|
659 | local egroup="$1"; shift |
|
|
660 | if [ -z "${egroup}" ] |
323 | then |
661 | then |
|
|
662 | eerror "No group specified !" |
|
|
663 | die "Cannot call enewgroup without a group" |
|
|
664 | fi |
|
|
665 | |
|
|
666 | # see if group already exists |
|
|
667 | if [[ -n $(egetent group "${egroup}") ]]; then |
324 | return 1 |
668 | return 0 |
325 | fi |
669 | fi |
|
|
670 | einfo "Adding group '${egroup}' to your system ..." |
326 | |
671 | |
327 | export MAKEOPTS="`echo ${MAKEOPTS} | sed -e 's:-j[0-9]*::g'`" |
672 | # options to pass to useradd |
328 | |
673 | local opts= |
329 | if [ "${ARCH}" = "x86" ] |
674 | |
|
|
675 | # handle gid |
|
|
676 | local egid="$1"; shift |
|
|
677 | if [ ! -z "${egid}" ] |
330 | then |
678 | then |
331 | # x86 always has "processor" |
679 | if [ "${egid}" -gt 0 ] |
332 | export MAKEOPTS="${MAKEOPTS} -j$((`grep -c ^processor /proc/cpuinfo` * 2))" |
|
|
333 | |
|
|
334 | elif [ "${ARCH}" = "sparc" -o "${ARCH}" = "sparc64" ] |
|
|
335 | then |
|
|
336 | # sparc always has "ncpus active" |
|
|
337 | export MAKEOPTS="${MAKEOPTS} -j$((`grep "^ncpus active" /proc/cpuinfo | sed -e "s/^.*: //"` * 2))" |
|
|
338 | |
|
|
339 | elif [ "${ARCH}" = "alpha" ] |
|
|
340 | then |
|
|
341 | # alpha has "cpus active", but only when compiled with SMP |
|
|
342 | if [ "`grep -c "^cpus active" /proc/cpuinfo`" = "1" ] |
|
|
343 | then |
680 | then |
344 | export MAKEOPTS="${MAKEOPTS} -j$((`grep "^cpus active" /proc/cpuinfo | sed -e "s/^.*: //"` * 2))" |
681 | if [ -z "`egetent group ${egid}`" ] |
|
|
682 | then |
|
|
683 | if [[ "${CHOST}" == *-darwin* ]]; then |
|
|
684 | opts="${opts} ${egid}" |
|
|
685 | else |
|
|
686 | opts="${opts} -g ${egid}" |
|
|
687 | fi |
|
|
688 | else |
|
|
689 | egid="next available; requested gid taken" |
|
|
690 | fi |
345 | else |
691 | else |
346 | export MAKEOPTS="${MAKEOPTS} -j2" |
692 | eerror "Groupid given but is not greater than 0 !" |
|
|
693 | die "${egid} is not a valid GID" |
|
|
694 | fi |
|
|
695 | else |
|
|
696 | egid="next available" |
347 | fi |
697 | fi |
348 | |
698 | einfo " - Groupid: ${egid}" |
349 | elif [ "${ARCH}" = "ppc" ] |
699 | |
350 | then |
700 | # handle extra |
351 | # ppc has "processor", but only when compiled with SMP |
701 | local eextra="$@" |
352 | if [ "`grep -c "^processor" /proc/cpuinfo`" = "1" ] |
702 | opts="${opts} ${eextra}" |
|
|
703 | |
|
|
704 | # add the group |
|
|
705 | local oldsandbox="${SANDBOX_ON}" |
|
|
706 | export SANDBOX_ON="0" |
|
|
707 | case ${CHOST} in |
|
|
708 | *-darwin*) |
|
|
709 | if [ ! -z "${eextra}" ]; |
353 | then |
710 | then |
354 | export MAKEOPTS="${MAKEOPTS} -j$((`grep -c ^processor /proc/cpuinfo` * 2))" |
711 | einfo "Extra options are not supported on Darwin/OS X yet" |
|
|
712 | einfo "Please report the ebuild along with the info below" |
|
|
713 | einfo "eextra: ${eextra}" |
|
|
714 | die "Required function missing" |
|
|
715 | fi |
|
|
716 | |
|
|
717 | # If we need the next available |
|
|
718 | case ${egid} in |
|
|
719 | *[!0-9]*) # Non numeric |
|
|
720 | for ((egid = 101; egid <= 999; egid++)); do |
|
|
721 | [[ -z $(egetent group ${egid}) ]] && break |
|
|
722 | done |
|
|
723 | esac |
|
|
724 | dscl . create /groups/${egroup} gid ${egid} |
|
|
725 | dscl . create /groups/${egroup} passwd '*' |
|
|
726 | ;; |
|
|
727 | |
|
|
728 | *-freebsd*|*-dragonfly*) |
|
|
729 | case ${egid} in |
|
|
730 | *[!0-9]*) # Non numeric |
|
|
731 | for ((egid = 101; egid <= 999; egid++)); do |
|
|
732 | [[ -z $(egetent group ${egid}) ]] && break |
|
|
733 | done |
|
|
734 | esac |
|
|
735 | pw groupadd ${egroup} -g ${egid} || die "enewgroup failed" |
|
|
736 | ;; |
|
|
737 | |
|
|
738 | *-netbsd*) |
|
|
739 | case ${egid} in |
|
|
740 | *[!0-9]*) # Non numeric |
|
|
741 | for ((egid = 101; egid <= 999; egid++)); do |
|
|
742 | [[ -z $(egetent group ${egid}) ]] && break |
|
|
743 | done |
|
|
744 | esac |
|
|
745 | groupadd -g ${egid} ${egroup} || die "enewgroup failed" |
|
|
746 | ;; |
|
|
747 | |
|
|
748 | *) |
|
|
749 | groupadd ${opts} ${egroup} || die "enewgroup failed" |
|
|
750 | ;; |
|
|
751 | esac |
|
|
752 | export SANDBOX_ON="${oldsandbox}" |
|
|
753 | } |
|
|
754 | |
|
|
755 | # Simple script to replace 'dos2unix' binaries |
|
|
756 | # vapier@gentoo.org |
|
|
757 | # |
|
|
758 | # edos2unix(file, <more files> ...) |
|
|
759 | edos2unix() { |
|
|
760 | for f in "$@" |
|
|
761 | do |
|
|
762 | cp "${f}" ${T}/edos2unix |
|
|
763 | sed 's/\r$//' ${T}/edos2unix > "${f}" |
|
|
764 | done |
|
|
765 | } |
|
|
766 | |
|
|
767 | |
|
|
768 | ############################################################## |
|
|
769 | # START: Handle .desktop files and menu entries # |
|
|
770 | # maybe this should be separated into a new eclass some time # |
|
|
771 | # lanius@gentoo.org # |
|
|
772 | ############################################################## |
|
|
773 | |
|
|
774 | # Make a desktop file ! |
|
|
775 | # Great for making those icons in kde/gnome startmenu ! |
|
|
776 | # Amaze your friends ! Get the women ! Join today ! |
|
|
777 | # |
|
|
778 | # make_desktop_entry(<command>, [name], [icon], [type], [path]) |
|
|
779 | # |
|
|
780 | # binary: what command does the app run with ? |
|
|
781 | # name: the name that will show up in the menu |
|
|
782 | # icon: give your little like a pretty little icon ... |
|
|
783 | # this can be relative (to /usr/share/pixmaps) or |
|
|
784 | # a full path to an icon |
|
|
785 | # type: what kind of application is this ? for categories: |
|
|
786 | # http://www.freedesktop.org/Standards/desktop-entry-spec |
|
|
787 | # path: if your app needs to startup in a specific dir |
|
|
788 | make_desktop_entry() { |
|
|
789 | [[ -z $1 ]] && eerror "make_desktop_entry: You must specify the executable" && return 1 |
|
|
790 | |
|
|
791 | local exec=${1} |
|
|
792 | local name=${2:-${PN}} |
|
|
793 | local icon=${3:-${PN}.png} |
|
|
794 | local type=${4} |
|
|
795 | local path=${5} |
|
|
796 | |
|
|
797 | if [[ -z ${type} ]] ; then |
|
|
798 | local catmaj=${CATEGORY%%-*} |
|
|
799 | local catmin=${CATEGORY##*-} |
|
|
800 | case ${catmaj} in |
|
|
801 | app) |
|
|
802 | case ${catmin} in |
|
|
803 | admin) type=System;; |
|
|
804 | cdr) type=DiscBurning;; |
|
|
805 | dicts) type=Dictionary;; |
|
|
806 | editors) type=TextEditor;; |
|
|
807 | emacs) type=TextEditor;; |
|
|
808 | emulation) type=Emulator;; |
|
|
809 | laptop) type=HardwareSettings;; |
|
|
810 | office) type=Office;; |
|
|
811 | vim) type=TextEditor;; |
|
|
812 | xemacs) type=TextEditor;; |
|
|
813 | *) type=;; |
|
|
814 | esac |
|
|
815 | ;; |
|
|
816 | |
|
|
817 | dev) |
|
|
818 | type="Development" |
|
|
819 | ;; |
|
|
820 | |
|
|
821 | games) |
|
|
822 | case ${catmin} in |
|
|
823 | action) type=ActionGame;; |
|
|
824 | arcade) type=ArcadeGame;; |
|
|
825 | board) type=BoardGame;; |
|
|
826 | kids) type=KidsGame;; |
|
|
827 | emulation) type=Emulator;; |
|
|
828 | puzzle) type=LogicGame;; |
|
|
829 | rpg) type=RolePlaying;; |
|
|
830 | roguelike) type=RolePlaying;; |
|
|
831 | simulation) type=Simulation;; |
|
|
832 | sports) type=SportsGame;; |
|
|
833 | strategy) type=StrategyGame;; |
|
|
834 | *) type=;; |
|
|
835 | esac |
|
|
836 | type="Game;${type}" |
|
|
837 | ;; |
|
|
838 | |
|
|
839 | mail) |
|
|
840 | type="Network;Email" |
|
|
841 | ;; |
|
|
842 | |
|
|
843 | media) |
|
|
844 | case ${catmin} in |
|
|
845 | gfx) type=Graphics;; |
|
|
846 | radio) type=Tuner;; |
|
|
847 | sound) type=Audio;; |
|
|
848 | tv) type=TV;; |
|
|
849 | video) type=Video;; |
|
|
850 | *) type=;; |
|
|
851 | esac |
|
|
852 | type="AudioVideo;${type}" |
|
|
853 | ;; |
|
|
854 | |
|
|
855 | net) |
|
|
856 | case ${catmin} in |
|
|
857 | dialup) type=Dialup;; |
|
|
858 | ftp) type=FileTransfer;; |
|
|
859 | im) type=InstantMessaging;; |
|
|
860 | irc) type=IRCClient;; |
|
|
861 | mail) type=Email;; |
|
|
862 | news) type=News;; |
|
|
863 | nntp) type=News;; |
|
|
864 | p2p) type=FileTransfer;; |
|
|
865 | *) type=;; |
|
|
866 | esac |
|
|
867 | type="Network;${type}" |
|
|
868 | ;; |
|
|
869 | |
|
|
870 | sci) |
|
|
871 | case ${catmin} in |
|
|
872 | astro*) type=Astronomy;; |
|
|
873 | bio*) type=Biology;; |
|
|
874 | calc*) type=Calculator;; |
|
|
875 | chem*) type=Chemistry;; |
|
|
876 | geo*) type=Geology;; |
|
|
877 | math*) type=Math;; |
|
|
878 | *) type=;; |
|
|
879 | esac |
|
|
880 | type="Science;${type}" |
|
|
881 | ;; |
|
|
882 | |
|
|
883 | www) |
|
|
884 | case ${catmin} in |
|
|
885 | client) type=WebBrowser;; |
|
|
886 | *) type=;; |
|
|
887 | esac |
|
|
888 | type="Network" |
|
|
889 | ;; |
|
|
890 | |
|
|
891 | *) |
|
|
892 | type= |
|
|
893 | ;; |
|
|
894 | esac |
|
|
895 | fi |
|
|
896 | if [ "${SLOT}" == "0" ] ; then |
|
|
897 | local desktop_name="${PN}" |
|
|
898 | else |
|
|
899 | local desktop_name="${PN}-${SLOT}" |
|
|
900 | fi |
|
|
901 | local desktop=${T}/${exec%% *}-${desktop_name}.desktop |
|
|
902 | # local desktop=${T}/${exec%% *:-${desktop_name}}.desktop |
|
|
903 | |
|
|
904 | echo "[Desktop Entry] |
|
|
905 | Encoding=UTF-8 |
|
|
906 | Version=0.9.2 |
|
|
907 | Name=${name} |
|
|
908 | Type=Application |
|
|
909 | Comment=${DESCRIPTION} |
|
|
910 | Exec=${exec} |
|
|
911 | TryExec=${exec%% *} |
|
|
912 | Path=${path} |
|
|
913 | Icon=${icon} |
|
|
914 | Categories=Application;${type};" > "${desktop}" |
|
|
915 | |
|
|
916 | ( |
|
|
917 | # wrap the env here so that the 'insinto' call |
|
|
918 | # doesn't corrupt the env of the caller |
|
|
919 | insinto /usr/share/applications |
|
|
920 | doins "${desktop}" |
|
|
921 | ) |
|
|
922 | } |
|
|
923 | |
|
|
924 | # Make a GDM/KDM Session file |
|
|
925 | # |
|
|
926 | # make_session_desktop(<title>, <command>) |
|
|
927 | # title: File to execute to start the Window Manager |
|
|
928 | # command: Name of the Window Manager |
|
|
929 | |
|
|
930 | make_session_desktop() { |
|
|
931 | [[ -z $1 ]] && eerror "make_session_desktop: You must specify the title" && return 1 |
|
|
932 | [[ -z $2 ]] && eerror "make_session_desktop: You must specify the command" && return 1 |
|
|
933 | |
|
|
934 | local title=$1 |
|
|
935 | local command=$2 |
|
|
936 | local desktop=${T}/${wm}.desktop |
|
|
937 | |
|
|
938 | echo "[Desktop Entry] |
|
|
939 | Encoding=UTF-8 |
|
|
940 | Name=${title} |
|
|
941 | Comment=This session logs you into ${title} |
|
|
942 | Exec=${command} |
|
|
943 | TryExec=${command} |
|
|
944 | Type=Application" > "${desktop}" |
|
|
945 | |
|
|
946 | insinto /usr/share/xsessions |
|
|
947 | doins "${desktop}" |
|
|
948 | } |
|
|
949 | |
|
|
950 | domenu() { |
|
|
951 | local i j |
|
|
952 | insinto /usr/share/applications |
|
|
953 | for i in "$@" ; do |
|
|
954 | if [[ -f ${i} ]] ; then |
|
|
955 | doins "${i}" |
|
|
956 | elif [[ -d ${i} ]] ; then |
|
|
957 | for j in "${i}"/*.desktop ; do |
|
|
958 | doins "${j}" |
|
|
959 | done |
|
|
960 | fi |
|
|
961 | done |
|
|
962 | } |
|
|
963 | newmenu() { |
|
|
964 | insinto /usr/share/applications |
|
|
965 | newins "$1" "$2" |
|
|
966 | } |
|
|
967 | |
|
|
968 | doicon() { |
|
|
969 | local i j |
|
|
970 | insinto /usr/share/pixmaps |
|
|
971 | for i in "$@" ; do |
|
|
972 | if [[ -f ${i} ]] ; then |
|
|
973 | doins "${i}" |
|
|
974 | elif [[ -d ${i} ]] ; then |
|
|
975 | for j in "${i}"/*.png ; do |
|
|
976 | doins "${j}" |
|
|
977 | done |
|
|
978 | fi |
|
|
979 | done |
|
|
980 | } |
|
|
981 | newicon() { |
|
|
982 | insinto /usr/share/pixmaps |
|
|
983 | newins "$1" "$2" |
|
|
984 | } |
|
|
985 | |
|
|
986 | ############################################################## |
|
|
987 | # END: Handle .desktop files and menu entries # |
|
|
988 | ############################################################## |
|
|
989 | |
|
|
990 | |
|
|
991 | # for internal use only (unpack_pdv and unpack_makeself) |
|
|
992 | find_unpackable_file() { |
|
|
993 | local src=$1 |
|
|
994 | if [[ -z ${src} ]] ; then |
|
|
995 | src=${DISTDIR}/${A} |
|
|
996 | else |
|
|
997 | if [[ -e ${DISTDIR}/${src} ]] ; then |
|
|
998 | src=${DISTDIR}/${src} |
|
|
999 | elif [[ -e ${PWD}/${src} ]] ; then |
|
|
1000 | src=${PWD}/${src} |
|
|
1001 | elif [[ -e ${src} ]] ; then |
|
|
1002 | src=${src} |
|
|
1003 | fi |
|
|
1004 | fi |
|
|
1005 | [[ ! -e ${src} ]] && return 1 |
|
|
1006 | echo "${src}" |
|
|
1007 | } |
|
|
1008 | |
|
|
1009 | # Unpack those pesky pdv generated files ... |
|
|
1010 | # They're self-unpacking programs with the binary package stuffed in |
|
|
1011 | # the middle of the archive. Valve seems to use it a lot ... too bad |
|
|
1012 | # it seems to like to segfault a lot :(. So lets take it apart ourselves. |
|
|
1013 | # |
|
|
1014 | # Usage: unpack_pdv [file to unpack] [size of off_t] |
|
|
1015 | # - you have to specify the off_t size ... i have no idea how to extract that |
|
|
1016 | # information out of the binary executable myself. basically you pass in |
|
|
1017 | # the size of the off_t type (in bytes) on the machine that built the pdv |
|
|
1018 | # archive. one way to determine this is by running the following commands: |
|
|
1019 | # strings <pdv archive> | grep lseek |
|
|
1020 | # strace -elseek <pdv archive> |
|
|
1021 | # basically look for the first lseek command (we do the strings/grep because |
|
|
1022 | # sometimes the function call is _llseek or something) and steal the 2nd |
|
|
1023 | # parameter. here is an example: |
|
|
1024 | # root@vapier 0 pdv_unpack # strings hldsupdatetool.bin | grep lseek |
|
|
1025 | # lseek |
|
|
1026 | # root@vapier 0 pdv_unpack # strace -elseek ./hldsupdatetool.bin |
|
|
1027 | # lseek(3, -4, SEEK_END) = 2981250 |
|
|
1028 | # thus we would pass in the value of '4' as the second parameter. |
|
|
1029 | unpack_pdv() { |
|
|
1030 | local src=$(find_unpackable_file $1) |
|
|
1031 | local sizeoff_t=$2 |
|
|
1032 | |
|
|
1033 | [[ -z ${src} ]] && die "Could not locate source for '$1'" |
|
|
1034 | [[ -z ${sizeoff_t} ]] && die "No idea what off_t size was used for this pdv :(" |
|
|
1035 | |
|
|
1036 | local shrtsrc=$(basename "${src}") |
|
|
1037 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
|
|
1038 | local metaskip=`tail -c ${sizeoff_t} ${src} | hexdump -e \"%i\"` |
|
|
1039 | local tailskip=`tail -c $((${sizeoff_t}*2)) ${src} | head -c ${sizeoff_t} | hexdump -e \"%i\"` |
|
|
1040 | |
|
|
1041 | # grab metadata for debug reasons |
|
|
1042 | local metafile="$(emktemp)" |
|
|
1043 | tail -c +$((${metaskip}+1)) ${src} > ${metafile} |
|
|
1044 | |
|
|
1045 | # rip out the final file name from the metadata |
|
|
1046 | local datafile="`tail -c +$((${metaskip}+1)) ${src} | strings | head -n 1`" |
|
|
1047 | datafile="`basename ${datafile}`" |
|
|
1048 | |
|
|
1049 | # now lets uncompress/untar the file if need be |
|
|
1050 | local tmpfile="$(emktemp)" |
|
|
1051 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null | head -c 512 > ${tmpfile} |
|
|
1052 | |
|
|
1053 | local iscompressed="`file -b ${tmpfile}`" |
|
|
1054 | if [ "${iscompressed:0:8}" == "compress" ] ; then |
|
|
1055 | iscompressed=1 |
|
|
1056 | mv ${tmpfile}{,.Z} |
|
|
1057 | gunzip ${tmpfile} |
|
|
1058 | else |
|
|
1059 | iscompressed=0 |
|
|
1060 | fi |
|
|
1061 | local istar="`file -b ${tmpfile}`" |
|
|
1062 | if [ "${istar:0:9}" == "POSIX tar" ] ; then |
|
|
1063 | istar=1 |
|
|
1064 | else |
|
|
1065 | istar=0 |
|
|
1066 | fi |
|
|
1067 | |
|
|
1068 | #for some reason gzip dies with this ... dd cant provide buffer fast enough ? |
|
|
1069 | #dd if=${src} ibs=${metaskip} count=1 \ |
|
|
1070 | # | dd ibs=${tailskip} skip=1 \ |
|
|
1071 | # | gzip -dc \ |
|
|
1072 | # > ${datafile} |
|
|
1073 | if [ ${iscompressed} -eq 1 ] ; then |
|
|
1074 | if [ ${istar} -eq 1 ] ; then |
|
|
1075 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null \ |
|
|
1076 | | head -c $((${metaskip}-${tailskip})) \ |
|
|
1077 | | tar -xzf - |
355 | else |
1078 | else |
356 | export MAKEOPTS="${MAKEOPTS} -j2" |
1079 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null \ |
|
|
1080 | | head -c $((${metaskip}-${tailskip})) \ |
|
|
1081 | | gzip -dc \ |
|
|
1082 | > ${datafile} |
357 | fi |
1083 | fi |
358 | else |
1084 | else |
359 | export MAKEOPTS="${MAKEOPTS} -j$((`grep -c ^cpu /proc/cpuinfo` * 2))" |
1085 | if [ ${istar} -eq 1 ] ; then |
360 | die "Unknown ARCH -- ${ARCH}!" |
1086 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null \ |
|
|
1087 | | head -c $((${metaskip}-${tailskip})) \ |
|
|
1088 | | tar --no-same-owner -xf - |
|
|
1089 | else |
|
|
1090 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null \ |
|
|
1091 | | head -c $((${metaskip}-${tailskip})) \ |
|
|
1092 | > ${datafile} |
361 | fi |
1093 | fi |
|
|
1094 | fi |
|
|
1095 | true |
|
|
1096 | #[ -s "${datafile}" ] || die "failure unpacking pdv ('${metaskip}' '${tailskip}' '${datafile}')" |
|
|
1097 | #assert "failure unpacking pdv ('${metaskip}' '${tailskip}' '${datafile}')" |
362 | } |
1098 | } |
363 | |
1099 | |
|
|
1100 | # Unpack those pesky makeself generated files ... |
|
|
1101 | # They're shell scripts with the binary package tagged onto |
|
|
1102 | # the end of the archive. Loki utilized the format as does |
|
|
1103 | # many other game companies. |
|
|
1104 | # |
|
|
1105 | # Usage: unpack_makeself [file to unpack] [offset] [tail|dd] |
|
|
1106 | # - If the file is not specified then unpack will utilize ${A}. |
|
|
1107 | # - If the offset is not specified then we will attempt to extract |
|
|
1108 | # the proper offset from the script itself. |
|
|
1109 | unpack_makeself() { |
|
|
1110 | local src_input=${1:-${A}} |
|
|
1111 | local src=$(find_unpackable_file "${src_input}") |
|
|
1112 | local skip=$2 |
|
|
1113 | local exe=$3 |
|
|
1114 | |
|
|
1115 | [[ -z ${src} ]] && die "Could not locate source for '${src_input}'" |
|
|
1116 | |
|
|
1117 | local shrtsrc=$(basename "${src}") |
|
|
1118 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
|
|
1119 | if [[ -z ${skip} ]] ; then |
|
|
1120 | local ver=$(grep -a '#.*Makeself' "${src}" | awk '{print $NF}') |
|
|
1121 | local skip=0 |
|
|
1122 | exe=tail |
|
|
1123 | case ${ver} in |
|
|
1124 | 1.5.*|1.6.0-nv) # tested 1.5.{3,4,5} ... guessing 1.5.x series is same |
|
|
1125 | skip=$(grep -a ^skip= "${src}" | cut -d= -f2) |
|
|
1126 | ;; |
|
|
1127 | 2.0|2.0.1) |
|
|
1128 | skip=$(grep -a ^$'\t'tail "${src}" | awk '{print $2}' | cut -b2-) |
|
|
1129 | ;; |
|
|
1130 | 2.1.1) |
|
|
1131 | skip=$(grep -a ^offset= "${src}" | awk '{print $2}' | cut -b2-) |
|
|
1132 | let skip="skip + 1" |
|
|
1133 | ;; |
|
|
1134 | 2.1.2) |
|
|
1135 | skip=$(grep -a ^offset= "${src}" | awk '{print $3}' | head -n 1) |
|
|
1136 | let skip="skip + 1" |
|
|
1137 | ;; |
|
|
1138 | 2.1.3) |
|
|
1139 | skip=`grep -a ^offset= "${src}" | awk '{print $3}'` |
|
|
1140 | let skip="skip + 1" |
|
|
1141 | ;; |
|
|
1142 | 2.1.4|2.1.5) |
|
|
1143 | skip=$(grep -a offset=.*head.*wc "${src}" | awk '{print $3}' | head -n 1) |
|
|
1144 | skip=$(head -n ${skip} "${src}" | wc -c) |
|
|
1145 | exe="dd" |
|
|
1146 | ;; |
|
|
1147 | *) |
|
|
1148 | eerror "I'm sorry, but I was unable to support the Makeself file." |
|
|
1149 | eerror "The version I detected was '${ver}'." |
|
|
1150 | eerror "Please file a bug about the file ${shrtsrc} at" |
|
|
1151 | eerror "http://bugs.gentoo.org/ so that support can be added." |
|
|
1152 | die "makeself version '${ver}' not supported" |
|
|
1153 | ;; |
|
|
1154 | esac |
|
|
1155 | debug-print "Detected Makeself version ${ver} ... using ${skip} as offset" |
|
|
1156 | fi |
|
|
1157 | case ${exe} in |
|
|
1158 | tail) exe="tail -n +${skip} '${src}'";; |
|
|
1159 | dd) exe="dd ibs=${skip} skip=1 obs=1024 conv=sync if='${src}'";; |
|
|
1160 | *) die "makeself cant handle exe '${exe}'" |
|
|
1161 | esac |
|
|
1162 | |
|
|
1163 | # lets grab the first few bytes of the file to figure out what kind of archive it is |
|
|
1164 | local tmpfile="$(emktemp)" |
|
|
1165 | eval ${exe} 2>/dev/null | head -c 512 > "${tmpfile}" |
|
|
1166 | local filetype="$(file -b "${tmpfile}")" |
|
|
1167 | case ${filetype} in |
|
|
1168 | *tar\ archive*) |
|
|
1169 | eval ${exe} | tar --no-same-owner -xf - |
|
|
1170 | ;; |
|
|
1171 | bzip2*) |
|
|
1172 | eval ${exe} | bzip2 -dc | tar --no-same-owner -xf - |
|
|
1173 | ;; |
|
|
1174 | gzip*) |
|
|
1175 | eval ${exe} | tar --no-same-owner -xzf - |
|
|
1176 | ;; |
|
|
1177 | compress*) |
|
|
1178 | eval ${exe} | gunzip | tar --no-same-owner -xf - |
|
|
1179 | ;; |
|
|
1180 | *) |
|
|
1181 | eerror "Unknown filetype \"${filetype}\" ?" |
|
|
1182 | false |
|
|
1183 | ;; |
|
|
1184 | esac |
|
|
1185 | assert "failure unpacking (${filetype}) makeself ${shrtsrc} ('${ver}' +${skip})" |
|
|
1186 | } |
|
|
1187 | |
|
|
1188 | # Display a license for user to accept. |
|
|
1189 | # |
|
|
1190 | # Usage: check_license [license] |
|
|
1191 | # - If the file is not specified then ${LICENSE} is used. |
|
|
1192 | check_license() { |
|
|
1193 | local lic=$1 |
|
|
1194 | if [ -z "${lic}" ] ; then |
|
|
1195 | lic="${PORTDIR}/licenses/${LICENSE}" |
|
|
1196 | else |
|
|
1197 | if [ -e "${PORTDIR}/licenses/${lic}" ] ; then |
|
|
1198 | lic="${PORTDIR}/licenses/${lic}" |
|
|
1199 | elif [ -e "${PWD}/${lic}" ] ; then |
|
|
1200 | lic="${PWD}/${lic}" |
|
|
1201 | elif [ -e "${lic}" ] ; then |
|
|
1202 | lic="${lic}" |
|
|
1203 | fi |
|
|
1204 | fi |
|
|
1205 | [ ! -f "${lic}" ] && die "Could not find requested license ${lic}" |
|
|
1206 | local l="`basename ${lic}`" |
|
|
1207 | |
|
|
1208 | # here is where we check for the licenses the user already |
|
|
1209 | # accepted ... if we don't find a match, we make the user accept |
|
|
1210 | local shopts=$- |
|
|
1211 | local alic |
|
|
1212 | set -o noglob #so that bash doesn't expand "*" |
|
|
1213 | for alic in ${ACCEPT_LICENSE} ; do |
|
|
1214 | if [[ ${alic} == ${l} ]]; then |
|
|
1215 | set +o noglob; set -${shopts} #reset old shell opts |
|
|
1216 | return 0 |
|
|
1217 | fi |
|
|
1218 | done |
|
|
1219 | set +o noglob; set -$shopts #reset old shell opts |
|
|
1220 | |
|
|
1221 | local licmsg="$(emktemp)" |
|
|
1222 | cat << EOF > ${licmsg} |
|
|
1223 | ********************************************************** |
|
|
1224 | The following license outlines the terms of use of this |
|
|
1225 | package. You MUST accept this license for installation to |
|
|
1226 | continue. When you are done viewing, hit 'q'. If you |
|
|
1227 | CTRL+C out of this, the install will not run! |
|
|
1228 | ********************************************************** |
|
|
1229 | |
|
|
1230 | EOF |
|
|
1231 | cat ${lic} >> ${licmsg} |
|
|
1232 | ${PAGER:-less} ${licmsg} || die "Could not execute pager (${PAGER}) to accept ${lic}" |
|
|
1233 | einfon "Do you accept the terms of this license (${l})? [yes/no] " |
|
|
1234 | read alic |
|
|
1235 | case ${alic} in |
|
|
1236 | yes|Yes|y|Y) |
|
|
1237 | return 0 |
|
|
1238 | ;; |
|
|
1239 | *) |
|
|
1240 | echo;echo;echo |
|
|
1241 | eerror "You MUST accept the license to continue! Exiting!" |
|
|
1242 | die "Failed to accept license" |
|
|
1243 | ;; |
|
|
1244 | esac |
|
|
1245 | } |
|
|
1246 | |
|
|
1247 | # Aquire cd(s) for those lovely cd-based emerges. Yes, this violates |
|
|
1248 | # the whole 'non-interactive' policy, but damnit I want CD support ! |
|
|
1249 | # |
|
|
1250 | # with these cdrom functions we handle all the user interaction and |
|
|
1251 | # standardize everything. all you have to do is call cdrom_get_cds() |
|
|
1252 | # and when the function returns, you can assume that the cd has been |
|
|
1253 | # found at CDROM_ROOT. |
|
|
1254 | # |
|
|
1255 | # normally the cdrom functions will refer to the cds as 'cd #1', 'cd #2', |
|
|
1256 | # etc... if you want to give the cds better names, then just export |
|
|
1257 | # the appropriate CDROM_NAME variable before calling cdrom_get_cds(). |
|
|
1258 | # - CDROM_NAME="fooie cd" - for when you only want 1 cd |
|
|
1259 | # - CDROM_NAME_1="install cd" - for when you want more than 1 cd |
|
|
1260 | # CDROM_NAME_2="data cd" |
|
|
1261 | # - CDROM_NAME_SET=( "install cd" "data cd" ) - short hand for CDROM_NAME_# |
|
|
1262 | # |
|
|
1263 | # for those multi cd ebuilds, see the cdrom_load_next_cd() below. |
|
|
1264 | # |
|
|
1265 | # Usage: cdrom_get_cds <file on cd1> [file on cd2] [file on cd3] [...] |
|
|
1266 | # - this will attempt to locate a cd based upon a file that is on |
|
|
1267 | # the cd ... the more files you give this function, the more cds |
|
|
1268 | # the cdrom functions will handle |
|
|
1269 | cdrom_get_cds() { |
|
|
1270 | # first we figure out how many cds we're dealing with by |
|
|
1271 | # the # of files they gave us |
|
|
1272 | local cdcnt=0 |
|
|
1273 | local f= |
|
|
1274 | for f in "$@" ; do |
|
|
1275 | ((++cdcnt)) |
|
|
1276 | export CDROM_CHECK_${cdcnt}="$f" |
|
|
1277 | done |
|
|
1278 | export CDROM_TOTAL_CDS=${cdcnt} |
|
|
1279 | export CDROM_CURRENT_CD=1 |
|
|
1280 | |
|
|
1281 | # now we see if the user gave use CD_ROOT ... |
|
|
1282 | # if they did, let's just believe them that it's correct |
|
|
1283 | if [[ -n ${CD_ROOT}${CD_ROOT_1} ]] ; then |
|
|
1284 | local var= |
|
|
1285 | cdcnt=0 |
|
|
1286 | while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
|
|
1287 | ((++cdcnt)) |
|
|
1288 | var="CD_ROOT_${cdcnt}" |
|
|
1289 | [[ -z ${!var} ]] && var="CD_ROOT" |
|
|
1290 | if [[ -z ${!var} ]] ; then |
|
|
1291 | eerror "You must either use just the CD_ROOT" |
|
|
1292 | eerror "or specify ALL the CD_ROOT_X variables." |
|
|
1293 | eerror "In this case, you will need ${CDROM_TOTAL_CDS} CD_ROOT_X variables." |
|
|
1294 | die "could not locate CD_ROOT_${cdcnt}" |
|
|
1295 | fi |
|
|
1296 | done |
|
|
1297 | export CDROM_ROOT=${CD_ROOT_1:-${CD_ROOT}} |
|
|
1298 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
|
|
1299 | export CDROM_SET=-1 |
|
|
1300 | for f in ${CDROM_CHECK_1//:/ } ; do |
|
|
1301 | ((++CDROM_SET)) |
|
|
1302 | [[ -e ${CD_ROOT}/${f} ]] && break |
|
|
1303 | done |
|
|
1304 | export CDROM_MATCH=${f} |
|
|
1305 | return |
|
|
1306 | fi |
|
|
1307 | |
|
|
1308 | # User didn't help us out so lets make sure they know they can |
|
|
1309 | # simplify the whole process ... |
|
|
1310 | if [[ ${CDROM_TOTAL_CDS} -eq 1 ]] ; then |
|
|
1311 | einfo "This ebuild will need the ${CDROM_NAME:-cdrom for ${PN}}" |
|
|
1312 | echo |
|
|
1313 | einfo "If you do not have the CD, but have the data files" |
|
|
1314 | einfo "mounted somewhere on your filesystem, just export" |
|
|
1315 | einfo "the variable CD_ROOT so that it points to the" |
|
|
1316 | einfo "directory containing the files." |
|
|
1317 | echo |
|
|
1318 | einfo "For example:" |
|
|
1319 | einfo "export CD_ROOT=/mnt/cdrom" |
|
|
1320 | echo |
|
|
1321 | else |
|
|
1322 | if [[ -n ${CDROM_NAME_SET} ]] ; then |
|
|
1323 | # Translate the CDROM_NAME_SET array into CDROM_NAME_# |
|
|
1324 | cdcnt=0 |
|
|
1325 | while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
|
|
1326 | ((++cdcnt)) |
|
|
1327 | export CDROM_NAME_${cdcnt}="${CDROM_NAME_SET[$((${cdcnt}-1))]}" |
|
|
1328 | done |
|
|
1329 | fi |
|
|
1330 | |
|
|
1331 | einfo "This package will need access to ${CDROM_TOTAL_CDS} cds." |
|
|
1332 | cdcnt=0 |
|
|
1333 | while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
|
|
1334 | ((++cdcnt)) |
|
|
1335 | var="CDROM_NAME_${cdcnt}" |
|
|
1336 | [[ ! -z ${!var} ]] && einfo " CD ${cdcnt}: ${!var}" |
|
|
1337 | done |
|
|
1338 | echo |
|
|
1339 | einfo "If you do not have the CDs, but have the data files" |
|
|
1340 | einfo "mounted somewhere on your filesystem, just export" |
|
|
1341 | einfo "the following variables so they point to the right place:" |
|
|
1342 | einfon "" |
|
|
1343 | cdcnt=0 |
|
|
1344 | while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
|
|
1345 | ((++cdcnt)) |
|
|
1346 | echo -n " CD_ROOT_${cdcnt}" |
|
|
1347 | done |
|
|
1348 | echo |
|
|
1349 | einfo "Or, if you have all the files in the same place, or" |
|
|
1350 | einfo "you only have one cdrom, you can export CD_ROOT" |
|
|
1351 | einfo "and that place will be used as the same data source" |
|
|
1352 | einfo "for all the CDs." |
|
|
1353 | echo |
|
|
1354 | einfo "For example:" |
|
|
1355 | einfo "export CD_ROOT_1=/mnt/cdrom" |
|
|
1356 | echo |
|
|
1357 | fi |
|
|
1358 | |
|
|
1359 | export CDROM_SET="" |
|
|
1360 | export CDROM_CURRENT_CD=0 |
|
|
1361 | cdrom_load_next_cd |
|
|
1362 | } |
|
|
1363 | |
|
|
1364 | # this is only used when you need access to more than one cd. |
|
|
1365 | # when you have finished using the first cd, just call this function. |
|
|
1366 | # when it returns, CDROM_ROOT will be pointing to the second cd. |
|
|
1367 | # remember, you can only go forward in the cd chain, you can't go back. |
|
|
1368 | cdrom_load_next_cd() { |
|
|
1369 | local var |
|
|
1370 | ((++CDROM_CURRENT_CD)) |
|
|
1371 | |
|
|
1372 | unset CDROM_ROOT |
|
|
1373 | var=CD_ROOT_${CDROM_CURRENT_CD} |
|
|
1374 | [[ -z ${!var} ]] && var="CD_ROOT" |
|
|
1375 | if [[ -z ${!var} ]] ; then |
|
|
1376 | var="CDROM_CHECK_${CDROM_CURRENT_CD}" |
|
|
1377 | _cdrom_locate_file_on_cd ${!var} |
|
|
1378 | else |
|
|
1379 | export CDROM_ROOT=${!var} |
|
|
1380 | fi |
|
|
1381 | |
|
|
1382 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
|
|
1383 | } |
|
|
1384 | |
|
|
1385 | # this is used internally by the cdrom_get_cds() and cdrom_load_next_cd() |
|
|
1386 | # functions. this should *never* be called from an ebuild. |
|
|
1387 | # all it does is try to locate a give file on a cd ... if the cd isn't |
|
|
1388 | # found, then a message asking for the user to insert the cdrom will be |
|
|
1389 | # displayed and we'll hang out here until: |
|
|
1390 | # (1) the file is found on a mounted cdrom |
|
|
1391 | # (2) the user hits CTRL+C |
|
|
1392 | _cdrom_locate_file_on_cd() { |
|
|
1393 | local mline="" |
|
|
1394 | local showedmsg=0 |
|
|
1395 | |
|
|
1396 | while [[ -z ${CDROM_ROOT} ]] ; do |
|
|
1397 | local i=0 |
|
|
1398 | local -a cdset=(${*//:/ }) |
|
|
1399 | if [[ -n ${CDROM_SET} ]] ; then |
|
|
1400 | cdset=(${cdset[${CDROM_SET}]}) |
|
|
1401 | fi |
|
|
1402 | |
|
|
1403 | while [[ -n ${cdset[${i}]} ]] ; do |
|
|
1404 | local dir=$(dirname ${cdset[${i}]}) |
|
|
1405 | local file=$(basename ${cdset[${i}]}) |
|
|
1406 | |
|
|
1407 | for mline in $(mount | gawk '/(iso|cdrom|fs=cdfss)/ {print $3}') ; do |
|
|
1408 | [[ -d ${mline}/${dir} ]] || continue |
|
|
1409 | if [[ -n $(find ${mline}/${dir} -maxdepth 1 -iname ${file}) ]] ; then |
|
|
1410 | export CDROM_ROOT=${mline} |
|
|
1411 | export CDROM_SET=${i} |
|
|
1412 | export CDROM_MATCH=${cdset[${i}]} |
|
|
1413 | return |
|
|
1414 | fi |
|
|
1415 | done |
|
|
1416 | |
|
|
1417 | ((++i)) |
|
|
1418 | done |
|
|
1419 | |
|
|
1420 | echo |
|
|
1421 | if [[ ${showedmsg} -eq 0 ]] ; then |
|
|
1422 | if [[ ${CDROM_TOTAL_CDS} -eq 1 ]] ; then |
|
|
1423 | if [[ -z ${CDROM_NAME} ]] ; then |
|
|
1424 | einfo "Please insert+mount the cdrom for ${PN} now !" |
|
|
1425 | else |
|
|
1426 | einfo "Please insert+mount the ${CDROM_NAME} cdrom now !" |
|
|
1427 | fi |
|
|
1428 | else |
|
|
1429 | if [[ -z ${CDROM_NAME_1} ]] ; then |
|
|
1430 | einfo "Please insert+mount cd #${CDROM_CURRENT_CD} for ${PN} now !" |
|
|
1431 | else |
|
|
1432 | local var="CDROM_NAME_${CDROM_CURRENT_CD}" |
|
|
1433 | einfo "Please insert+mount the ${!var} cdrom now !" |
|
|
1434 | fi |
|
|
1435 | fi |
|
|
1436 | showedmsg=1 |
|
|
1437 | fi |
|
|
1438 | einfo "Press return to scan for the cd again" |
|
|
1439 | einfo "or hit CTRL+C to abort the emerge." |
|
|
1440 | echo |
|
|
1441 | einfo "If you are having trouble with the detection" |
|
|
1442 | einfo "of your CD, it is possible that you do not have" |
|
|
1443 | einfo "Joliet support enabled in your kernel. Please" |
|
|
1444 | einfo "check that CONFIG_JOLIET is enabled in your kernel." |
|
|
1445 | read || die "something is screwed with your system" |
|
|
1446 | done |
|
|
1447 | } |
|
|
1448 | |
|
|
1449 | # Make sure that LINGUAS only contains languages that |
|
|
1450 | # a package can support |
|
|
1451 | # |
|
|
1452 | # usage: strip-linguas <allow LINGUAS> |
|
|
1453 | # strip-linguas -i <directories of .po files> |
|
|
1454 | # strip-linguas -u <directories of .po files> |
|
|
1455 | # |
|
|
1456 | # The first form allows you to specify a list of LINGUAS. |
|
|
1457 | # The -i builds a list of po files found in all the |
|
|
1458 | # directories and uses the intersection of the lists. |
|
|
1459 | # The -u builds a list of po files found in all the |
|
|
1460 | # directories and uses the union of the lists. |
|
|
1461 | strip-linguas() { |
|
|
1462 | local ls newls nols |
|
|
1463 | if [[ $1 == "-i" ]] || [[ $1 == "-u" ]] ; then |
|
|
1464 | local op=$1; shift |
|
|
1465 | ls=$(find "$1" -name '*.po' -exec basename {} .po \;); shift |
|
|
1466 | local d f |
|
|
1467 | for d in "$@" ; do |
|
|
1468 | if [[ ${op} == "-u" ]] ; then |
|
|
1469 | newls=${ls} |
|
|
1470 | else |
|
|
1471 | newls="" |
|
|
1472 | fi |
|
|
1473 | for f in $(find "$d" -name '*.po' -exec basename {} .po \;) ; do |
|
|
1474 | if [[ ${op} == "-i" ]] ; then |
|
|
1475 | hasq ${f} ${ls} && newls="${newls} ${f}" |
|
|
1476 | else |
|
|
1477 | hasq ${f} ${ls} || newls="${newls} ${f}" |
|
|
1478 | fi |
|
|
1479 | done |
|
|
1480 | ls=${newls} |
|
|
1481 | done |
|
|
1482 | else |
|
|
1483 | ls="$@" |
|
|
1484 | fi |
|
|
1485 | |
|
|
1486 | nols="" |
|
|
1487 | newls="" |
|
|
1488 | for f in ${LINGUAS} ; do |
|
|
1489 | if hasq ${f} ${ls} ; then |
|
|
1490 | newls="${newls} ${f}" |
|
|
1491 | else |
|
|
1492 | nols="${nols} ${f}" |
|
|
1493 | fi |
|
|
1494 | done |
|
|
1495 | [[ -n ${nols} ]] \ |
|
|
1496 | && ewarn "Sorry, but ${PN} does not support the LINGUAs:" ${nols} |
|
|
1497 | export LINGUAS=${newls:1} |
|
|
1498 | } |
|
|
1499 | |
|
|
1500 | # moved from kernel.eclass since they are generally useful outside of |
|
|
1501 | # kernel.eclass -iggy (20041002) |
|
|
1502 | |
|
|
1503 | # the following functions are useful in kernel module ebuilds, etc. |
|
|
1504 | # for an example see ivtv or drbd ebuilds |
|
|
1505 | |
|
|
1506 | # set's ARCH to match what the kernel expects |
|
|
1507 | set_arch_to_kernel() { |
|
|
1508 | i=10 |
|
|
1509 | while ((i--)) ; do |
|
|
1510 | ewarn "PLEASE UPDATE TO YOUR PACKAGE TO USE linux-info.eclass" |
|
|
1511 | done |
|
|
1512 | export EUTILS_ECLASS_PORTAGE_ARCH="${ARCH}" |
|
|
1513 | case ${ARCH} in |
|
|
1514 | x86) export ARCH="i386";; |
|
|
1515 | amd64) export ARCH="x86_64";; |
|
|
1516 | hppa) export ARCH="parisc";; |
|
|
1517 | mips) export ARCH="mips";; |
|
|
1518 | sparc) export ARCH="$(tc-arch-kernel)";; # Yeah this is ugly, but it's even WORSE if you don't do this. linux-info.eclass's set_arch_to_kernel is fixed, but won't get used over this one! |
|
|
1519 | *) export ARCH="${ARCH}";; |
|
|
1520 | esac |
|
|
1521 | } |
|
|
1522 | |
|
|
1523 | # set's ARCH back to what portage expects |
|
|
1524 | set_arch_to_portage() { |
|
|
1525 | i=10 |
|
|
1526 | while ((i--)) ; do |
|
|
1527 | ewarn "PLEASE UPDATE TO YOUR PACKAGE TO USE linux-info.eclass" |
|
|
1528 | done |
|
|
1529 | export ARCH="${EUTILS_ECLASS_PORTAGE_ARCH}" |
|
|
1530 | } |
|
|
1531 | |
|
|
1532 | # Jeremy Huddleston <eradicator@gentoo.org>: |
|
|
1533 | # preserve_old_lib /path/to/libblah.so.0 |
|
|
1534 | # preserve_old_lib_notify /path/to/libblah.so.0 |
|
|
1535 | # |
|
|
1536 | # These functions are useful when a lib in your package changes --library. Such |
|
|
1537 | # an example might be from libogg.so.0 to libogg.so.1. Removing libogg.so.0 |
|
|
1538 | # would break packages that link against it. Most people get around this |
|
|
1539 | # by using the portage SLOT mechanism, but that is not always a relevant |
|
|
1540 | # solution, so instead you can add the following to your ebuilds: |
|
|
1541 | # |
|
|
1542 | # src_install() { |
|
|
1543 | # ... |
|
|
1544 | # preserve_old_lib /usr/$(get_libdir)/libogg.so.0 |
|
|
1545 | # ... |
|
|
1546 | # } |
|
|
1547 | # |
|
|
1548 | # pkg_postinst() { |
|
|
1549 | # ... |
|
|
1550 | # preserve_old_lib_notify /usr/$(get_libdir)/libogg.so.0 |
|
|
1551 | # ... |
|
|
1552 | # } |
|
|
1553 | |
|
|
1554 | preserve_old_lib() { |
|
|
1555 | LIB=$1 |
|
|
1556 | |
|
|
1557 | if [ -n "${LIB}" -a -f "${ROOT}${LIB}" ]; then |
|
|
1558 | SONAME=`basename ${LIB}` |
|
|
1559 | DIRNAME=`dirname ${LIB}` |
|
|
1560 | |
|
|
1561 | dodir ${DIRNAME} |
|
|
1562 | cp ${ROOT}${LIB} ${D}${DIRNAME} |
|
|
1563 | touch ${D}${LIB} |
|
|
1564 | fi |
|
|
1565 | } |
|
|
1566 | |
|
|
1567 | preserve_old_lib_notify() { |
|
|
1568 | LIB=$1 |
|
|
1569 | |
|
|
1570 | if [ -n "${LIB}" -a -f "${ROOT}${LIB}" ]; then |
|
|
1571 | SONAME=`basename ${LIB}` |
|
|
1572 | |
|
|
1573 | ewarn "An old version of an installed library was detected on your system." |
|
|
1574 | ewarn "In order to avoid breaking packages that link against it, this older version" |
|
|
1575 | ewarn "is not being removed. In order to make full use of this newer version," |
|
|
1576 | ewarn "you will need to execute the following command:" |
|
|
1577 | ewarn " revdep-rebuild --library ${SONAME}" |
|
|
1578 | ewarn |
|
|
1579 | ewarn "After doing that, you can safely remove ${LIB}" |
|
|
1580 | ewarn "Note: 'emerge gentoolkit' to get revdep-rebuild" |
|
|
1581 | fi |
|
|
1582 | } |
|
|
1583 | |
|
|
1584 | # Hack for people to figure out if a package was built with |
|
|
1585 | # certain USE flags |
|
|
1586 | # |
|
|
1587 | # Usage: built_with_use [-a|-o] <DEPEND ATOM> <List of USE flags> |
|
|
1588 | # ex: built_with_use xchat gtk2 |
|
|
1589 | # |
|
|
1590 | # Flags: -a all USE flags should be utilized |
|
|
1591 | # -o at least one USE flag should be utilized |
|
|
1592 | # Note: the default flag is '-a' |
|
|
1593 | built_with_use() { |
|
|
1594 | local opt=$1 |
|
|
1595 | [[ ${opt:0:1} = "-" ]] && shift || opt="-a" |
|
|
1596 | |
|
|
1597 | local PKG=$(best_version $1) |
|
|
1598 | [[ -z ${PKG} ]] && die "Unable to resolve $1 to an installed package" |
|
|
1599 | shift |
|
|
1600 | |
|
|
1601 | local USEFILE=${ROOT}/var/db/pkg/${PKG}/USE |
|
|
1602 | local IUSEFILE=${ROOT}/var/db/pkg/${PKG}/IUSE |
|
|
1603 | |
|
|
1604 | # if the USE file doesnt exist, assume the $PKG is either |
|
|
1605 | # injected or package.provided |
|
|
1606 | [[ ! -e ${USEFILE} ]] && die "Unable to determine what USE flags $PKG was built with" |
|
|
1607 | |
|
|
1608 | local IUSE_BUILT=$(<${IUSEFILE}) |
|
|
1609 | # Don't check USE_EXPAND #147237 |
|
|
1610 | local expand |
|
|
1611 | for expand in $(echo ${USE_EXPAND} | tr '[:upper:]' '[:lower:]') ; do |
|
|
1612 | if [[ $1 == ${expand}_* ]] ; then |
|
|
1613 | expand="" |
|
|
1614 | break |
|
|
1615 | fi |
|
|
1616 | done |
|
|
1617 | if [[ -n ${expand} ]] ; then |
|
|
1618 | has $1 ${IUSE_BUILT} || die "$PKG does not actually support the $1 USE flag!" |
|
|
1619 | fi |
|
|
1620 | |
|
|
1621 | local USE_BUILT=$(<${USEFILE}) |
|
|
1622 | while [[ $# -gt 0 ]] ; do |
|
|
1623 | if [[ ${opt} = "-o" ]] ; then |
|
|
1624 | has $1 ${USE_BUILT} && return 0 |
|
|
1625 | else |
|
|
1626 | has $1 ${USE_BUILT} || return 1 |
|
|
1627 | fi |
|
|
1628 | shift |
|
|
1629 | done |
|
|
1630 | [[ ${opt} = "-a" ]] |
|
|
1631 | } |
|
|
1632 | |
|
|
1633 | # Many configure scripts wrongly bail when a C++ compiler |
|
|
1634 | # could not be detected. #73450 |
|
|
1635 | epunt_cxx() { |
|
|
1636 | local dir=$1 |
|
|
1637 | [[ -z ${dir} ]] && dir=${S} |
|
|
1638 | ebegin "Removing useless C++ checks" |
|
|
1639 | local f |
|
|
1640 | for f in $(find ${dir} -name configure) ; do |
|
|
1641 | patch -p0 "${f}" "${PORTDIR}/eclass/ELT-patches/nocxx/nocxx.patch" > /dev/null |
|
|
1642 | done |
|
|
1643 | eend 0 |
|
|
1644 | } |
|
|
1645 | |
|
|
1646 | # dopamd <file> [more files] |
|
|
1647 | # |
|
|
1648 | # Install pam auth config file in /etc/pam.d |
|
|
1649 | dopamd() { |
|
|
1650 | [[ -z $1 ]] && die "dopamd requires at least one argument" |
|
|
1651 | |
|
|
1652 | use pam || return 0 |
|
|
1653 | |
|
|
1654 | INSDESTTREE=/etc/pam.d \ |
|
|
1655 | doins "$@" || die "failed to install $@" |
|
|
1656 | } |
|
|
1657 | # newpamd <old name> <new name> |
|
|
1658 | # |
|
|
1659 | # Install pam file <old name> as <new name> in /etc/pam.d |
|
|
1660 | newpamd() { |
|
|
1661 | [[ $# -ne 2 ]] && die "newpamd requires two arguements" |
|
|
1662 | |
|
|
1663 | use pam || return 0 |
|
|
1664 | |
|
|
1665 | INSDESTTREE=/etc/pam.d \ |
|
|
1666 | newins "$1" "$2" || die "failed to install $1 as $2" |
|
|
1667 | } |
|
|
1668 | |
|
|
1669 | # make a wrapper script ... |
|
|
1670 | # NOTE: this was originally games_make_wrapper, but I noticed other places where |
|
|
1671 | # this could be used, so I have moved it here and made it not games-specific |
|
|
1672 | # -- wolf31o2 |
|
|
1673 | # $1 == wrapper name |
|
|
1674 | # $2 == binary to run |
|
|
1675 | # $3 == directory to chdir before running binary |
|
|
1676 | # $4 == extra LD_LIBRARY_PATH's (make it : delimited) |
|
|
1677 | # $5 == path for wrapper |
|
|
1678 | make_wrapper() { |
|
|
1679 | local wrapper=$1 bin=$2 chdir=$3 libdir=$4 path=$5 |
|
|
1680 | local tmpwrapper=$(emktemp) |
|
|
1681 | # We don't want to quote ${bin} so that people can pass complex |
|
|
1682 | # things as $bin ... "./someprog --args" |
|
|
1683 | cat << EOF > "${tmpwrapper}" |
|
|
1684 | #!/bin/sh |
|
|
1685 | cd "${chdir:-.}" |
|
|
1686 | if [ -n "${libdir}" ] ; then |
|
|
1687 | if [ "\${LD_LIBRARY_PATH+set}" = "set" ] ; then |
|
|
1688 | export LD_LIBRARY_PATH="\${LD_LIBRARY_PATH}:${libdir}" |
|
|
1689 | else |
|
|
1690 | export LD_LIBRARY_PATH="${libdir}" |
|
|
1691 | fi |
|
|
1692 | fi |
|
|
1693 | exec ${bin} "\$@" |
|
|
1694 | EOF |
|
|
1695 | chmod go+rx "${tmpwrapper}" |
|
|
1696 | if [[ -n ${path} ]] ; then |
|
|
1697 | exeinto "${path}" |
|
|
1698 | newexe "${tmpwrapper}" "${wrapper}" |
|
|
1699 | else |
|
|
1700 | newbin "${tmpwrapper}" "${wrapper}" |
|
|
1701 | fi |
|
|
1702 | } |