1 | # Copyright 1999-2003 Gentoo Technologies, Inc. |
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/eutils.eclass,v 1.45 2003/07/18 20:43:00 wolf31o2 Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.322 2009/12/11 20:31:34 vapier Exp $ |
4 | # |
|
|
5 | # Author: Martin Schlemmer <azarah@gentoo.org> |
|
|
6 | # |
|
|
7 | # This eclass is for general purpose functions that most ebuilds |
|
|
8 | # have to implement themselves. |
|
|
9 | # |
|
|
10 | # NB: If you add anything, please comment it! |
|
|
11 | |
4 | |
12 | ECLASS=eutils |
5 | # @ECLASS: eutils.eclass |
13 | INHERITED="$INHERITED $ECLASS" |
6 | # @MAINTAINER: |
|
|
7 | # base-system@gentoo.org |
|
|
8 | # @BLURB: many extra (but common) functions that are used in ebuilds |
|
|
9 | # @DESCRIPTION: |
|
|
10 | # The eutils eclass contains a suite of functions that complement |
|
|
11 | # the ones that ebuild.sh already contain. The idea is that the functions |
|
|
12 | # are not required in all ebuilds but enough utilize them to have a common |
|
|
13 | # home rather than having multiple ebuilds implementing the same thing. |
|
|
14 | # |
|
|
15 | # Due to the nature of this eclass, some functions may have maintainers |
|
|
16 | # different from the overall eclass! |
14 | |
17 | |
15 | DEPEND="$DEPEND !bootstrap? ( sys-devel/patch )" |
18 | inherit multilib portability |
16 | |
19 | |
17 | DESCRIPTION="Based on the ${ECLASS} eclass" |
20 | DESCRIPTION="Based on the ${ECLASS} eclass" |
18 | |
21 | |
19 | # This function generate linker scripts in /usr/lib for dynamic |
22 | # @FUNCTION: epause |
20 | # libs in /lib. This is to fix linking problems when you have |
23 | # @USAGE: [seconds] |
21 | # the .so in /lib, and the .a in /usr/lib. What happens is that |
24 | # @DESCRIPTION: |
22 | # in some cases when linking dynamic, the .a in /usr/lib is used |
25 | # Sleep for the specified number of seconds (default of 5 seconds). Useful when |
23 | # instead of the .so in /lib due to gcc/libtool tweaking ld's |
26 | # printing a message the user should probably be reading and often used in |
24 | # library search path. This cause many builds to fail. |
27 | # conjunction with the ebeep function. If the EPAUSE_IGNORE env var is set, |
25 | # See bug #4411 for more info. |
28 | # don't wait at all. |
26 | # |
29 | epause() { |
27 | # To use, simply call: |
30 | [[ -z ${EPAUSE_IGNORE} ]] && sleep ${1:-5} |
28 | # |
|
|
29 | # gen_usr_ldscript libfoo.so |
|
|
30 | # |
|
|
31 | # Note that you should in general use the unversioned name of |
|
|
32 | # the library, as ldconfig should usually update it correctly |
|
|
33 | # to point to the latest version of the library present. |
|
|
34 | # |
|
|
35 | # <azarah@gentoo.org> (26 Oct 2002) |
|
|
36 | # |
|
|
37 | gen_usr_ldscript() { |
|
|
38 | |
|
|
39 | # Just make sure it exists |
|
|
40 | dodir /usr/lib |
|
|
41 | |
|
|
42 | cat > ${D}/usr/lib/$1 <<"END_LDSCRIPT" |
|
|
43 | /* GNU ld script |
|
|
44 | Because Gentoo have critical dynamic libraries |
|
|
45 | in /lib, and the static versions in /usr/lib, we |
|
|
46 | need to have a "fake" dynamic lib in /usr/lib, |
|
|
47 | otherwise we run into linking problems. |
|
|
48 | See bug #4411 on http://bugs.gentoo.org/ for |
|
|
49 | more info. */ |
|
|
50 | GROUP ( /lib/libxxx ) |
|
|
51 | END_LDSCRIPT |
|
|
52 | |
|
|
53 | dosed "s:libxxx:$1:" /usr/lib/$1 |
|
|
54 | |
|
|
55 | return 0 |
|
|
56 | } |
31 | } |
57 | |
32 | |
58 | # Simple function to draw a line consisting of '=' the same length as $* |
33 | # @FUNCTION: ebeep |
59 | # |
34 | # @USAGE: [number of beeps] |
60 | # <azarah@gentoo.org> (11 Nov 2002) |
35 | # @DESCRIPTION: |
61 | # |
36 | # Issue the specified number of beeps (default of 5 beeps). Useful when |
62 | draw_line() { |
37 | # printing a message the user should probably be reading and often used in |
|
|
38 | # conjunction with the epause function. If the EBEEP_IGNORE env var is set, |
|
|
39 | # don't beep at all. |
|
|
40 | ebeep() { |
63 | local i=0 |
41 | local n |
64 | local str_length="" |
42 | if [[ -z ${EBEEP_IGNORE} ]] ; then |
65 | |
43 | for ((n=1 ; n <= ${1:-5} ; n++)) ; do |
66 | # Handle calls that do not have args, or wc not being installed ... |
|
|
67 | if [ -z "$1" -o ! -x "$(which wc 2>/dev/null)" ] |
|
|
68 | then |
|
|
69 | echo "===============================================================" |
|
|
70 | return 0 |
|
|
71 | fi |
|
|
72 | |
|
|
73 | # Get the length of $* |
|
|
74 | str_length="$(echo -n "$*" | wc -m)" |
|
|
75 | |
|
|
76 | while [ "$i" -lt "${str_length}" ] |
|
|
77 | do |
|
|
78 | echo -n "=" |
44 | echo -ne "\a" |
79 | |
45 | sleep 0.1 &>/dev/null ; sleep 0,1 &>/dev/null |
80 | i=$((i + 1)) |
46 | echo -ne "\a" |
|
|
47 | sleep 1 |
81 | done |
48 | done |
|
|
49 | fi |
|
|
50 | } |
82 | |
51 | |
83 | echo |
52 | # @FUNCTION: ecvs_clean |
|
|
53 | # @USAGE: [list of dirs] |
|
|
54 | # @DESCRIPTION: |
|
|
55 | # Remove CVS directories recursiveley. Useful when a source tarball contains |
|
|
56 | # internal CVS directories. Defaults to $PWD. |
|
|
57 | ecvs_clean() { |
|
|
58 | [[ -z $* ]] && set -- . |
|
|
59 | find "$@" -type d -name 'CVS' -prune -print0 | xargs -0 rm -rf |
|
|
60 | find "$@" -type f -name '.cvs*' -print0 | xargs -0 rm -rf |
|
|
61 | } |
84 | |
62 | |
|
|
63 | # @FUNCTION: esvn_clean |
|
|
64 | # @USAGE: [list of dirs] |
|
|
65 | # @DESCRIPTION: |
|
|
66 | # Remove .svn directories recursiveley. Useful when a source tarball contains |
|
|
67 | # internal Subversion directories. Defaults to $PWD. |
|
|
68 | esvn_clean() { |
|
|
69 | [[ -z $* ]] && set -- . |
|
|
70 | find "$@" -type d -name '.svn' -prune -print0 | xargs -0 rm -rf |
|
|
71 | } |
|
|
72 | |
|
|
73 | # @FUNCTION: eshopts_push |
|
|
74 | # @USAGE: [options to `set`] |
|
|
75 | # @DESCRIPTION: |
|
|
76 | # Often times code will want to enable a shell option to change code behavior. |
|
|
77 | # Since changing shell options can easily break other pieces of code (which |
|
|
78 | # assume the default state), eshopts_push is used to (1) push the current shell |
|
|
79 | # options onto a stack and (2) pass the specified arguments to set. |
|
|
80 | # |
|
|
81 | # A common example is to disable shell globbing so that special meaning/care |
|
|
82 | # may be used with variables/arguments to custom functions. That would be: |
|
|
83 | # @CODE |
|
|
84 | # eshopts_push -o noglob |
|
|
85 | # for x in ${foo} ; do |
|
|
86 | # if ...some check... ; then |
|
|
87 | # eshopts_pop |
85 | return 0 |
88 | # return 0 |
|
|
89 | # fi |
|
|
90 | # done |
|
|
91 | # eshopts_pop |
|
|
92 | # @CODE |
|
|
93 | eshopts_push() { |
|
|
94 | # have to assume __ESHOPTS_SAVE__ isn't screwed with |
|
|
95 | # as a `declare -a` here will reset its value |
|
|
96 | local i=${#__ESHOPTS_SAVE__[@]} |
|
|
97 | __ESHOPTS_SAVE__[$i]=$- |
|
|
98 | [[ $# -eq 0 ]] && return 0 |
|
|
99 | set "$@" || die "eshopts_push: bad options to set: $*" |
|
|
100 | } |
|
|
101 | |
|
|
102 | # @FUNCTION: eshopts_pop |
|
|
103 | # @USAGE: |
|
|
104 | # @DESCRIPTION: |
|
|
105 | # Restore the shell options to the state saved with the corresponding |
|
|
106 | # eshopts_push call. See that function for more details. |
|
|
107 | eshopts_pop() { |
|
|
108 | [[ $# -ne 0 ]] && die "eshopts_pop takes no arguments" |
|
|
109 | local i=$(( ${#__ESHOPTS_SAVE__[@]} - 1 )) |
|
|
110 | [[ ${i} -eq -1 ]] && die "eshopts_{push,pop}: unbalanced pair" |
|
|
111 | local s=${__ESHOPTS_SAVE__[$i]} |
|
|
112 | unset __ESHOPTS_SAVE__[$i] |
|
|
113 | set +$- || die "eshopts_pop: sanity: invalid shell settings: $-" |
|
|
114 | set -${s} || die "eshopts_pop: sanity: unable to restore saved shell settings: ${s}" |
86 | } |
115 | } |
87 | |
116 | |
88 | # Default directory where patches are located |
117 | # Default directory where patches are located |
89 | EPATCH_SOURCE="${WORKDIR}/patch" |
118 | EPATCH_SOURCE="${WORKDIR}/patch" |
90 | # Default extension for patches |
119 | # Default extension for patches |
91 | EPATCH_SUFFIX="patch.bz2" |
120 | EPATCH_SUFFIX="patch.bz2" |
92 | # Default options for patch |
121 | # Default options for patch |
93 | EPATCH_OPTS="" |
122 | # Set -g0 to keep RCS, ClearCase, Perforce and SCCS happy. Bug #24571 |
|
|
123 | # Set --no-backup-if-mismatch so we don't leave '.orig' files behind. |
|
|
124 | # Set -E to automatically remove empty files. |
|
|
125 | EPATCH_OPTS="-g0 -E --no-backup-if-mismatch" |
94 | # List of patches not to apply. Not this is only file names, |
126 | # List of patches not to apply. Note this is only file names, |
95 | # and not the full path .. |
127 | # and not the full path .. |
96 | EPATCH_EXCLUDE="" |
128 | EPATCH_EXCLUDE="" |
97 | # Change the printed message for a single patch. |
129 | # Change the printed message for a single patch. |
98 | EPATCH_SINGLE_MSG="" |
130 | EPATCH_SINGLE_MSG="" |
|
|
131 | # Change the printed message for multiple patches. |
|
|
132 | EPATCH_MULTI_MSG="Applying various patches (bugfixes/updates) ..." |
99 | # Force applying bulk patches even if not following the style: |
133 | # Force applying bulk patches even if not following the style: |
100 | # |
134 | # |
101 | # ??_${ARCH}_foo.${EPATCH_SUFFIX} |
135 | # ??_${ARCH}_foo.${EPATCH_SUFFIX} |
102 | # |
136 | # |
103 | EPATCH_FORCE="no" |
137 | EPATCH_FORCE="no" |
104 | |
138 | |
105 | # This function is for bulk patching, or in theory for just one |
139 | # This function is for bulk patching, or in theory for just one |
106 | # or two patches. |
140 | # or two patches. |
… | |
… | |
115 | # bug they should be left as is to ensure an ebuild can rely on |
149 | # bug they should be left as is to ensure an ebuild can rely on |
116 | # them for. |
150 | # them for. |
117 | # |
151 | # |
118 | # Patches are applied in current directory. |
152 | # Patches are applied in current directory. |
119 | # |
153 | # |
120 | # Bulk Patches should preferibly have the form of: |
154 | # Bulk Patches should preferably have the form of: |
121 | # |
155 | # |
122 | # ??_${ARCH}_foo.${EPATCH_SUFFIX} |
156 | # ??_${ARCH}_foo.${EPATCH_SUFFIX} |
123 | # |
157 | # |
124 | # For example: |
158 | # For example: |
125 | # |
159 | # |
126 | # 01_all_misc-fix.patch.bz2 |
160 | # 01_all_misc-fix.patch.bz2 |
127 | # 02_sparc_another-fix.patch.bz2 |
161 | # 02_sparc_another-fix.patch.bz2 |
128 | # |
162 | # |
129 | # This ensures that there are a set order, and you can have ARCH |
163 | # This ensures that there are a set order, and you can have ARCH |
130 | # specific patches. |
164 | # specific patches. |
131 | # |
165 | # |
132 | # If you however give an argument to epatch(), it will treat it as a |
166 | # If you however give an argument to epatch(), it will treat it as a |
… | |
… | |
134 | # hand its a directory, it will set EPATCH_SOURCE to this. |
168 | # hand its a directory, it will set EPATCH_SOURCE to this. |
135 | # |
169 | # |
136 | # <azarah@gentoo.org> (10 Nov 2002) |
170 | # <azarah@gentoo.org> (10 Nov 2002) |
137 | # |
171 | # |
138 | epatch() { |
172 | epatch() { |
|
|
173 | _epatch_draw_line() { |
|
|
174 | [[ -z $1 ]] && set "$(printf "%65s" '')" |
|
|
175 | echo "${1//?/=}" |
|
|
176 | } |
|
|
177 | _epatch_assert() { local _pipestatus=${PIPESTATUS[*]}; [[ ${_pipestatus// /} -eq 0 ]] ; } |
139 | local PIPE_CMD="" |
178 | local PIPE_CMD="" |
140 | local STDERR_TARGET="${T}/$$.out" |
179 | local STDERR_TARGET="${T}/$$.out" |
141 | local PATCH_TARGET="${T}/$$.patch" |
180 | local PATCH_TARGET="${T}/$$.patch" |
142 | local PATCH_SUFFIX="" |
181 | local PATCH_SUFFIX="" |
143 | local SINGLE_PATCH="no" |
182 | local SINGLE_PATCH="no" |
144 | local x="" |
183 | local x="" |
145 | |
184 | |
|
|
185 | unset P4CONFIG P4PORT P4USER # keep perforce at bay #56402 |
|
|
186 | |
146 | if [ "$#" -gt 1 ] |
187 | if [ "$#" -gt 1 ] |
147 | then |
188 | then |
148 | eerror "Invalid arguments to epatch()" |
189 | local m="" |
149 | die "Invalid arguments to epatch()" |
190 | for m in "$@" ; do |
|
|
191 | epatch "${m}" |
|
|
192 | done |
|
|
193 | return 0 |
150 | fi |
194 | fi |
151 | |
195 | |
152 | if [ -n "$1" -a -f "$1" ] |
196 | if [ -n "$1" -a -f "$1" ] |
153 | then |
197 | then |
154 | SINGLE_PATCH="yes" |
198 | SINGLE_PATCH="yes" |
… | |
… | |
164 | local EPATCH_SOURCE="$1/*" |
208 | local EPATCH_SOURCE="$1/*" |
165 | else |
209 | else |
166 | local EPATCH_SOURCE="$1/*.${EPATCH_SUFFIX}" |
210 | local EPATCH_SOURCE="$1/*.${EPATCH_SUFFIX}" |
167 | fi |
211 | fi |
168 | else |
212 | else |
169 | if [ ! -d ${EPATCH_SOURCE} ] |
213 | if [[ ! -d ${EPATCH_SOURCE} ]] || [[ -n $1 ]] ; then |
170 | then |
|
|
171 | if [ -n "$1" -a "${EPATCH_SOURCE}" = "${WORKDIR}/patch" ] |
214 | if [ -n "$1" -a "${EPATCH_SOURCE}" = "${WORKDIR}/patch" ] |
172 | then |
215 | then |
173 | EPATCH_SOURCE="$1" |
216 | EPATCH_SOURCE="$1" |
174 | fi |
217 | fi |
175 | |
218 | |
176 | echo |
219 | echo |
177 | eerror "Cannot find \$EPATCH_SOURCE! Value for \$EPATCH_SOURCE is:" |
220 | eerror "Cannot find \$EPATCH_SOURCE! Value for \$EPATCH_SOURCE is:" |
178 | eerror |
221 | eerror |
179 | eerror " ${EPATCH_SOURCE}" |
222 | eerror " ${EPATCH_SOURCE}" |
|
|
223 | eerror " ( ${EPATCH_SOURCE##*/} )" |
180 | echo |
224 | echo |
181 | die "Cannot find \$EPATCH_SOURCE!" |
225 | die "Cannot find \$EPATCH_SOURCE!" |
182 | fi |
226 | fi |
183 | |
227 | |
184 | local EPATCH_SOURCE="${EPATCH_SOURCE}/*.${EPATCH_SUFFIX}" |
228 | local EPATCH_SOURCE="${EPATCH_SOURCE}/*.${EPATCH_SUFFIX}" |
185 | fi |
229 | fi |
186 | |
230 | |
187 | case ${EPATCH_SUFFIX##*\.} in |
231 | case ${EPATCH_SUFFIX##*\.} in |
|
|
232 | xz) |
|
|
233 | PIPE_CMD="xz -dc" |
|
|
234 | PATCH_SUFFIX="xz" |
|
|
235 | ;; |
|
|
236 | lzma) |
|
|
237 | PIPE_CMD="lzma -dc" |
|
|
238 | PATCH_SUFFIX="lzma" |
|
|
239 | ;; |
188 | bz2) |
240 | bz2) |
189 | PIPE_CMD="bzip2 -dc" |
241 | PIPE_CMD="bzip2 -dc" |
190 | PATCH_SUFFIX="bz2" |
242 | PATCH_SUFFIX="bz2" |
191 | ;; |
243 | ;; |
192 | gz|Z|z) |
244 | gz|Z|z) |
… | |
… | |
203 | ;; |
255 | ;; |
204 | esac |
256 | esac |
205 | |
257 | |
206 | if [ "${SINGLE_PATCH}" = "no" ] |
258 | if [ "${SINGLE_PATCH}" = "no" ] |
207 | then |
259 | then |
208 | einfo "Applying various patches (bugfixes/updates)..." |
260 | einfo "${EPATCH_MULTI_MSG}" |
209 | fi |
261 | fi |
210 | for x in ${EPATCH_SOURCE} |
262 | for x in ${EPATCH_SOURCE} |
211 | do |
263 | do |
212 | # New ARCH dependant patch naming scheme... |
264 | # New ARCH dependant patch naming scheme ... |
213 | # |
265 | # |
214 | # ???_arch_foo.patch |
266 | # ???_arch_foo.patch |
215 | # |
267 | # |
216 | if [ -f ${x} ] && \ |
268 | if [ -f ${x} ] && \ |
217 | ([ "${SINGLE_PATCH}" = "yes" -o "${x/_all_}" != "${x}" -o "`eval echo \$\{x/_${ARCH}_\}`" != "${x}" ] || \ |
269 | ([ "${SINGLE_PATCH}" = "yes" -o "${x/_all_}" != "${x}" -o "${x/_${ARCH}_}" != "${x}" ] || \ |
218 | [ "${EPATCH_FORCE}" = "yes" ]) |
270 | [ "${EPATCH_FORCE}" = "yes" ]) |
219 | then |
271 | then |
220 | local count=0 |
272 | local count=0 |
221 | local popts="${EPATCH_OPTS}" |
273 | local popts="${EPATCH_OPTS}" |
|
|
274 | local patchname=${x##*/} |
222 | |
275 | |
223 | if [ -n "${EPATCH_EXCLUDE}" ] |
276 | if [ -n "${EPATCH_EXCLUDE}" ] |
224 | then |
277 | then |
225 | if [ "`eval echo \$\{EPATCH_EXCLUDE/${x##*/}\}`" != "${EPATCH_EXCLUDE}" ] |
278 | if [ "${EPATCH_EXCLUDE/${patchname}}" != "${EPATCH_EXCLUDE}" ] |
226 | then |
279 | then |
227 | continue |
280 | continue |
228 | fi |
281 | fi |
229 | fi |
282 | fi |
230 | |
283 | |
… | |
… | |
232 | then |
285 | then |
233 | if [ -n "${EPATCH_SINGLE_MSG}" ] |
286 | if [ -n "${EPATCH_SINGLE_MSG}" ] |
234 | then |
287 | then |
235 | einfo "${EPATCH_SINGLE_MSG}" |
288 | einfo "${EPATCH_SINGLE_MSG}" |
236 | else |
289 | else |
237 | einfo "Applying ${x##*/}..." |
290 | einfo "Applying ${patchname} ..." |
238 | fi |
291 | fi |
239 | else |
292 | else |
240 | einfo " ${x##*/}..." |
293 | einfo " ${patchname} ..." |
241 | fi |
294 | fi |
242 | |
295 | |
243 | echo "***** ${x##*/} *****" > ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
296 | echo "***** ${patchname} *****" > ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
244 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
297 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
|
|
298 | |
|
|
299 | # Decompress the patch if need be |
|
|
300 | if [[ ${PATCH_SUFFIX} != "patch" ]] ; then |
|
|
301 | echo -n "PIPE_COMMAND: " >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
|
|
302 | echo "${PIPE_CMD} ${x} > ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
|
|
303 | |
|
|
304 | if ! (${PIPE_CMD} ${x} > ${PATCH_TARGET}) >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} 2>&1 ; then |
|
|
305 | echo |
|
|
306 | eerror "Could not extract patch!" |
|
|
307 | #die "Could not extract patch!" |
|
|
308 | count=5 |
|
|
309 | break |
|
|
310 | fi |
|
|
311 | else |
|
|
312 | PATCH_TARGET="${x}" |
|
|
313 | fi |
|
|
314 | |
|
|
315 | # Check for absolute paths in patches. If sandbox is disabled, |
|
|
316 | # people could (accidently) patch files in the root filesystem. |
|
|
317 | # Or trigger other unpleasantries #237667. So disallow -p0 on |
|
|
318 | # such patches. |
|
|
319 | local abs_paths=$(egrep -n '^[-+]{3} /' "${PATCH_TARGET}" | awk '$2 != "/dev/null" { print }') |
|
|
320 | if [[ -n ${abs_paths} ]] ; then |
|
|
321 | count=1 |
|
|
322 | echo "NOTE: skipping -p0 due to absolute paths in patch:" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
|
|
323 | echo "${abs_paths}" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
|
|
324 | fi |
245 | |
325 | |
246 | # Allow for prefix to differ ... im lazy, so shoot me :/ |
326 | # Allow for prefix to differ ... im lazy, so shoot me :/ |
247 | while [ "${count}" -lt 5 ] |
327 | while [ "${count}" -lt 5 ] |
248 | do |
328 | do |
249 | # Generate some useful debug info ... |
329 | # Generate some useful debug info ... |
250 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
330 | _epatch_draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
251 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
331 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
252 | |
332 | |
253 | if [ "${PATCH_SUFFIX}" != "patch" ] |
333 | echo -n "PATCH COMMAND: " >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
|
|
334 | echo "patch -p${count} ${popts} < ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
|
|
335 | |
|
|
336 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
|
|
337 | _epatch_draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
|
|
338 | |
|
|
339 | if (cat ${PATCH_TARGET} | patch -p${count} ${popts} --dry-run -f ; _epatch_assert) >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} 2>&1 |
254 | then |
340 | then |
255 | echo -n "PIPE_COMMAND: " >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
|
|
256 | echo "${PIPE_CMD} ${x} > ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
|
|
257 | else |
|
|
258 | PATCH_TARGET="${x}" |
|
|
259 | fi |
|
|
260 | |
|
|
261 | echo -n "PATCH COMMAND: " >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
|
|
262 | echo "patch ${popts} -p${count} < ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
|
|
263 | |
|
|
264 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
|
|
265 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
|
|
266 | |
|
|
267 | if [ "${PATCH_SUFFIX}" != "patch" ] |
|
|
268 | then |
|
|
269 | if ! (${PIPE_CMD} ${x} > ${PATCH_TARGET}) >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} 2>&1 |
|
|
270 | then |
|
|
271 | echo |
|
|
272 | eerror "Could not extract patch!" |
|
|
273 | #die "Could not extract patch!" |
|
|
274 | count=5 |
|
|
275 | break |
|
|
276 | fi |
|
|
277 | fi |
|
|
278 | |
|
|
279 | if (cat ${PATCH_TARGET} | patch ${popts} --dry-run -f -p${count}) >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} 2>&1 |
|
|
280 | then |
|
|
281 | draw_line "***** ${x##*/} *****" > ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
341 | _epatch_draw_line "***** ${patchname} *****" > ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
282 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
342 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
283 | echo "ACTUALLY APPLYING ${x##*/}..." >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
343 | echo "ACTUALLY APPLYING ${patchname} ..." >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
284 | echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
344 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
285 | draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
345 | _epatch_draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
286 | |
346 | |
287 | cat ${PATCH_TARGET} | patch ${popts} -p${count} >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real 2>&1 |
347 | cat ${PATCH_TARGET} | patch -p${count} ${popts} >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real 2>&1 |
|
|
348 | _epatch_assert |
288 | |
349 | |
289 | if [ "$?" -ne 0 ] |
350 | if [ "$?" -ne 0 ] |
290 | then |
351 | then |
291 | cat ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
352 | cat ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
292 | echo |
353 | echo |
293 | eerror "A dry-run of patch command succeeded, but actually" |
354 | eerror "A dry-run of patch command succeeded, but actually" |
294 | eerror "applying the patch failed!" |
355 | eerror "applying the patch failed!" |
295 | #die "Real world sux compared to the dreamworld!" |
356 | #die "Real world sux compared to the dreamworld!" |
296 | count=5 |
357 | count=5 |
297 | fi |
358 | fi |
298 | |
359 | |
299 | rm -f ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
360 | rm -f ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
300 | |
361 | |
301 | break |
362 | break |
302 | fi |
363 | fi |
303 | |
364 | |
304 | count=$((count + 1)) |
365 | count=$((count + 1)) |
… | |
… | |
310 | fi |
371 | fi |
311 | |
372 | |
312 | if [ "${count}" -eq 5 ] |
373 | if [ "${count}" -eq 5 ] |
313 | then |
374 | then |
314 | echo |
375 | echo |
315 | eerror "Failed Patch: ${x##*/}!" |
376 | eerror "Failed Patch: ${patchname} !" |
|
|
377 | eerror " ( ${PATCH_TARGET} )" |
316 | eerror |
378 | eerror |
317 | eerror "Include in your bugreport the contents of:" |
379 | eerror "Include in your bugreport the contents of:" |
318 | eerror |
380 | eerror |
319 | eerror " ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}" |
381 | eerror " ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}" |
320 | echo |
382 | echo |
321 | die "Failed Patch: ${x##*/}!" |
383 | die "Failed Patch: ${patchname}!" |
322 | fi |
384 | fi |
323 | |
385 | |
324 | rm -f ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
386 | rm -f ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
325 | |
387 | |
326 | eend 0 |
388 | eend 0 |
327 | fi |
389 | fi |
328 | done |
390 | done |
329 | if [ "${SINGLE_PATCH}" = "no" ] |
391 | if [ "${SINGLE_PATCH}" = "no" ] |
330 | then |
392 | then |
331 | einfo "Done with patching" |
393 | einfo "Done with patching" |
332 | fi |
394 | fi |
333 | } |
395 | } |
|
|
396 | epatch_user() { |
|
|
397 | [[ $# -ne 0 ]] && die "epatch_user takes no options" |
334 | |
398 | |
335 | # This function return true if we are using the NPTL pthreads |
399 | # don't clobber any EPATCH vars that the parent might want |
336 | # implementation. |
400 | local EPATCH_SOURCE check base=${PORTAGE_CONFIGROOT}/etc/portage/patches |
337 | # |
401 | for check in {${CATEGORY}/${PF},${CATEGORY}/${P},${CATEGORY}/${PN}}; do |
338 | # <azarah@gentoo.org> (06 March 2003) |
402 | EPATCH_SOURCE=${base}/${CTARGET}/${check} |
339 | # |
403 | [[ -r ${EPATCH_SOURCE} ]] || EPATCH_SOURCE=${base}/${CHOST}/${check} |
|
|
404 | [[ -r ${EPATCH_SOURCE} ]] || EPATCH_SOURCE=${base}/${check} |
|
|
405 | if [[ -d ${EPATCH_SOURCE} ]] ; then |
|
|
406 | EPATCH_SOURCE=${EPATCH_SOURCE} \ |
|
|
407 | EPATCH_SUFFIX="patch" \ |
|
|
408 | EPATCH_FORCE="yes" \ |
|
|
409 | EPATCH_MULTI_MSG="Applying user patches from ${EPATCH_SOURCE} ..." \ |
|
|
410 | epatch |
|
|
411 | break |
|
|
412 | fi |
|
|
413 | done |
|
|
414 | } |
340 | |
415 | |
341 | have_NPTL() { |
416 | # @FUNCTION: emktemp |
|
|
417 | # @USAGE: [temp dir] |
|
|
418 | # @DESCRIPTION: |
|
|
419 | # Cheap replacement for when debianutils (and thus mktemp) |
|
|
420 | # does not exist on the users system. |
|
|
421 | emktemp() { |
|
|
422 | local exe="touch" |
|
|
423 | [[ $1 == -d ]] && exe="mkdir" && shift |
|
|
424 | local topdir=$1 |
342 | |
425 | |
343 | cat > ${T}/test-nptl.c <<-"END" |
426 | if [[ -z ${topdir} ]] ; then |
344 | #define _XOPEN_SOURCE |
427 | [[ -z ${T} ]] \ |
345 | #include <unistd.h> |
428 | && topdir="/tmp" \ |
346 | #include <stdio.h> |
429 | || topdir=${T} |
|
|
430 | fi |
347 | |
431 | |
348 | int main() |
432 | if ! type -P mktemp > /dev/null ; then |
349 | { |
433 | # system lacks `mktemp` so we have to fake it |
350 | char buf[255]; |
434 | local tmp=/ |
351 | char *str = buf; |
435 | while [[ -e ${tmp} ]] ; do |
352 | |
436 | tmp=${topdir}/tmp.${RANDOM}.${RANDOM}.${RANDOM} |
353 | confstr(_CS_GNU_LIBPTHREAD_VERSION, str, 255); |
437 | done |
354 | if (NULL != str) { |
438 | ${exe} "${tmp}" || ${exe} -p "${tmp}" |
355 | printf("%s\n", str); |
439 | echo "${tmp}" |
356 | if (NULL != strstr(str, "NPTL")) |
440 | else |
357 | return 0; |
441 | # the args here will give slightly wierd names on BSD, |
358 | } |
442 | # but should produce a usable file on all userlands |
359 | |
443 | if [[ ${exe} == "touch" ]] ; then |
360 | return 1; |
444 | TMPDIR="${topdir}" mktemp -t tmp.XXXXXXXXXX |
361 | } |
|
|
362 | END |
|
|
363 | |
|
|
364 | einfon "Checking for _CS_GNU_LIBPTHREAD_VERSION support in glibc ... " |
|
|
365 | if gcc -o ${T}/nptl ${T}/test-nptl.c &> /dev/null |
|
|
366 | then |
|
|
367 | echo "yes" |
|
|
368 | einfon "Checking what PTHREADS implementation we have ... " |
|
|
369 | if ${T}/nptl |
|
|
370 | then |
|
|
371 | return 0 |
|
|
372 | else |
445 | else |
373 | return 1 |
446 | TMPDIR="${topdir}" mktemp -dt tmp.XXXXXXXXXX |
374 | fi |
|
|
375 | else |
|
|
376 | echo "no" |
|
|
377 | fi |
447 | fi |
378 | |
|
|
379 | return 1 |
|
|
380 | } |
|
|
381 | |
|
|
382 | # This function check how many cpu's are present, and then set |
|
|
383 | # -j in MAKEOPTS accordingly. |
|
|
384 | # |
|
|
385 | # Thanks to nall <nall@gentoo.org> for this. |
|
|
386 | # |
|
|
387 | get_number_of_jobs() { |
|
|
388 | local jobs=0 |
|
|
389 | |
|
|
390 | if [ ! -r /proc/cpuinfo ] |
|
|
391 | then |
|
|
392 | return 1 |
|
|
393 | fi |
|
|
394 | |
|
|
395 | # This bit is from H?kan Wessberg <nacka-gentoo@refug.org>, bug #13565. |
|
|
396 | if [ "`egrep "^[[:space:]]*MAKEOPTS=" /etc/make.conf | wc -l`" -gt 0 ] |
|
|
397 | then |
|
|
398 | ADMINOPTS="`egrep "^[[:space:]]*MAKEOPTS=" /etc/make.conf | cut -d= -f2 | sed 's/\"//g'`" |
|
|
399 | ADMINPARAM="`echo ${ADMINOPTS} | gawk '{match($0, /-j *[0-9]*/, opt); print opt[0]}'`" |
|
|
400 | ADMINPARAM="${ADMINPARAM/-j}" |
|
|
401 | fi |
|
|
402 | |
|
|
403 | export MAKEOPTS="`echo ${MAKEOPTS} | sed -e 's:-j *[0-9]*::g'`" |
|
|
404 | |
|
|
405 | if [ "${ARCH}" = "amd64" -o "${ARCH}" = "x86" -o "${ARCH}" = "hppa" -o \ |
|
|
406 | "${ARCH}" = "arm" -o "${ARCH}" = "mips" ] |
|
|
407 | then |
|
|
408 | # these archs will always have "[Pp]rocessor" |
|
|
409 | jobs="$((`grep -c ^[Pp]rocessor /proc/cpuinfo` * 2))" |
|
|
410 | |
|
|
411 | elif [ "${ARCH}" = "sparc" -o "${ARCH}" = "sparc64" ] |
|
|
412 | then |
|
|
413 | # sparc always has "ncpus active" |
|
|
414 | jobs="$((`grep "^ncpus active" /proc/cpuinfo | sed -e "s/^.*: //"` * 2))" |
|
|
415 | |
|
|
416 | elif [ "${ARCH}" = "alpha" ] |
|
|
417 | then |
|
|
418 | # alpha has "cpus active", but only when compiled with SMP |
|
|
419 | if [ "`grep -c "^cpus active" /proc/cpuinfo`" -eq 1 ] |
|
|
420 | then |
|
|
421 | jobs="$((`grep "^cpus active" /proc/cpuinfo | sed -e "s/^.*: //"` * 2))" |
|
|
422 | else |
|
|
423 | jobs=2 |
|
|
424 | fi |
448 | fi |
|
|
449 | } |
425 | |
450 | |
426 | elif [ "${ARCH}" = "ppc" ] |
451 | # @FUNCTION: egetent |
427 | then |
452 | # @USAGE: <database> <key> |
428 | # ppc has "processor", but only when compiled with SMP |
453 | # @MAINTAINER: |
429 | if [ "`grep -c "^processor" /proc/cpuinfo`" -eq 1 ] |
454 | # base-system@gentoo.org (Linux) |
430 | then |
455 | # Joe Jezak <josejx@gmail.com> (OS X) |
431 | jobs="$((`grep -c ^processor /proc/cpuinfo` * 2))" |
456 | # usata@gentoo.org (OS X) |
432 | else |
457 | # Aaron Walker <ka0ttic@gentoo.org> (FreeBSD) |
433 | jobs=2 |
458 | # @DESCRIPTION: |
434 | fi |
459 | # Small wrapper for getent (Linux), |
435 | else |
460 | # nidump (< Mac OS X 10.5), dscl (Mac OS X 10.5), |
436 | jobs="$((`grep -c ^cpu /proc/cpuinfo` * 2))" |
461 | # and pw (FreeBSD) used in enewuser()/enewgroup() |
437 | die "Unknown ARCH -- ${ARCH}!" |
462 | egetent() { |
|
|
463 | case ${CHOST} in |
|
|
464 | *-darwin[678]) |
|
|
465 | case "$2" in |
|
|
466 | *[!0-9]*) # Non numeric |
|
|
467 | nidump $1 . | awk -F":" "{ if (\$1 ~ /^$2$/) {print \$0;exit;} }" |
|
|
468 | ;; |
|
|
469 | *) # Numeric |
|
|
470 | nidump $1 . | awk -F":" "{ if (\$3 == $2) {print \$0;exit;} }" |
|
|
471 | ;; |
|
|
472 | esac |
|
|
473 | ;; |
|
|
474 | *-darwin*) |
|
|
475 | local mytype=$1 |
|
|
476 | [[ "passwd" == $mytype ]] && mytype="Users" |
|
|
477 | [[ "group" == $mytype ]] && mytype="Groups" |
|
|
478 | case "$2" in |
|
|
479 | *[!0-9]*) # Non numeric |
|
|
480 | dscl . -read /$mytype/$2 2>/dev/null |grep RecordName |
|
|
481 | ;; |
|
|
482 | *) # Numeric |
|
|
483 | local mykey="UniqueID" |
|
|
484 | [[ $mytype == "Groups" ]] && mykey="PrimaryGroupID" |
|
|
485 | dscl . -search /$mytype $mykey $2 2>/dev/null |
|
|
486 | ;; |
|
|
487 | esac |
|
|
488 | ;; |
|
|
489 | *-freebsd*|*-dragonfly*) |
|
|
490 | local opts action="user" |
|
|
491 | [[ $1 == "passwd" ]] || action="group" |
|
|
492 | |
|
|
493 | # lookup by uid/gid |
|
|
494 | if [[ $2 == [[:digit:]]* ]] ; then |
|
|
495 | [[ ${action} == "user" ]] && opts="-u" || opts="-g" |
438 | fi |
496 | fi |
439 | |
497 | |
440 | # Make sure the number is valid ... |
498 | pw show ${action} ${opts} "$2" -q |
441 | if [ "${jobs}" -lt 1 ] |
499 | ;; |
442 | then |
500 | *-netbsd*|*-openbsd*) |
443 | jobs=1 |
501 | grep "$2:\*:" /etc/$1 |
444 | fi |
502 | ;; |
445 | |
503 | *) |
446 | if [ -n "${ADMINPARAM}" ] |
504 | type -p nscd >& /dev/null && nscd -i "$1" |
447 | then |
505 | getent "$1" "$2" |
448 | if [ "${jobs}" -gt "${ADMINPARAM}" ] |
506 | ;; |
449 | then |
507 | esac |
450 | einfo "Setting make jobs to \"-j${ADMINPARAM}\" to ensure successful merge..." |
|
|
451 | export MAKEOPTS="${MAKEOPTS} -j${ADMINPARAM}" |
|
|
452 | else |
|
|
453 | einfo "Setting make jobs to \"-j${jobs}\" to ensure successful merge..." |
|
|
454 | export MAKEOPTS="${MAKEOPTS} -j${jobs}" |
|
|
455 | fi |
|
|
456 | fi |
|
|
457 | } |
508 | } |
458 | |
509 | |
459 | # Simplify/standardize adding users to the system |
510 | # @FUNCTION: enewuser |
460 | # vapier@gentoo.org |
511 | # @USAGE: <user> [uid] [shell] [homedir] [groups] [params] |
461 | # |
512 | # @DESCRIPTION: |
462 | # enewuser(username, uid, shell, homedir, groups, extra options) |
513 | # Same as enewgroup, you are not required to understand how to properly add |
463 | # |
514 | # a user to the system. The only required parameter is the username. |
464 | # Default values if you do not specify any: |
515 | # Default uid is (pass -1 for this) next available, default shell is |
465 | # username: REQUIRED ! |
516 | # /bin/false, default homedir is /dev/null, there are no default groups, |
466 | # uid: next available (see useradd(8)) |
517 | # and default params sets the comment as 'added by portage for ${PN}'. |
467 | # note: pass -1 to get default behavior |
|
|
468 | # shell: /bin/false |
|
|
469 | # homedir: /dev/null |
|
|
470 | # groups: none |
|
|
471 | # extra: comment of 'added by portage for ${PN}' |
|
|
472 | enewuser() { |
518 | enewuser() { |
|
|
519 | case ${EBUILD_PHASE} in |
|
|
520 | unpack|compile|test|install) |
|
|
521 | eerror "'enewuser()' called from '${EBUILD_PHASE}()' which is not a pkg_* function." |
|
|
522 | eerror "Package fails at QA and at life. Please file a bug." |
|
|
523 | die "Bad package! enewuser is only for use in pkg_* functions!" |
|
|
524 | esac |
|
|
525 | |
473 | # get the username |
526 | # get the username |
474 | local euser="$1"; shift |
527 | local euser=$1; shift |
475 | if [ -z "${euser}" ] ; then |
528 | if [[ -z ${euser} ]] ; then |
476 | eerror "No username specified !" |
529 | eerror "No username specified !" |
477 | die "Cannot call enewuser without a username" |
530 | die "Cannot call enewuser without a username" |
478 | fi |
531 | fi |
479 | |
532 | |
480 | # setup a file for testing usernames/groups |
|
|
481 | local tmpfile="`mktemp -p ${T}`" |
|
|
482 | touch ${tmpfile} |
|
|
483 | chown ${euser} ${tmpfile} >& /dev/null |
|
|
484 | local realuser="`ls -l ${tmpfile} | awk '{print $3}'`" |
|
|
485 | |
|
|
486 | # see if user already exists |
533 | # lets see if the username already exists |
487 | if [ "${euser}" == "${realuser}" ] ; then |
534 | if [[ -n $(egetent passwd "${euser}") ]] ; then |
488 | return 0 |
535 | return 0 |
489 | fi |
536 | fi |
490 | einfo "Adding user '${euser}' to your system ..." |
537 | einfo "Adding user '${euser}' to your system ..." |
491 | |
538 | |
492 | # options to pass to useradd |
539 | # options to pass to useradd |
493 | local opts="" |
540 | local opts= |
494 | |
541 | |
495 | # handle uid |
542 | # handle uid |
496 | local euid="$1"; shift |
543 | local euid=$1; shift |
497 | if [ ! -z "${euid}" ] && [ "${euid}" != "-1" ] ; then |
544 | if [[ -n ${euid} && ${euid} != -1 ]] ; then |
498 | if [ ${euid} -gt 0 ] ; then |
545 | if [[ ${euid} -gt 0 ]] ; then |
499 | opts="${opts} -u ${euid}" |
546 | if [[ -n $(egetent passwd ${euid}) ]] ; then |
|
|
547 | euid="next" |
|
|
548 | fi |
500 | else |
549 | else |
501 | eerror "Userid given but is not greater than 0 !" |
550 | eerror "Userid given but is not greater than 0 !" |
502 | die "${euid} is not a valid UID" |
551 | die "${euid} is not a valid UID" |
503 | fi |
552 | fi |
504 | else |
553 | else |
505 | euid="next available" |
554 | euid="next" |
506 | fi |
555 | fi |
|
|
556 | if [[ ${euid} == "next" ]] ; then |
|
|
557 | for ((euid = 101; euid <= 999; euid++)); do |
|
|
558 | [[ -z $(egetent passwd ${euid}) ]] && break |
|
|
559 | done |
|
|
560 | fi |
|
|
561 | opts="${opts} -u ${euid}" |
507 | einfo " - Userid: ${euid}" |
562 | einfo " - Userid: ${euid}" |
508 | |
563 | |
509 | # handle shell |
564 | # handle shell |
510 | local eshell="$1"; shift |
565 | local eshell=$1; shift |
511 | if [ ! -z "${eshell}" ] ; then |
566 | if [[ ! -z ${eshell} ]] && [[ ${eshell} != "-1" ]] ; then |
512 | if [ ! -e ${eshell} ] ; then |
567 | if [[ ! -e ${ROOT}${eshell} ]] ; then |
513 | eerror "A shell was specified but it does not exist !" |
568 | eerror "A shell was specified but it does not exist !" |
514 | die "${eshell} does not exist" |
569 | die "${eshell} does not exist in ${ROOT}" |
|
|
570 | fi |
|
|
571 | if [[ ${eshell} == */false || ${eshell} == */nologin ]] ; then |
|
|
572 | eerror "Do not specify ${eshell} yourself, use -1" |
|
|
573 | die "Pass '-1' as the shell parameter" |
515 | fi |
574 | fi |
516 | else |
575 | else |
517 | eshell=/bin/false |
576 | for shell in /sbin/nologin /usr/sbin/nologin /bin/false /usr/bin/false /dev/null ; do |
|
|
577 | [[ -x ${ROOT}${shell} ]] && break |
|
|
578 | done |
|
|
579 | |
|
|
580 | if [[ ${shell} == "/dev/null" ]] ; then |
|
|
581 | eerror "Unable to identify the shell to use, proceeding with userland default." |
|
|
582 | case ${USERLAND} in |
|
|
583 | GNU) shell="/bin/false" ;; |
|
|
584 | BSD) shell="/sbin/nologin" ;; |
|
|
585 | Darwin) shell="/usr/sbin/nologin" ;; |
|
|
586 | *) die "Unable to identify the default shell for userland ${USERLAND}" |
|
|
587 | esac |
|
|
588 | fi |
|
|
589 | |
|
|
590 | eshell=${shell} |
518 | fi |
591 | fi |
519 | einfo " - Shell: ${eshell}" |
592 | einfo " - Shell: ${eshell}" |
520 | opts="${opts} -s ${eshell}" |
593 | opts="${opts} -s ${eshell}" |
521 | |
594 | |
522 | # handle homedir |
595 | # handle homedir |
523 | local ehome="$1"; shift |
596 | local ehome=$1; shift |
524 | if [ -z "${ehome}" ] ; then |
597 | if [[ -z ${ehome} ]] || [[ ${ehome} == "-1" ]] ; then |
525 | ehome=/dev/null |
598 | ehome="/dev/null" |
526 | fi |
599 | fi |
527 | einfo " - Home: ${ehome}" |
600 | einfo " - Home: ${ehome}" |
528 | opts="${opts} -d ${ehome}" |
601 | opts="${opts} -d ${ehome}" |
529 | |
602 | |
530 | # handle groups |
603 | # handle groups |
531 | local egroups="$1"; shift |
604 | local egroups=$1; shift |
532 | if [ ! -z "${egroups}" ] ; then |
605 | if [[ ! -z ${egroups} ]] ; then |
533 | local realgroup |
|
|
534 | local oldifs="${IFS}" |
606 | local oldifs=${IFS} |
|
|
607 | local defgroup="" exgroups="" |
|
|
608 | |
535 | export IFS="," |
609 | export IFS="," |
536 | for g in ${egroups} ; do |
610 | for g in ${egroups} ; do |
537 | chgrp ${g} ${tmpfile} >& /dev/null |
611 | export IFS=${oldifs} |
538 | realgroup="`ls -l ${tmpfile} | awk '{print $4}'`" |
612 | if [[ -z $(egetent group "${g}") ]] ; then |
539 | if [ "${g}" != "${realgroup}" ] ; then |
|
|
540 | eerror "You must add ${g} to the system first" |
613 | eerror "You must add group ${g} to the system first" |
541 | die "${g} is not a valid GID" |
614 | die "${g} is not a valid GID" |
542 | fi |
615 | fi |
|
|
616 | if [[ -z ${defgroup} ]] ; then |
|
|
617 | defgroup=${g} |
|
|
618 | else |
|
|
619 | exgroups="${exgroups},${g}" |
|
|
620 | fi |
|
|
621 | export IFS="," |
543 | done |
622 | done |
544 | export IFS="${oldifs}" |
623 | export IFS=${oldifs} |
|
|
624 | |
545 | opts="${opts} -g ${egroups}" |
625 | opts="${opts} -g ${defgroup}" |
|
|
626 | if [[ ! -z ${exgroups} ]] ; then |
|
|
627 | opts="${opts} -G ${exgroups:1}" |
|
|
628 | fi |
546 | else |
629 | else |
547 | egroups="(none)" |
630 | egroups="(none)" |
548 | fi |
631 | fi |
549 | einfo " - Groups: ${egroups}" |
632 | einfo " - Groups: ${egroups}" |
550 | |
633 | |
551 | # handle extra and add the user |
634 | # handle extra and add the user |
552 | local eextra="$@" |
|
|
553 | local oldsandbox=${SANDBOX_ON} |
635 | local oldsandbox=${SANDBOX_ON} |
554 | export SANDBOX_ON="0" |
636 | export SANDBOX_ON="0" |
555 | if [ -z "${eextra}" ] ; then |
637 | case ${CHOST} in |
556 | useradd ${opts} ${euser} \ |
638 | *-darwin*) |
|
|
639 | ### Make the user |
|
|
640 | if [[ -z $@ ]] ; then |
|
|
641 | dscl . create /users/${euser} uid ${euid} |
|
|
642 | dscl . create /users/${euser} shell ${eshell} |
|
|
643 | dscl . create /users/${euser} home ${ehome} |
|
|
644 | dscl . create /users/${euser} realname "added by portage for ${PN}" |
|
|
645 | ### Add the user to the groups specified |
|
|
646 | local oldifs=${IFS} |
|
|
647 | export IFS="," |
|
|
648 | for g in ${egroups} ; do |
|
|
649 | dscl . merge /groups/${g} users ${euser} |
|
|
650 | done |
|
|
651 | export IFS=${oldifs} |
|
|
652 | else |
|
|
653 | einfo "Extra options are not supported on Darwin yet" |
|
|
654 | einfo "Please report the ebuild along with the info below" |
|
|
655 | einfo "eextra: $@" |
|
|
656 | die "Required function missing" |
|
|
657 | fi |
|
|
658 | ;; |
|
|
659 | *-freebsd*|*-dragonfly*) |
|
|
660 | if [[ -z $@ ]] ; then |
|
|
661 | pw useradd ${euser} ${opts} \ |
557 | -c "added by portage for ${PN}" \ |
662 | -c "added by portage for ${PN}" \ |
|
|
663 | die "enewuser failed" |
|
|
664 | else |
|
|
665 | einfo " - Extra: $@" |
|
|
666 | pw useradd ${euser} ${opts} \ |
|
|
667 | "$@" || die "enewuser failed" |
|
|
668 | fi |
|
|
669 | ;; |
|
|
670 | |
|
|
671 | *-netbsd*) |
|
|
672 | if [[ -z $@ ]] ; then |
|
|
673 | useradd ${opts} ${euser} || die "enewuser failed" |
|
|
674 | else |
|
|
675 | einfo " - Extra: $@" |
|
|
676 | useradd ${opts} ${euser} "$@" || die "enewuser failed" |
|
|
677 | fi |
|
|
678 | ;; |
|
|
679 | |
|
|
680 | *-openbsd*) |
|
|
681 | if [[ -z $@ ]] ; then |
|
|
682 | useradd -u ${euid} -s ${eshell} \ |
|
|
683 | -d ${ehome} -c "Added by portage for ${PN}" \ |
|
|
684 | -g ${egroups} ${euser} || die "enewuser failed" |
|
|
685 | else |
|
|
686 | einfo " - Extra: $@" |
|
|
687 | useradd -u ${euid} -s ${eshell} \ |
|
|
688 | -d ${ehome} -c "Added by portage for ${PN}" \ |
|
|
689 | -g ${egroups} ${euser} "$@" || die "enewuser failed" |
|
|
690 | fi |
|
|
691 | ;; |
|
|
692 | |
|
|
693 | *) |
|
|
694 | if [[ -z $@ ]] ; then |
|
|
695 | useradd ${opts} \ |
|
|
696 | -c "added by portage for ${PN}" \ |
|
|
697 | ${euser} \ |
558 | || die "enewuser failed" |
698 | || die "enewuser failed" |
559 | else |
699 | else |
560 | einfo " - Extra: ${eextra}" |
700 | einfo " - Extra: $@" |
561 | useradd ${opts} ${euser} ${eextra} \ |
701 | useradd ${opts} "$@" \ |
|
|
702 | ${euser} \ |
562 | || die "enewuser failed" |
703 | || die "enewuser failed" |
563 | fi |
704 | fi |
|
|
705 | ;; |
|
|
706 | esac |
|
|
707 | |
|
|
708 | if [[ ! -e ${ROOT}/${ehome} ]] ; then |
|
|
709 | einfo " - Creating ${ehome} in ${ROOT}" |
|
|
710 | mkdir -p "${ROOT}/${ehome}" |
|
|
711 | chown ${euser} "${ROOT}/${ehome}" |
|
|
712 | chmod 755 "${ROOT}/${ehome}" |
|
|
713 | fi |
|
|
714 | |
564 | export SANDBOX_ON="${oldsandbox}" |
715 | export SANDBOX_ON=${oldsandbox} |
565 | |
|
|
566 | if [ ! -e ${ehome} ] && [ ! -e ${D}/${ehome} ] ; then |
|
|
567 | einfo " - Creating ${ehome} in ${D}" |
|
|
568 | dodir ${ehome} |
|
|
569 | fowners ${euser} ${ehome} |
|
|
570 | fperms 755 ${ehome} |
|
|
571 | fi |
|
|
572 | } |
716 | } |
573 | |
717 | |
574 | # Simplify/standardize adding groups to the system |
718 | # @FUNCTION: enewgroup |
575 | # vapier@gentoo.org |
719 | # @USAGE: <group> [gid] |
576 | # |
720 | # @DESCRIPTION: |
577 | # enewgroup(group, gid) |
721 | # This function does not require you to understand how to properly add a |
578 | # |
722 | # group to the system. Just give it a group name to add and enewgroup will |
579 | # Default values if you do not specify any: |
723 | # do the rest. You may specify the gid for the group or allow the group to |
580 | # groupname: REQUIRED ! |
724 | # allocate the next available one. |
581 | # gid: next available (see groupadd(8)) |
|
|
582 | # extra: none |
|
|
583 | enewgroup() { |
725 | enewgroup() { |
|
|
726 | case ${EBUILD_PHASE} in |
|
|
727 | unpack|compile|test|install) |
|
|
728 | eerror "'enewgroup()' called from '${EBUILD_PHASE}()' which is not a pkg_* function." |
|
|
729 | eerror "Package fails at QA and at life. Please file a bug." |
|
|
730 | die "Bad package! enewgroup is only for use in pkg_* functions!" |
|
|
731 | esac |
|
|
732 | |
584 | # get the group |
733 | # get the group |
585 | local egroup="$1"; shift |
734 | local egroup="$1"; shift |
586 | if [ -z "${egroup}" ] ; then |
735 | if [ -z "${egroup}" ] |
|
|
736 | then |
587 | eerror "No group specified !" |
737 | eerror "No group specified !" |
588 | die "Cannot call enewgroup without a group" |
738 | die "Cannot call enewgroup without a group" |
589 | fi |
739 | fi |
590 | |
740 | |
591 | # setup a file for testing groupname |
|
|
592 | local tmpfile="`mktemp -p ${T}`" |
|
|
593 | touch ${tmpfile} |
|
|
594 | chgrp ${egroup} ${tmpfile} >& /dev/null |
|
|
595 | local realgroup="`ls -l ${tmpfile} | awk '{print $4}'`" |
|
|
596 | |
|
|
597 | # see if group already exists |
741 | # see if group already exists |
598 | if [ "${egroup}" == "${realgroup}" ] ; then |
742 | if [[ -n $(egetent group "${egroup}") ]]; then |
599 | return 0 |
743 | return 0 |
600 | fi |
744 | fi |
601 | einfo "Adding group '${egroup}' to your system ..." |
745 | einfo "Adding group '${egroup}' to your system ..." |
602 | |
746 | |
603 | # options to pass to useradd |
747 | # options to pass to useradd |
604 | local opts="" |
748 | local opts= |
605 | |
749 | |
606 | # handle gid |
750 | # handle gid |
607 | local egid="$1"; shift |
751 | local egid="$1"; shift |
608 | if [ ! -z "${egid}" ] ; then |
752 | if [ ! -z "${egid}" ] |
|
|
753 | then |
609 | if [ ${egid} -gt 0 ] ; then |
754 | if [ "${egid}" -gt 0 ] |
|
|
755 | then |
|
|
756 | if [ -z "`egetent group ${egid}`" ] |
|
|
757 | then |
|
|
758 | if [[ "${CHOST}" == *-darwin* ]]; then |
|
|
759 | opts="${opts} ${egid}" |
|
|
760 | else |
610 | opts="${opts} -g ${egid}" |
761 | opts="${opts} -g ${egid}" |
|
|
762 | fi |
|
|
763 | else |
|
|
764 | egid="next available; requested gid taken" |
|
|
765 | fi |
611 | else |
766 | else |
612 | eerror "Groupid given but is not greater than 0 !" |
767 | eerror "Groupid given but is not greater than 0 !" |
613 | die "${egid} is not a valid GID" |
768 | die "${egid} is not a valid GID" |
614 | fi |
769 | fi |
615 | else |
770 | else |
… | |
… | |
620 | # handle extra |
775 | # handle extra |
621 | local eextra="$@" |
776 | local eextra="$@" |
622 | opts="${opts} ${eextra}" |
777 | opts="${opts} ${eextra}" |
623 | |
778 | |
624 | # add the group |
779 | # add the group |
625 | local oldsandbox=${SANDBOX_ON} |
780 | local oldsandbox="${SANDBOX_ON}" |
626 | export SANDBOX_ON="0" |
781 | export SANDBOX_ON="0" |
|
|
782 | case ${CHOST} in |
|
|
783 | *-darwin*) |
|
|
784 | if [ ! -z "${eextra}" ]; |
|
|
785 | then |
|
|
786 | einfo "Extra options are not supported on Darwin/OS X yet" |
|
|
787 | einfo "Please report the ebuild along with the info below" |
|
|
788 | einfo "eextra: ${eextra}" |
|
|
789 | die "Required function missing" |
|
|
790 | fi |
|
|
791 | |
|
|
792 | # If we need the next available |
|
|
793 | case ${egid} in |
|
|
794 | *[!0-9]*) # Non numeric |
|
|
795 | for ((egid = 101; egid <= 999; egid++)); do |
|
|
796 | [[ -z $(egetent group ${egid}) ]] && break |
|
|
797 | done |
|
|
798 | esac |
|
|
799 | dscl . create /groups/${egroup} gid ${egid} |
|
|
800 | dscl . create /groups/${egroup} passwd '*' |
|
|
801 | ;; |
|
|
802 | |
|
|
803 | *-freebsd*|*-dragonfly*) |
|
|
804 | case ${egid} in |
|
|
805 | *[!0-9]*) # Non numeric |
|
|
806 | for ((egid = 101; egid <= 999; egid++)); do |
|
|
807 | [[ -z $(egetent group ${egid}) ]] && break |
|
|
808 | done |
|
|
809 | esac |
|
|
810 | pw groupadd ${egroup} -g ${egid} || die "enewgroup failed" |
|
|
811 | ;; |
|
|
812 | |
|
|
813 | *-netbsd*) |
|
|
814 | case ${egid} in |
|
|
815 | *[!0-9]*) # Non numeric |
|
|
816 | for ((egid = 101; egid <= 999; egid++)); do |
|
|
817 | [[ -z $(egetent group ${egid}) ]] && break |
|
|
818 | done |
|
|
819 | esac |
|
|
820 | groupadd -g ${egid} ${egroup} || die "enewgroup failed" |
|
|
821 | ;; |
|
|
822 | |
|
|
823 | *) |
627 | groupadd ${opts} ${egroup} || die "enewgroup failed" |
824 | groupadd ${opts} ${egroup} || die "enewgroup failed" |
|
|
825 | ;; |
|
|
826 | esac |
628 | export SANDBOX_ON="${oldsandbox}" |
827 | export SANDBOX_ON="${oldsandbox}" |
629 | } |
828 | } |
630 | |
829 | |
631 | # Simple script to replace 'dos2unix' binaries |
830 | # @FUNCTION: edos2unix |
632 | # vapier@gentoo.org |
831 | # @USAGE: <file> [more files ...] |
633 | # |
832 | # @DESCRIPTION: |
634 | # edos2unix(file, <more files>...) |
833 | # A handy replacement for dos2unix, recode, fixdos, etc... This allows you |
|
|
834 | # to remove all of these text utilities from DEPEND variables because this |
|
|
835 | # is a script based solution. Just give it a list of files to convert and |
|
|
836 | # they will all be changed from the DOS CRLF format to the UNIX LF format. |
635 | edos2unix() { |
837 | edos2unix() { |
636 | for f in $@ ; do |
838 | echo "$@" | xargs sed -i 's/\r$//' |
637 | cp ${f} ${T}/edos2unix |
|
|
638 | sed 's/\r$//' ${T}/edos2unix > ${f} |
|
|
639 | done |
|
|
640 | } |
839 | } |
641 | |
840 | |
642 | # Make a desktop file ! |
841 | # Make a desktop file ! |
643 | # Great for making those icons in kde/gnome startmenu ! |
842 | # Great for making those icons in kde/gnome startmenu ! |
644 | # Amaze your friends ! Get the women ! Join today ! |
843 | # Amaze your friends ! Get the women ! Join today ! |
645 | # gnome2 /usr/share/applications |
|
|
646 | # gnome1 /usr/share/gnome/apps/ |
|
|
647 | # KDE ${KDEDIR}/share/applnk /usr/share/applnk |
|
|
648 | # |
844 | # |
649 | # make_desktop_entry(<binary>, [name], [icon], [type], [path]) |
845 | # make_desktop_entry(<command>, [name], [icon], [type], [path]) |
650 | # |
846 | # |
651 | # binary: what binary does the app run with ? |
847 | # binary: what command does the app run with ? |
652 | # name: the name that will show up in the menu |
848 | # name: the name that will show up in the menu |
653 | # icon: give your little like a pretty little icon ... |
849 | # icon: give your little like a pretty little icon ... |
654 | # this can be relative (to /usr/share/pixmaps) or |
850 | # this can be relative (to /usr/share/pixmaps) or |
655 | # a full path to an icon |
851 | # a full path to an icon |
656 | # type: what kind of application is this ? for categories: |
852 | # type: what kind of application is this ? for categories: |
657 | # http://www.freedesktop.org/standards/menu/draft/menu-spec/menu-spec.html |
853 | # http://standards.freedesktop.org/menu-spec/latest/apa.html |
658 | # path: if your app needs to startup in a specific dir |
854 | # path: if your app needs to startup in a specific dir |
659 | make_desktop_entry() { |
855 | make_desktop_entry() { |
660 | [ -z "$1" ] && eerror "You must specify the executable" && return 1 |
856 | [[ -z $1 ]] && eerror "make_desktop_entry: You must specify the executable" && return 1 |
661 | |
857 | |
662 | local exec=${1} |
858 | local exec=${1} |
663 | local name=${2:-${PN}} |
859 | local name=${2:-${PN}} |
664 | local icon=${3:-${PN}.png} |
860 | local icon=${3:-${PN}} |
665 | local type=${4} |
861 | local type=${4} |
666 | local path=${5:-${GAMES_PREFIX}} |
862 | local path=${5} |
|
|
863 | |
667 | if [ -z "${type}" ] ; then |
864 | if [[ -z ${type} ]] ; then |
668 | case ${CATEGORY} in |
865 | local catmaj=${CATEGORY%%-*} |
|
|
866 | local catmin=${CATEGORY##*-} |
|
|
867 | case ${catmaj} in |
|
|
868 | app) |
|
|
869 | case ${catmin} in |
|
|
870 | accessibility) type=Accessibility;; |
|
|
871 | admin) type=System;; |
|
|
872 | antivirus) type=System;; |
|
|
873 | arch) type=Archiving;; |
|
|
874 | backup) type=Archiving;; |
|
|
875 | cdr) type=DiscBurning;; |
|
|
876 | dicts) type=Dictionary;; |
|
|
877 | doc) type=Documentation;; |
|
|
878 | editors) type=TextEditor;; |
|
|
879 | emacs) type=TextEditor;; |
|
|
880 | emulation) type=Emulator;; |
|
|
881 | laptop) type=HardwareSettings;; |
|
|
882 | office) type=Office;; |
|
|
883 | pda) type=PDA;; |
|
|
884 | vim) type=TextEditor;; |
|
|
885 | xemacs) type=TextEditor;; |
|
|
886 | *) type=;; |
|
|
887 | esac |
|
|
888 | ;; |
|
|
889 | |
|
|
890 | dev) |
|
|
891 | type="Development" |
|
|
892 | ;; |
|
|
893 | |
|
|
894 | games) |
|
|
895 | case ${catmin} in |
|
|
896 | action|fps) type=ActionGame;; |
|
|
897 | arcade) type=ArcadeGame;; |
|
|
898 | board) type=BoardGame;; |
669 | app-emulation) type=Emulator ;; |
899 | emulation) type=Emulator;; |
670 | app-games) type=Game ;; |
900 | kids) type=KidsGame;; |
|
|
901 | puzzle) type=LogicGame;; |
|
|
902 | roguelike) type=RolePlaying;; |
|
|
903 | rpg) type=RolePlaying;; |
|
|
904 | simulation) type=Simulation;; |
|
|
905 | sports) type=SportsGame;; |
|
|
906 | strategy) type=StrategyGame;; |
|
|
907 | *) type=;; |
|
|
908 | esac |
|
|
909 | type="Game;${type}" |
|
|
910 | ;; |
|
|
911 | |
|
|
912 | gnome) |
|
|
913 | type="Gnome;GTK" |
|
|
914 | ;; |
|
|
915 | |
|
|
916 | kde) |
|
|
917 | type="KDE;Qt" |
|
|
918 | ;; |
|
|
919 | |
|
|
920 | mail) |
|
|
921 | type="Network;Email" |
|
|
922 | ;; |
|
|
923 | |
|
|
924 | media) |
|
|
925 | case ${catmin} in |
|
|
926 | gfx) type=Graphics;; |
|
|
927 | radio) type=Tuner;; |
|
|
928 | sound) type=Audio;; |
|
|
929 | tv) type=TV;; |
|
|
930 | video) type=Video;; |
|
|
931 | *) type=;; |
|
|
932 | esac |
|
|
933 | type="AudioVideo;${type}" |
|
|
934 | ;; |
|
|
935 | |
|
|
936 | net) |
|
|
937 | case ${catmin} in |
|
|
938 | dialup) type=Dialup;; |
|
|
939 | ftp) type=FileTransfer;; |
|
|
940 | im) type=InstantMessaging;; |
|
|
941 | irc) type=IRCClient;; |
|
|
942 | mail) type=Email;; |
|
|
943 | news) type=News;; |
|
|
944 | nntp) type=News;; |
|
|
945 | p2p) type=FileTransfer;; |
671 | *) type="" ;; |
946 | *) type=;; |
|
|
947 | esac |
|
|
948 | type="Network;${type}" |
|
|
949 | ;; |
|
|
950 | |
|
|
951 | sci) |
|
|
952 | case ${catmin} in |
|
|
953 | astro*) type=Astronomy;; |
|
|
954 | bio*) type=Biology;; |
|
|
955 | calc*) type=Calculator;; |
|
|
956 | chem*) type=Chemistry;; |
|
|
957 | elec*) type=Electronics;; |
|
|
958 | geo*) type=Geology;; |
|
|
959 | math*) type=Math;; |
|
|
960 | physics) type=Physics;; |
|
|
961 | visual*) type=DataVisualization;; |
|
|
962 | *) type=;; |
|
|
963 | esac |
|
|
964 | type="Science;${type}" |
|
|
965 | ;; |
|
|
966 | |
|
|
967 | sys) |
|
|
968 | type="System" |
|
|
969 | ;; |
|
|
970 | |
|
|
971 | www) |
|
|
972 | case ${catmin} in |
|
|
973 | client) type=WebBrowser;; |
|
|
974 | *) type=;; |
|
|
975 | esac |
|
|
976 | type="Network" |
|
|
977 | ;; |
|
|
978 | |
|
|
979 | *) |
|
|
980 | type= |
|
|
981 | ;; |
672 | esac |
982 | esac |
673 | fi |
983 | fi |
|
|
984 | if [ "${SLOT}" == "0" ] ; then |
|
|
985 | local desktop_name="${PN}" |
|
|
986 | else |
|
|
987 | local desktop_name="${PN}-${SLOT}" |
|
|
988 | fi |
|
|
989 | local desktop="${T}/$(echo ${exec} | sed 's:[[:space:]/:]:_:g')-${desktop_name}.desktop" |
674 | local desktop=${T}/${exec}.desktop |
990 | #local desktop=${T}/${exec%% *:-${desktop_name}}.desktop |
675 | |
991 | |
|
|
992 | cat <<-EOF > "${desktop}" |
676 | echo "[Desktop Entry] |
993 | [Desktop Entry] |
677 | Encoding=UTF-8 |
|
|
678 | Version=0.9.2 |
|
|
679 | Name=${name} |
994 | Name=${name} |
680 | Type=Application |
995 | Type=Application |
681 | Comment=${DESCRIPTION} |
996 | Comment=${DESCRIPTION} |
682 | Exec=${exec} |
997 | Exec=${exec} |
683 | Path=${path} |
998 | TryExec=${exec%% *} |
684 | Icon=${icon} |
999 | Icon=${icon} |
685 | Categories=Application;${type};" > ${desktop} |
1000 | Categories=${type}; |
|
|
1001 | EOF |
686 | |
1002 | |
687 | if [ -d /usr/share/applications ] ; then |
1003 | [[ ${path} ]] && echo "Path=${path}" >> "${desktop}" |
|
|
1004 | |
|
|
1005 | ( |
|
|
1006 | # wrap the env here so that the 'insinto' call |
|
|
1007 | # doesn't corrupt the env of the caller |
688 | insinto /usr/share/applications |
1008 | insinto /usr/share/applications |
689 | doins ${desktop} |
1009 | doins "${desktop}" |
690 | fi |
1010 | ) |
|
|
1011 | } |
691 | |
1012 | |
692 | #if [ -d /usr/share/gnome/apps ] ; then |
1013 | # @FUNCTION: validate_desktop_entries |
693 | # insinto /usr/share/gnome/apps/Games |
1014 | # @USAGE: [directories] |
694 | # doins ${desktop} |
1015 | # @MAINTAINER: |
695 | #fi |
1016 | # Carsten Lohrke <carlo@gentoo.org> |
696 | |
1017 | # @DESCRIPTION: |
697 | #if [ ! -z "`ls /usr/kde/* 2>/dev/null`" ] ; then |
1018 | # Validate desktop entries using desktop-file-utils |
698 | # for ver in /usr/kde/* ; do |
1019 | validate_desktop_entries() { |
699 | # insinto ${ver}/share/applnk/Games |
1020 | if [[ -x /usr/bin/desktop-file-validate ]] ; then |
700 | # doins ${desktop} |
1021 | einfo "Checking desktop entry validity" |
|
|
1022 | local directories="" |
|
|
1023 | for d in /usr/share/applications $@ ; do |
|
|
1024 | [[ -d ${D}${d} ]] && directories="${directories} ${D}${d}" |
701 | # done |
1025 | done |
702 | #fi |
1026 | if [[ -n ${directories} ]] ; then |
703 | |
1027 | for FILE in $(find ${directories} -name "*\.desktop" \ |
704 | if [ -d /usr/share/applnk ] ; then |
1028 | -not -path '*.hidden*' | sort -u 2>/dev/null) |
705 | insinto /usr/share/applnk/${type} |
1029 | do |
706 | doins ${desktop} |
1030 | local temp=$(desktop-file-validate ${FILE} | grep -v "warning:" | \ |
707 | fi |
1031 | sed -e "s|error: ||" -e "s|${FILE}:|--|g" ) |
708 | |
1032 | [[ -n $temp ]] && elog ${temp/--/${FILE/${D}/}:} |
709 | return 0 |
|
|
710 | } |
|
|
711 | |
|
|
712 | # new convenience patch wrapper function to eventually replace epatch(), |
|
|
713 | # $PATCHES, $PATCHES1, src_unpack:patch, src_unpack:autopatch and |
|
|
714 | # /usr/bin/patch |
|
|
715 | # Features: |
|
|
716 | # - bulk patch handling similar to epatch()'s |
|
|
717 | # - automatic patch level detection like epatch()'s |
|
|
718 | # - automatic patch uncompression like epatch()'s |
|
|
719 | # - doesn't have the --dry-run overhead of epatch() - inspects patchfiles |
|
|
720 | # manually instead |
|
|
721 | # - once I decide it's production-ready, it'll be called from base_src_unpack |
|
|
722 | # to handle $PATCHES to avoid defining src_unpack just to use xpatch |
|
|
723 | |
|
|
724 | # accepts zero or more parameters specifying patchfiles and/or patchdirs |
|
|
725 | |
|
|
726 | # known issues: |
|
|
727 | # - only supports unified style patches (does anyone _really_ use anything |
|
|
728 | # else?) |
|
|
729 | # - because it doesn't use --dry-run there is a risk of it failing |
|
|
730 | # to find the files to patch, ie detect the patchlevel, properly. It doesn't use |
|
|
731 | # any of the backup heuristics that patch employs to discover a filename. |
|
|
732 | # however, this isn't dangerous because if it works for the developer who's |
|
|
733 | # writing the ebuild, it'll always work for the users, and if it doesn't, |
|
|
734 | # then we'll fix it :-) |
|
|
735 | # - no support as yet for patches applying outside $S (and not directly in $WORKDIR). |
|
|
736 | xpatch() { |
|
|
737 | |
|
|
738 | debug-print-function $FUNCNAME $* |
|
|
739 | |
|
|
740 | local list="" |
|
|
741 | local list2="" |
|
|
742 | declare -i plevel |
|
|
743 | |
|
|
744 | # parse patch sources |
|
|
745 | for x in $*; do |
|
|
746 | debug-print "$FUNCNAME: parsing parameter $x" |
|
|
747 | if [ -f "$x" ]; then |
|
|
748 | list="$list $x" |
|
|
749 | elif [ -d "$x" ]; then |
|
|
750 | # handles patchdirs like epatch() for now: no recursion. |
|
|
751 | # patches are sorted by filename, so with an xy_foo naming scheme you'll get the right order. |
|
|
752 | # only patches with _$ARCH_ or _all_ in their filenames are applied. |
|
|
753 | for file in `ls -A $x`; do |
|
|
754 | debug-print "$FUNCNAME: parsing in subdir: file $file" |
|
|
755 | if [ -f "$x/$file" ] && [ "${file}" != "${file/_all_}" -o "${file}" != "${file/_$ARCH_}" ]; then |
|
|
756 | list2="$list2 $x/$file" |
|
|
757 | fi |
|
|
758 | done |
1033 | done |
759 | list="`echo $list2 | sort` $list" |
1034 | fi |
|
|
1035 | echo "" |
|
|
1036 | else |
|
|
1037 | einfo "Passing desktop entry validity check. Install dev-util/desktop-file-utils, if you want to help to improve Gentoo." |
|
|
1038 | fi |
|
|
1039 | } |
|
|
1040 | |
|
|
1041 | # @FUNCTION: make_session_desktop |
|
|
1042 | # @USAGE: <title> <command> [command args...] |
|
|
1043 | # @DESCRIPTION: |
|
|
1044 | # Make a GDM/KDM Session file. The title is the file to execute to start the |
|
|
1045 | # Window Manager. The command is the name of the Window Manager. |
|
|
1046 | # |
|
|
1047 | # You can set the name of the file via the ${wm} variable. |
|
|
1048 | make_session_desktop() { |
|
|
1049 | [[ -z $1 ]] && eerror "$0: You must specify the title" && return 1 |
|
|
1050 | [[ -z $2 ]] && eerror "$0: You must specify the command" && return 1 |
|
|
1051 | |
|
|
1052 | local title=$1 |
|
|
1053 | local command=$2 |
|
|
1054 | local desktop=${T}/${wm:-${PN}}.desktop |
|
|
1055 | shift 2 |
|
|
1056 | |
|
|
1057 | cat <<-EOF > "${desktop}" |
|
|
1058 | [Desktop Entry] |
|
|
1059 | Name=${title} |
|
|
1060 | Comment=This session logs you into ${title} |
|
|
1061 | Exec=${command} $* |
|
|
1062 | TryExec=${command} |
|
|
1063 | Type=XSession |
|
|
1064 | EOF |
|
|
1065 | |
|
|
1066 | ( |
|
|
1067 | # wrap the env here so that the 'insinto' call |
|
|
1068 | # doesn't corrupt the env of the caller |
|
|
1069 | insinto /usr/share/xsessions |
|
|
1070 | doins "${desktop}" |
|
|
1071 | ) |
|
|
1072 | } |
|
|
1073 | |
|
|
1074 | # @FUNCTION: domenu |
|
|
1075 | # @USAGE: <menus> |
|
|
1076 | # @DESCRIPTION: |
|
|
1077 | # Install the list of .desktop menu files into the appropriate directory |
|
|
1078 | # (/usr/share/applications). |
|
|
1079 | domenu() { |
|
|
1080 | ( |
|
|
1081 | # wrap the env here so that the 'insinto' call |
|
|
1082 | # doesn't corrupt the env of the caller |
|
|
1083 | local i j ret=0 |
|
|
1084 | insinto /usr/share/applications |
|
|
1085 | for i in "$@" ; do |
|
|
1086 | if [[ -f ${i} ]] ; then |
|
|
1087 | doins "${i}" |
|
|
1088 | ((ret+=$?)) |
|
|
1089 | elif [[ -d ${i} ]] ; then |
|
|
1090 | for j in "${i}"/*.desktop ; do |
|
|
1091 | doins "${j}" |
|
|
1092 | ((ret+=$?)) |
|
|
1093 | done |
760 | else |
1094 | else |
761 | die "Couldn't find $x" |
1095 | ((++ret)) |
762 | fi |
1096 | fi |
763 | done |
1097 | done |
|
|
1098 | exit ${ret} |
|
|
1099 | ) |
|
|
1100 | } |
764 | |
1101 | |
765 | debug-print "$FUNCNAME: final list of patches: $list" |
1102 | # @FUNCTION: newmenu |
|
|
1103 | # @USAGE: <menu> <newname> |
|
|
1104 | # @DESCRIPTION: |
|
|
1105 | # Like all other new* functions, install the specified menu as newname. |
|
|
1106 | newmenu() { |
|
|
1107 | ( |
|
|
1108 | # wrap the env here so that the 'insinto' call |
|
|
1109 | # doesn't corrupt the env of the caller |
|
|
1110 | insinto /usr/share/applications |
|
|
1111 | newins "$@" |
|
|
1112 | ) |
|
|
1113 | } |
766 | |
1114 | |
767 | for x in $list; do |
1115 | # @FUNCTION: doicon |
768 | debug-print "$FUNCNAME: processing $x" |
1116 | # @USAGE: <list of icons> |
769 | # deal with compressed files. /usr/bin/file is in the system profile, or should be. |
1117 | # @DESCRIPTION: |
770 | case "`/usr/bin/file -b $x`" in |
1118 | # Install the list of icons into the icon directory (/usr/share/pixmaps). |
771 | *gzip*) patchfile="${T}/current.patch"; ungzip -c "$x" > "${patchfile}";; |
1119 | # This is useful in conjunction with creating desktop/menu files. |
772 | *bzip2*) patchfile="${T}/current.patch"; bunzip2 -c "$x" > "${patchfile}";; |
1120 | doicon() { |
773 | *text*) patchfile="$x";; |
1121 | ( |
774 | *) die "Could not determine filetype of patch $x";; |
1122 | # wrap the env here so that the 'insinto' call |
775 | esac |
1123 | # doesn't corrupt the env of the caller |
776 | debug-print "$FUNCNAME: patchfile=$patchfile" |
1124 | local i j ret |
777 | |
1125 | insinto /usr/share/pixmaps |
778 | # determine patchlevel. supports p0 and higher with either $S or $WORKDIR as base. |
1126 | for i in "$@" ; do |
779 | target="`/bin/grep -m 1 '^+++ ' $patchfile`" |
1127 | if [[ -f ${i} ]] ; then |
780 | debug-print "$FUNCNAME: raw target=$target" |
1128 | doins "${i}" |
781 | # strip target down to the path/filename, remove leading +++ |
1129 | ((ret+=$?)) |
782 | target="${target/+++ }"; target="${target%% *}" |
1130 | elif [[ -d ${i} ]] ; then |
783 | # duplicate slashes are discarded by patch wrt the patchlevel. therefore we need |
1131 | for j in "${i}"/*.png ; do |
784 | # to discard them as well to calculate the correct patchlevel. |
1132 | doins "${j}" |
785 | target="${target//\/\//\/}" |
1133 | ((ret+=$?)) |
786 | debug-print "$FUNCNAME: stripped target=$target" |
|
|
787 | |
|
|
788 | # look for target |
|
|
789 | for basedir in "$S" "$WORKDIR" "${PWD}"; do |
|
|
790 | debug-print "$FUNCNAME: looking in basedir=$basedir" |
|
|
791 | cd "$basedir" |
|
|
792 | |
|
|
793 | # try stripping leading directories |
|
|
794 | target2="$target" |
|
|
795 | plevel=0 |
|
|
796 | debug-print "$FUNCNAME: trying target2=$target2, plevel=$plevel" |
|
|
797 | while [ ! -f "$target2" ]; do |
|
|
798 | target2="${target2#*/}" # removes piece of target2 upto the first occurence of / |
|
|
799 | plevel=plevel+1 |
|
|
800 | debug-print "$FUNCNAME: trying target2=$target2, plevel=$plevel" |
|
|
801 | [ "$target2" == "${target2/\/}" ] && break |
|
|
802 | done |
1134 | done |
803 | test -f "$target2" && break |
1135 | else |
804 | |
1136 | ((++ret)) |
805 | # try stripping filename - needed to support patches creating new files |
1137 | fi |
806 | target2="${target%/*}" |
|
|
807 | plevel=0 |
|
|
808 | debug-print "$FUNCNAME: trying target2=$target2, plevel=$plevel" |
|
|
809 | while [ ! -d "$target2" ]; do |
|
|
810 | target2="${target2#*/}" # removes piece of target2 upto the first occurence of / |
|
|
811 | plevel=plevel+1 |
|
|
812 | debug-print "$FUNCNAME: trying target2=$target2, plevel=$plevel" |
|
|
813 | [ "$target2" == "${target2/\/}" ] && break |
|
|
814 | done |
|
|
815 | test -d "$target2" && break |
|
|
816 | |
|
|
817 | done |
|
|
818 | |
|
|
819 | test -f "${basedir}/${target2}" || test -d "${basedir}/${target2}" || die "Could not determine patchlevel for $x" |
|
|
820 | debug-print "$FUNCNAME: determined plevel=$plevel" |
|
|
821 | # do the patching |
|
|
822 | ebegin "Applying patch ${x##*/}..." |
|
|
823 | /usr/bin/patch -p$plevel < "$patchfile" > /dev/null || die "Failed to apply patch $x" |
|
|
824 | eend $? |
|
|
825 | |
|
|
826 | done |
1138 | done |
827 | |
1139 | exit ${ret} |
|
|
1140 | ) |
828 | } |
1141 | } |
829 | |
1142 | |
|
|
1143 | # @FUNCTION: newicon |
|
|
1144 | # @USAGE: <icon> <newname> |
|
|
1145 | # @DESCRIPTION: |
|
|
1146 | # Like all other new* functions, install the specified icon as newname. |
|
|
1147 | newicon() { |
|
|
1148 | ( |
|
|
1149 | # wrap the env here so that the 'insinto' call |
|
|
1150 | # doesn't corrupt the env of the caller |
|
|
1151 | insinto /usr/share/pixmaps |
|
|
1152 | newins "$@" |
|
|
1153 | ) |
|
|
1154 | } |
|
|
1155 | |
|
|
1156 | # for internal use only (unpack_pdv and unpack_makeself) |
|
|
1157 | find_unpackable_file() { |
|
|
1158 | local src=$1 |
|
|
1159 | if [[ -z ${src} ]] ; then |
|
|
1160 | src=${DISTDIR}/${A} |
|
|
1161 | else |
|
|
1162 | if [[ -e ${DISTDIR}/${src} ]] ; then |
|
|
1163 | src=${DISTDIR}/${src} |
|
|
1164 | elif [[ -e ${PWD}/${src} ]] ; then |
|
|
1165 | src=${PWD}/${src} |
|
|
1166 | elif [[ -e ${src} ]] ; then |
|
|
1167 | src=${src} |
|
|
1168 | fi |
|
|
1169 | fi |
|
|
1170 | [[ ! -e ${src} ]] && return 1 |
|
|
1171 | echo "${src}" |
|
|
1172 | } |
|
|
1173 | |
|
|
1174 | # @FUNCTION: unpack_pdv |
|
|
1175 | # @USAGE: <file to unpack> <size of off_t> |
|
|
1176 | # @DESCRIPTION: |
|
|
1177 | # Unpack those pesky pdv generated files ... |
|
|
1178 | # They're self-unpacking programs with the binary package stuffed in |
|
|
1179 | # the middle of the archive. Valve seems to use it a lot ... too bad |
|
|
1180 | # it seems to like to segfault a lot :(. So lets take it apart ourselves. |
|
|
1181 | # |
|
|
1182 | # You have to specify the off_t size ... I have no idea how to extract that |
|
|
1183 | # information out of the binary executable myself. Basically you pass in |
|
|
1184 | # the size of the off_t type (in bytes) on the machine that built the pdv |
|
|
1185 | # archive. |
|
|
1186 | # |
|
|
1187 | # One way to determine this is by running the following commands: |
|
|
1188 | # |
|
|
1189 | # @CODE |
|
|
1190 | # strings <pdv archive> | grep lseek |
|
|
1191 | # strace -elseek <pdv archive> |
|
|
1192 | # @CODE |
|
|
1193 | # |
|
|
1194 | # Basically look for the first lseek command (we do the strings/grep because |
|
|
1195 | # sometimes the function call is _llseek or something) and steal the 2nd |
|
|
1196 | # parameter. Here is an example: |
|
|
1197 | # |
|
|
1198 | # @CODE |
|
|
1199 | # vapier@vapier 0 pdv_unpack # strings hldsupdatetool.bin | grep lseek |
|
|
1200 | # lseek |
|
|
1201 | # vapier@vapier 0 pdv_unpack # strace -elseek ./hldsupdatetool.bin |
|
|
1202 | # lseek(3, -4, SEEK_END) = 2981250 |
|
|
1203 | # @CODE |
|
|
1204 | # |
|
|
1205 | # Thus we would pass in the value of '4' as the second parameter. |
|
|
1206 | unpack_pdv() { |
|
|
1207 | local src=$(find_unpackable_file "$1") |
|
|
1208 | local sizeoff_t=$2 |
|
|
1209 | |
|
|
1210 | [[ -z ${src} ]] && die "Could not locate source for '$1'" |
|
|
1211 | [[ -z ${sizeoff_t} ]] && die "No idea what off_t size was used for this pdv :(" |
|
|
1212 | |
|
|
1213 | local shrtsrc=$(basename "${src}") |
|
|
1214 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
|
|
1215 | local metaskip=$(tail -c ${sizeoff_t} "${src}" | hexdump -e \"%i\") |
|
|
1216 | local tailskip=$(tail -c $((${sizeoff_t}*2)) "${src}" | head -c ${sizeoff_t} | hexdump -e \"%i\") |
|
|
1217 | |
|
|
1218 | # grab metadata for debug reasons |
|
|
1219 | local metafile=$(emktemp) |
|
|
1220 | tail -c +$((${metaskip}+1)) "${src}" > "${metafile}" |
|
|
1221 | |
|
|
1222 | # rip out the final file name from the metadata |
|
|
1223 | local datafile=$(tail -c +$((${metaskip}+1)) "${src}" | strings | head -n 1) |
|
|
1224 | datafile=$(basename "${datafile}") |
|
|
1225 | |
|
|
1226 | # now lets uncompress/untar the file if need be |
|
|
1227 | local tmpfile=$(emktemp) |
|
|
1228 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null | head -c 512 > ${tmpfile} |
|
|
1229 | |
|
|
1230 | local iscompressed=$(file -b "${tmpfile}") |
|
|
1231 | if [[ ${iscompressed:0:8} == "compress" ]] ; then |
|
|
1232 | iscompressed=1 |
|
|
1233 | mv ${tmpfile}{,.Z} |
|
|
1234 | gunzip ${tmpfile} |
|
|
1235 | else |
|
|
1236 | iscompressed=0 |
|
|
1237 | fi |
|
|
1238 | local istar=$(file -b "${tmpfile}") |
|
|
1239 | if [[ ${istar:0:9} == "POSIX tar" ]] ; then |
|
|
1240 | istar=1 |
|
|
1241 | else |
|
|
1242 | istar=0 |
|
|
1243 | fi |
|
|
1244 | |
|
|
1245 | #for some reason gzip dies with this ... dd cant provide buffer fast enough ? |
|
|
1246 | #dd if=${src} ibs=${metaskip} count=1 \ |
|
|
1247 | # | dd ibs=${tailskip} skip=1 \ |
|
|
1248 | # | gzip -dc \ |
|
|
1249 | # > ${datafile} |
|
|
1250 | if [ ${iscompressed} -eq 1 ] ; then |
|
|
1251 | if [ ${istar} -eq 1 ] ; then |
|
|
1252 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null \ |
|
|
1253 | | head -c $((${metaskip}-${tailskip})) \ |
|
|
1254 | | tar -xzf - |
|
|
1255 | else |
|
|
1256 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null \ |
|
|
1257 | | head -c $((${metaskip}-${tailskip})) \ |
|
|
1258 | | gzip -dc \ |
|
|
1259 | > ${datafile} |
|
|
1260 | fi |
|
|
1261 | else |
|
|
1262 | if [ ${istar} -eq 1 ] ; then |
|
|
1263 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null \ |
|
|
1264 | | head -c $((${metaskip}-${tailskip})) \ |
|
|
1265 | | tar --no-same-owner -xf - |
|
|
1266 | else |
|
|
1267 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null \ |
|
|
1268 | | head -c $((${metaskip}-${tailskip})) \ |
|
|
1269 | > ${datafile} |
|
|
1270 | fi |
|
|
1271 | fi |
|
|
1272 | true |
|
|
1273 | #[ -s "${datafile}" ] || die "failure unpacking pdv ('${metaskip}' '${tailskip}' '${datafile}')" |
|
|
1274 | #assert "failure unpacking pdv ('${metaskip}' '${tailskip}' '${datafile}')" |
|
|
1275 | } |
|
|
1276 | |
|
|
1277 | # @FUNCTION: unpack_makeself |
|
|
1278 | # @USAGE: [file to unpack] [offset] [tail|dd] |
|
|
1279 | # @DESCRIPTION: |
830 | # Unpack those pesky makeself generated files ... |
1280 | # Unpack those pesky makeself generated files ... |
831 | # They're shell scripts with the binary package tagged onto |
1281 | # They're shell scripts with the binary package tagged onto |
832 | # the end of the archive. Loki utilized the format as does |
1282 | # the end of the archive. Loki utilized the format as does |
833 | # many other game companies. |
1283 | # many other game companies. |
834 | # |
1284 | # |
835 | # Usage: unpack_makeself [file to unpack] [offset] |
1285 | # If the file is not specified, then ${A} is used. If the |
836 | # - If the file is not specified then unpack will utilize ${A}. |
|
|
837 | # - If the offset is not specified then we will attempt to extract |
1286 | # offset is not specified then we will attempt to extract |
838 | # the proper offset from the script itself. |
1287 | # the proper offset from the script itself. |
839 | unpack_makeself() { |
1288 | unpack_makeself() { |
840 | local src=$1 |
1289 | local src_input=${1:-${A}} |
|
|
1290 | local src=$(find_unpackable_file "${src_input}") |
841 | local skip=$2 |
1291 | local skip=$2 |
|
|
1292 | local exe=$3 |
842 | |
1293 | |
843 | [ -z "${src}" ] && src=${A} |
1294 | [[ -z ${src} ]] && die "Could not locate source for '${src_input}'" |
844 | [ -e ./${src} ] \ |
1295 | |
845 | && src=${PWD}/${src} \ |
|
|
846 | || src=${DISTDIR}/${src} |
|
|
847 | local shrtsrc=`basename ${src}` |
1296 | local shrtsrc=$(basename "${src}") |
848 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
1297 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
849 | if [ -z "${skip}" ] ; then |
1298 | if [[ -z ${skip} ]] ; then |
850 | local ver="`grep -a '#.*Makeself' ${src} | awk '{print $NF}'`" |
1299 | local ver=$(grep -a '#.*Makeself' "${src}" | awk '{print $NF}') |
851 | local skip=0 |
1300 | local skip=0 |
|
|
1301 | exe=tail |
852 | case ${ver} in |
1302 | case ${ver} in |
853 | 1.5.*) # tested 1.5.{3,4,5} ... guessing 1.5.x series is same |
1303 | 1.5.*|1.6.0-nv) # tested 1.5.{3,4,5} ... guessing 1.5.x series is same |
854 | skip=`grep -a ^skip= ${src} | cut -d= -f2` |
1304 | skip=$(grep -a ^skip= "${src}" | cut -d= -f2) |
855 | ;; |
1305 | ;; |
856 | 2.0|2.0.1) |
1306 | 2.0|2.0.1) |
857 | skip=`grep -a ^$'\t'tail ${src} | awk '{print $2}' | cut -b2-` |
1307 | skip=$(grep -a ^$'\t'tail "${src}" | awk '{print $2}' | cut -b2-) |
858 | ;; |
1308 | ;; |
859 | 2.1.1) |
1309 | 2.1.1) |
860 | skip=`grep -a ^offset= ${src} | awk '{print $2}' | cut -b2-` |
1310 | skip=$(grep -a ^offset= "${src}" | awk '{print $2}' | cut -b2-) |
861 | let skip="skip + 1" |
1311 | let skip="skip + 1" |
|
|
1312 | ;; |
|
|
1313 | 2.1.2) |
|
|
1314 | skip=$(grep -a ^offset= "${src}" | awk '{print $3}' | head -n 1) |
|
|
1315 | let skip="skip + 1" |
|
|
1316 | ;; |
|
|
1317 | 2.1.3) |
|
|
1318 | skip=`grep -a ^offset= "${src}" | awk '{print $3}'` |
|
|
1319 | let skip="skip + 1" |
|
|
1320 | ;; |
|
|
1321 | 2.1.4|2.1.5) |
|
|
1322 | skip=$(grep -a offset=.*head.*wc "${src}" | awk '{print $3}' | head -n 1) |
|
|
1323 | skip=$(head -n ${skip} "${src}" | wc -c) |
|
|
1324 | exe="dd" |
862 | ;; |
1325 | ;; |
863 | *) |
1326 | *) |
864 | eerror "I'm sorry, but I was unable to support the Makeself file." |
1327 | eerror "I'm sorry, but I was unable to support the Makeself file." |
865 | eerror "The version I detected was '${ver}'." |
1328 | eerror "The version I detected was '${ver}'." |
866 | eerror "Please file a bug about the file ${shrtsrc} at" |
1329 | eerror "Please file a bug about the file ${shrtsrc} at" |
… | |
… | |
868 | die "makeself version '${ver}' not supported" |
1331 | die "makeself version '${ver}' not supported" |
869 | ;; |
1332 | ;; |
870 | esac |
1333 | esac |
871 | debug-print "Detected Makeself version ${ver} ... using ${skip} as offset" |
1334 | debug-print "Detected Makeself version ${ver} ... using ${skip} as offset" |
872 | fi |
1335 | fi |
|
|
1336 | case ${exe} in |
|
|
1337 | tail) exe="tail -n +${skip} '${src}'";; |
|
|
1338 | dd) exe="dd ibs=${skip} skip=1 obs=1024 conv=sync if='${src}'";; |
|
|
1339 | *) die "makeself cant handle exe '${exe}'" |
|
|
1340 | esac |
873 | |
1341 | |
874 | # we do this because otherwise a failure in gzip will cause 0 bytes to be sent |
1342 | # lets grab the first few bytes of the file to figure out what kind of archive it is |
875 | # to tar which will make tar not extract anything and exit with 0 |
1343 | local tmpfile=$(emktemp) |
876 | local out="`tail +${skip} ${src} | gzip -cd | tar -x --no-same-owner -v -f -`" |
1344 | eval ${exe} 2>/dev/null | head -c 512 > "${tmpfile}" |
|
|
1345 | local filetype=$(file -b "${tmpfile}") |
|
|
1346 | case ${filetype} in |
|
|
1347 | *tar\ archive*) |
|
|
1348 | eval ${exe} | tar --no-same-owner -xf - |
|
|
1349 | ;; |
|
|
1350 | bzip2*) |
|
|
1351 | eval ${exe} | bzip2 -dc | tar --no-same-owner -xf - |
|
|
1352 | ;; |
|
|
1353 | gzip*) |
|
|
1354 | eval ${exe} | tar --no-same-owner -xzf - |
|
|
1355 | ;; |
|
|
1356 | compress*) |
|
|
1357 | eval ${exe} | gunzip | tar --no-same-owner -xf - |
|
|
1358 | ;; |
|
|
1359 | *) |
|
|
1360 | eerror "Unknown filetype \"${filetype}\" ?" |
|
|
1361 | false |
|
|
1362 | ;; |
|
|
1363 | esac |
877 | [ -z "${out}" ] && die "failure unpacking makeself ${shrtsrc} ('${ver}' +${skip})" |
1364 | assert "failure unpacking (${filetype}) makeself ${shrtsrc} ('${ver}' +${skip})" |
878 | } |
1365 | } |
|
|
1366 | |
|
|
1367 | # @FUNCTION: check_license |
|
|
1368 | # @USAGE: [license] |
|
|
1369 | # @DESCRIPTION: |
|
|
1370 | # Display a license for user to accept. If no license is |
|
|
1371 | # specified, then ${LICENSE} is used. |
|
|
1372 | check_license() { |
|
|
1373 | local lic=$1 |
|
|
1374 | if [ -z "${lic}" ] ; then |
|
|
1375 | lic="${PORTDIR}/licenses/${LICENSE}" |
|
|
1376 | else |
|
|
1377 | if [ -e "${PORTDIR}/licenses/${lic}" ] ; then |
|
|
1378 | lic="${PORTDIR}/licenses/${lic}" |
|
|
1379 | elif [ -e "${PWD}/${lic}" ] ; then |
|
|
1380 | lic="${PWD}/${lic}" |
|
|
1381 | elif [ -e "${lic}" ] ; then |
|
|
1382 | lic="${lic}" |
|
|
1383 | fi |
|
|
1384 | fi |
|
|
1385 | [ ! -f "${lic}" ] && die "Could not find requested license ${lic}" |
|
|
1386 | local l="`basename ${lic}`" |
|
|
1387 | |
|
|
1388 | # here is where we check for the licenses the user already |
|
|
1389 | # accepted ... if we don't find a match, we make the user accept |
|
|
1390 | local alic |
|
|
1391 | eshopts_push -o noglob # so that bash doesn't expand "*" |
|
|
1392 | for alic in ${ACCEPT_LICENSE} ; do |
|
|
1393 | if [[ ${alic} == ${l} ]]; then |
|
|
1394 | eshopts_pop |
|
|
1395 | return 0 |
|
|
1396 | fi |
|
|
1397 | done |
|
|
1398 | eshopts_pop |
|
|
1399 | |
|
|
1400 | local licmsg=$(emktemp) |
|
|
1401 | cat <<-EOF > ${licmsg} |
|
|
1402 | ********************************************************** |
|
|
1403 | The following license outlines the terms of use of this |
|
|
1404 | package. You MUST accept this license for installation to |
|
|
1405 | continue. When you are done viewing, hit 'q'. If you |
|
|
1406 | CTRL+C out of this, the install will not run! |
|
|
1407 | ********************************************************** |
|
|
1408 | |
|
|
1409 | EOF |
|
|
1410 | cat ${lic} >> ${licmsg} |
|
|
1411 | ${PAGER:-less} ${licmsg} || die "Could not execute pager (${PAGER}) to accept ${lic}" |
|
|
1412 | einfon "Do you accept the terms of this license (${l})? [yes/no] " |
|
|
1413 | read alic |
|
|
1414 | case ${alic} in |
|
|
1415 | yes|Yes|y|Y) |
|
|
1416 | return 0 |
|
|
1417 | ;; |
|
|
1418 | *) |
|
|
1419 | echo;echo;echo |
|
|
1420 | eerror "You MUST accept the license to continue! Exiting!" |
|
|
1421 | die "Failed to accept license" |
|
|
1422 | ;; |
|
|
1423 | esac |
|
|
1424 | } |
|
|
1425 | |
|
|
1426 | # @FUNCTION: cdrom_get_cds |
|
|
1427 | # @USAGE: <file on cd1> [file on cd2] [file on cd3] [...] |
|
|
1428 | # @DESCRIPTION: |
|
|
1429 | # Aquire cd(s) for those lovely cd-based emerges. Yes, this violates |
|
|
1430 | # the whole 'non-interactive' policy, but damnit I want CD support ! |
|
|
1431 | # |
|
|
1432 | # With these cdrom functions we handle all the user interaction and |
|
|
1433 | # standardize everything. All you have to do is call cdrom_get_cds() |
|
|
1434 | # and when the function returns, you can assume that the cd has been |
|
|
1435 | # found at CDROM_ROOT. |
|
|
1436 | # |
|
|
1437 | # The function will attempt to locate a cd based upon a file that is on |
|
|
1438 | # the cd. The more files you give this function, the more cds |
|
|
1439 | # the cdrom functions will handle. |
|
|
1440 | # |
|
|
1441 | # Normally the cdrom functions will refer to the cds as 'cd #1', 'cd #2', |
|
|
1442 | # etc... If you want to give the cds better names, then just export |
|
|
1443 | # the appropriate CDROM_NAME variable before calling cdrom_get_cds(). |
|
|
1444 | # Use CDROM_NAME for one cd, or CDROM_NAME_# for multiple cds. You can |
|
|
1445 | # also use the CDROM_NAME_SET bash array. |
|
|
1446 | # |
|
|
1447 | # For those multi cd ebuilds, see the cdrom_load_next_cd() function. |
|
|
1448 | cdrom_get_cds() { |
|
|
1449 | # first we figure out how many cds we're dealing with by |
|
|
1450 | # the # of files they gave us |
|
|
1451 | local cdcnt=0 |
|
|
1452 | local f= |
|
|
1453 | for f in "$@" ; do |
|
|
1454 | ((++cdcnt)) |
|
|
1455 | export CDROM_CHECK_${cdcnt}="$f" |
|
|
1456 | done |
|
|
1457 | export CDROM_TOTAL_CDS=${cdcnt} |
|
|
1458 | export CDROM_CURRENT_CD=1 |
|
|
1459 | |
|
|
1460 | # now we see if the user gave use CD_ROOT ... |
|
|
1461 | # if they did, let's just believe them that it's correct |
|
|
1462 | if [[ -n ${CD_ROOT}${CD_ROOT_1} ]] ; then |
|
|
1463 | local var= |
|
|
1464 | cdcnt=0 |
|
|
1465 | while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
|
|
1466 | ((++cdcnt)) |
|
|
1467 | var="CD_ROOT_${cdcnt}" |
|
|
1468 | [[ -z ${!var} ]] && var="CD_ROOT" |
|
|
1469 | if [[ -z ${!var} ]] ; then |
|
|
1470 | eerror "You must either use just the CD_ROOT" |
|
|
1471 | eerror "or specify ALL the CD_ROOT_X variables." |
|
|
1472 | eerror "In this case, you will need ${CDROM_TOTAL_CDS} CD_ROOT_X variables." |
|
|
1473 | die "could not locate CD_ROOT_${cdcnt}" |
|
|
1474 | fi |
|
|
1475 | done |
|
|
1476 | export CDROM_ROOT=${CD_ROOT_1:-${CD_ROOT}} |
|
|
1477 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
|
|
1478 | export CDROM_SET=-1 |
|
|
1479 | for f in ${CDROM_CHECK_1//:/ } ; do |
|
|
1480 | ((++CDROM_SET)) |
|
|
1481 | [[ -e ${CD_ROOT}/${f} ]] && break |
|
|
1482 | done |
|
|
1483 | export CDROM_MATCH=${f} |
|
|
1484 | return |
|
|
1485 | fi |
|
|
1486 | |
|
|
1487 | # User didn't help us out so lets make sure they know they can |
|
|
1488 | # simplify the whole process ... |
|
|
1489 | if [[ ${CDROM_TOTAL_CDS} -eq 1 ]] ; then |
|
|
1490 | einfo "This ebuild will need the ${CDROM_NAME:-cdrom for ${PN}}" |
|
|
1491 | echo |
|
|
1492 | einfo "If you do not have the CD, but have the data files" |
|
|
1493 | einfo "mounted somewhere on your filesystem, just export" |
|
|
1494 | einfo "the variable CD_ROOT so that it points to the" |
|
|
1495 | einfo "directory containing the files." |
|
|
1496 | echo |
|
|
1497 | einfo "For example:" |
|
|
1498 | einfo "export CD_ROOT=/mnt/cdrom" |
|
|
1499 | echo |
|
|
1500 | else |
|
|
1501 | if [[ -n ${CDROM_NAME_SET} ]] ; then |
|
|
1502 | # Translate the CDROM_NAME_SET array into CDROM_NAME_# |
|
|
1503 | cdcnt=0 |
|
|
1504 | while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
|
|
1505 | ((++cdcnt)) |
|
|
1506 | export CDROM_NAME_${cdcnt}="${CDROM_NAME_SET[$((${cdcnt}-1))]}" |
|
|
1507 | done |
|
|
1508 | fi |
|
|
1509 | |
|
|
1510 | einfo "This package will need access to ${CDROM_TOTAL_CDS} cds." |
|
|
1511 | cdcnt=0 |
|
|
1512 | while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
|
|
1513 | ((++cdcnt)) |
|
|
1514 | var="CDROM_NAME_${cdcnt}" |
|
|
1515 | [[ ! -z ${!var} ]] && einfo " CD ${cdcnt}: ${!var}" |
|
|
1516 | done |
|
|
1517 | echo |
|
|
1518 | einfo "If you do not have the CDs, but have the data files" |
|
|
1519 | einfo "mounted somewhere on your filesystem, just export" |
|
|
1520 | einfo "the following variables so they point to the right place:" |
|
|
1521 | einfon "" |
|
|
1522 | cdcnt=0 |
|
|
1523 | while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
|
|
1524 | ((++cdcnt)) |
|
|
1525 | echo -n " CD_ROOT_${cdcnt}" |
|
|
1526 | done |
|
|
1527 | echo |
|
|
1528 | einfo "Or, if you have all the files in the same place, or" |
|
|
1529 | einfo "you only have one cdrom, you can export CD_ROOT" |
|
|
1530 | einfo "and that place will be used as the same data source" |
|
|
1531 | einfo "for all the CDs." |
|
|
1532 | echo |
|
|
1533 | einfo "For example:" |
|
|
1534 | einfo "export CD_ROOT_1=/mnt/cdrom" |
|
|
1535 | echo |
|
|
1536 | fi |
|
|
1537 | |
|
|
1538 | export CDROM_SET="" |
|
|
1539 | export CDROM_CURRENT_CD=0 |
|
|
1540 | cdrom_load_next_cd |
|
|
1541 | } |
|
|
1542 | |
|
|
1543 | # @FUNCTION: cdrom_load_next_cd |
|
|
1544 | # @DESCRIPTION: |
|
|
1545 | # Some packages are so big they come on multiple CDs. When you're done reading |
|
|
1546 | # files off a CD and want access to the next one, just call this function. |
|
|
1547 | # Again, all the messy details of user interaction are taken care of for you. |
|
|
1548 | # Once this returns, just read the variable CDROM_ROOT for the location of the |
|
|
1549 | # mounted CD. Note that you can only go forward in the CD list, so make sure |
|
|
1550 | # you only call this function when you're done using the current CD. |
|
|
1551 | cdrom_load_next_cd() { |
|
|
1552 | local var |
|
|
1553 | ((++CDROM_CURRENT_CD)) |
|
|
1554 | |
|
|
1555 | unset CDROM_ROOT |
|
|
1556 | var=CD_ROOT_${CDROM_CURRENT_CD} |
|
|
1557 | [[ -z ${!var} ]] && var="CD_ROOT" |
|
|
1558 | if [[ -z ${!var} ]] ; then |
|
|
1559 | var="CDROM_CHECK_${CDROM_CURRENT_CD}" |
|
|
1560 | _cdrom_locate_file_on_cd ${!var} |
|
|
1561 | else |
|
|
1562 | export CDROM_ROOT=${!var} |
|
|
1563 | fi |
|
|
1564 | |
|
|
1565 | einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
|
|
1566 | } |
|
|
1567 | |
|
|
1568 | # this is used internally by the cdrom_get_cds() and cdrom_load_next_cd() |
|
|
1569 | # functions. this should *never* be called from an ebuild. |
|
|
1570 | # all it does is try to locate a give file on a cd ... if the cd isn't |
|
|
1571 | # found, then a message asking for the user to insert the cdrom will be |
|
|
1572 | # displayed and we'll hang out here until: |
|
|
1573 | # (1) the file is found on a mounted cdrom |
|
|
1574 | # (2) the user hits CTRL+C |
|
|
1575 | _cdrom_locate_file_on_cd() { |
|
|
1576 | local mline="" |
|
|
1577 | local showedmsg=0 showjolietmsg=0 |
|
|
1578 | |
|
|
1579 | while [[ -z ${CDROM_ROOT} ]] ; do |
|
|
1580 | local i=0 |
|
|
1581 | local -a cdset=(${*//:/ }) |
|
|
1582 | if [[ -n ${CDROM_SET} ]] ; then |
|
|
1583 | cdset=(${cdset[${CDROM_SET}]}) |
|
|
1584 | fi |
|
|
1585 | |
|
|
1586 | while [[ -n ${cdset[${i}]} ]] ; do |
|
|
1587 | local dir=$(dirname ${cdset[${i}]}) |
|
|
1588 | local file=$(basename ${cdset[${i}]}) |
|
|
1589 | |
|
|
1590 | local point= node= fs= foo= |
|
|
1591 | while read point node fs foo ; do |
|
|
1592 | [[ " cd9660 iso9660 udf " != *" ${fs} "* ]] && \ |
|
|
1593 | ! [[ ${fs} == "subfs" && ",${opts}," == *",fs=cdfss,"* ]] \ |
|
|
1594 | && continue |
|
|
1595 | point=${point//\040/ } |
|
|
1596 | [[ ! -d ${point}/${dir} ]] && continue |
|
|
1597 | [[ -z $(find "${point}/${dir}" -maxdepth 1 -iname "${file}") ]] && continue |
|
|
1598 | export CDROM_ROOT=${point} |
|
|
1599 | export CDROM_SET=${i} |
|
|
1600 | export CDROM_MATCH=${cdset[${i}]} |
|
|
1601 | return |
|
|
1602 | done <<< "$(get_mounts)" |
|
|
1603 | |
|
|
1604 | ((++i)) |
|
|
1605 | done |
|
|
1606 | |
|
|
1607 | echo |
|
|
1608 | if [[ ${showedmsg} -eq 0 ]] ; then |
|
|
1609 | if [[ ${CDROM_TOTAL_CDS} -eq 1 ]] ; then |
|
|
1610 | if [[ -z ${CDROM_NAME} ]] ; then |
|
|
1611 | einfo "Please insert+mount the cdrom for ${PN} now !" |
|
|
1612 | else |
|
|
1613 | einfo "Please insert+mount the ${CDROM_NAME} cdrom now !" |
|
|
1614 | fi |
|
|
1615 | else |
|
|
1616 | if [[ -z ${CDROM_NAME_1} ]] ; then |
|
|
1617 | einfo "Please insert+mount cd #${CDROM_CURRENT_CD} for ${PN} now !" |
|
|
1618 | else |
|
|
1619 | local var="CDROM_NAME_${CDROM_CURRENT_CD}" |
|
|
1620 | einfo "Please insert+mount the ${!var} cdrom now !" |
|
|
1621 | fi |
|
|
1622 | fi |
|
|
1623 | showedmsg=1 |
|
|
1624 | fi |
|
|
1625 | einfo "Press return to scan for the cd again" |
|
|
1626 | einfo "or hit CTRL+C to abort the emerge." |
|
|
1627 | echo |
|
|
1628 | if [[ ${showjolietmsg} -eq 0 ]] ; then |
|
|
1629 | showjolietmsg=1 |
|
|
1630 | else |
|
|
1631 | ewarn "If you are having trouble with the detection" |
|
|
1632 | ewarn "of your CD, it is possible that you do not have" |
|
|
1633 | ewarn "Joliet support enabled in your kernel. Please" |
|
|
1634 | ewarn "check that CONFIG_JOLIET is enabled in your kernel." |
|
|
1635 | ebeep 5 |
|
|
1636 | fi |
|
|
1637 | read || die "something is screwed with your system" |
|
|
1638 | done |
|
|
1639 | } |
|
|
1640 | |
|
|
1641 | # @FUNCTION: strip-linguas |
|
|
1642 | # @USAGE: [<allow LINGUAS>|<-i|-u> <directories of .po files>] |
|
|
1643 | # @DESCRIPTION: |
|
|
1644 | # Make sure that LINGUAS only contains languages that |
|
|
1645 | # a package can support. The first form allows you to |
|
|
1646 | # specify a list of LINGUAS. The -i builds a list of po |
|
|
1647 | # files found in all the directories and uses the |
|
|
1648 | # intersection of the lists. The -u builds a list of po |
|
|
1649 | # files found in all the directories and uses the union |
|
|
1650 | # of the lists. |
|
|
1651 | strip-linguas() { |
|
|
1652 | local ls newls nols |
|
|
1653 | if [[ $1 == "-i" ]] || [[ $1 == "-u" ]] ; then |
|
|
1654 | local op=$1; shift |
|
|
1655 | ls=$(find "$1" -name '*.po' -exec basename {} .po ';'); shift |
|
|
1656 | local d f |
|
|
1657 | for d in "$@" ; do |
|
|
1658 | if [[ ${op} == "-u" ]] ; then |
|
|
1659 | newls=${ls} |
|
|
1660 | else |
|
|
1661 | newls="" |
|
|
1662 | fi |
|
|
1663 | for f in $(find "$d" -name '*.po' -exec basename {} .po ';') ; do |
|
|
1664 | if [[ ${op} == "-i" ]] ; then |
|
|
1665 | hasq ${f} ${ls} && newls="${newls} ${f}" |
|
|
1666 | else |
|
|
1667 | hasq ${f} ${ls} || newls="${newls} ${f}" |
|
|
1668 | fi |
|
|
1669 | done |
|
|
1670 | ls=${newls} |
|
|
1671 | done |
|
|
1672 | else |
|
|
1673 | ls="$@" |
|
|
1674 | fi |
|
|
1675 | |
|
|
1676 | nols="" |
|
|
1677 | newls="" |
|
|
1678 | for f in ${LINGUAS} ; do |
|
|
1679 | if hasq ${f} ${ls} ; then |
|
|
1680 | newls="${newls} ${f}" |
|
|
1681 | else |
|
|
1682 | nols="${nols} ${f}" |
|
|
1683 | fi |
|
|
1684 | done |
|
|
1685 | [[ -n ${nols} ]] \ |
|
|
1686 | && ewarn "Sorry, but ${PN} does not support the LINGUAS:" ${nols} |
|
|
1687 | export LINGUAS=${newls:1} |
|
|
1688 | } |
|
|
1689 | |
|
|
1690 | # @FUNCTION: preserve_old_lib |
|
|
1691 | # @USAGE: <libs to preserve> [more libs] |
|
|
1692 | # @DESCRIPTION: |
|
|
1693 | # These functions are useful when a lib in your package changes ABI SONAME. |
|
|
1694 | # An example might be from libogg.so.0 to libogg.so.1. Removing libogg.so.0 |
|
|
1695 | # would break packages that link against it. Most people get around this |
|
|
1696 | # by using the portage SLOT mechanism, but that is not always a relevant |
|
|
1697 | # solution, so instead you can call this from pkg_preinst. See also the |
|
|
1698 | # preserve_old_lib_notify function. |
|
|
1699 | preserve_old_lib() { |
|
|
1700 | if [[ ${EBUILD_PHASE} != "preinst" ]] ; then |
|
|
1701 | eerror "preserve_old_lib() must be called from pkg_preinst() only" |
|
|
1702 | die "Invalid preserve_old_lib() usage" |
|
|
1703 | fi |
|
|
1704 | [[ -z $1 ]] && die "Usage: preserve_old_lib <library to preserve> [more libraries to preserve]" |
|
|
1705 | |
|
|
1706 | # let portage worry about it |
|
|
1707 | has preserve-libs ${FEATURES} && return 0 |
|
|
1708 | |
|
|
1709 | local lib dir |
|
|
1710 | for lib in "$@" ; do |
|
|
1711 | [[ -e ${ROOT}/${lib} ]] || continue |
|
|
1712 | dir=${lib%/*} |
|
|
1713 | dodir ${dir} || die "dodir ${dir} failed" |
|
|
1714 | cp "${ROOT}"/${lib} "${D}"/${lib} || die "cp ${lib} failed" |
|
|
1715 | touch "${D}"/${lib} |
|
|
1716 | done |
|
|
1717 | } |
|
|
1718 | |
|
|
1719 | # @FUNCTION: preserve_old_lib_notify |
|
|
1720 | # @USAGE: <libs to notify> [more libs] |
|
|
1721 | # @DESCRIPTION: |
|
|
1722 | # Spit helpful messages about the libraries preserved by preserve_old_lib. |
|
|
1723 | preserve_old_lib_notify() { |
|
|
1724 | if [[ ${EBUILD_PHASE} != "postinst" ]] ; then |
|
|
1725 | eerror "preserve_old_lib_notify() must be called from pkg_postinst() only" |
|
|
1726 | die "Invalid preserve_old_lib_notify() usage" |
|
|
1727 | fi |
|
|
1728 | |
|
|
1729 | # let portage worry about it |
|
|
1730 | has preserve-libs ${FEATURES} && return 0 |
|
|
1731 | |
|
|
1732 | local lib notice=0 |
|
|
1733 | for lib in "$@" ; do |
|
|
1734 | [[ -e ${ROOT}/${lib} ]] || continue |
|
|
1735 | if [[ ${notice} -eq 0 ]] ; then |
|
|
1736 | notice=1 |
|
|
1737 | ewarn "Old versions of installed libraries were detected on your system." |
|
|
1738 | ewarn "In order to avoid breaking packages that depend on these old libs," |
|
|
1739 | ewarn "the libraries are not being removed. You need to run revdep-rebuild" |
|
|
1740 | ewarn "in order to remove these old dependencies. If you do not have this" |
|
|
1741 | ewarn "helper program, simply emerge the 'gentoolkit' package." |
|
|
1742 | ewarn |
|
|
1743 | fi |
|
|
1744 | ewarn " # revdep-rebuild --library ${lib##*/}" |
|
|
1745 | done |
|
|
1746 | if [[ ${notice} -eq 1 ]] ; then |
|
|
1747 | ewarn |
|
|
1748 | ewarn "Once you've finished running revdep-rebuild, it should be safe to" |
|
|
1749 | ewarn "delete the old libraries. Here is a copy & paste for the lazy:" |
|
|
1750 | for lib in "$@" ; do |
|
|
1751 | ewarn " # rm '${lib}'" |
|
|
1752 | done |
|
|
1753 | fi |
|
|
1754 | } |
|
|
1755 | |
|
|
1756 | # @FUNCTION: built_with_use |
|
|
1757 | # @USAGE: [--hidden] [--missing <action>] [-a|-o] <DEPEND ATOM> <List of USE flags> |
|
|
1758 | # @DESCRIPTION: |
|
|
1759 | # A temporary hack until portage properly supports DEPENDing on USE |
|
|
1760 | # flags being enabled in packages. This will check to see if the specified |
|
|
1761 | # DEPEND atom was built with the specified list of USE flags. The |
|
|
1762 | # --missing option controls the behavior if called on a package that does |
|
|
1763 | # not actually support the defined USE flags (aka listed in IUSE). |
|
|
1764 | # The default is to abort (call die). The -a and -o flags control |
|
|
1765 | # the requirements of the USE flags. They correspond to "and" and "or" |
|
|
1766 | # logic. So the -a flag means all listed USE flags must be enabled |
|
|
1767 | # while the -o flag means at least one of the listed IUSE flags must be |
|
|
1768 | # enabled. The --hidden option is really for internal use only as it |
|
|
1769 | # means the USE flag we're checking is hidden expanded, so it won't be found |
|
|
1770 | # in IUSE like normal USE flags. |
|
|
1771 | # |
|
|
1772 | # Remember that this function isn't terribly intelligent so order of optional |
|
|
1773 | # flags matter. |
|
|
1774 | built_with_use() { |
|
|
1775 | local hidden="no" |
|
|
1776 | if [[ $1 == "--hidden" ]] ; then |
|
|
1777 | hidden="yes" |
|
|
1778 | shift |
|
|
1779 | fi |
|
|
1780 | |
|
|
1781 | local missing_action="die" |
|
|
1782 | if [[ $1 == "--missing" ]] ; then |
|
|
1783 | missing_action=$2 |
|
|
1784 | shift ; shift |
|
|
1785 | case ${missing_action} in |
|
|
1786 | true|false|die) ;; |
|
|
1787 | *) die "unknown action '${missing_action}'";; |
|
|
1788 | esac |
|
|
1789 | fi |
|
|
1790 | |
|
|
1791 | local opt=$1 |
|
|
1792 | [[ ${opt:0:1} = "-" ]] && shift || opt="-a" |
|
|
1793 | |
|
|
1794 | local PKG=$(best_version $1) |
|
|
1795 | [[ -z ${PKG} ]] && die "Unable to resolve $1 to an installed package" |
|
|
1796 | shift |
|
|
1797 | |
|
|
1798 | local USEFILE=${ROOT}/var/db/pkg/${PKG}/USE |
|
|
1799 | local IUSEFILE=${ROOT}/var/db/pkg/${PKG}/IUSE |
|
|
1800 | |
|
|
1801 | # if the IUSE file doesn't exist, the read will error out, we need to handle |
|
|
1802 | # this gracefully |
|
|
1803 | if [[ ! -e ${USEFILE} ]] || [[ ! -e ${IUSEFILE} && ${hidden} == "no" ]] ; then |
|
|
1804 | case ${missing_action} in |
|
|
1805 | true) return 0;; |
|
|
1806 | false) return 1;; |
|
|
1807 | die) die "Unable to determine what USE flags $PKG was built with";; |
|
|
1808 | esac |
|
|
1809 | fi |
|
|
1810 | |
|
|
1811 | if [[ ${hidden} == "no" ]] ; then |
|
|
1812 | local IUSE_BUILT=( $(<"${IUSEFILE}") ) |
|
|
1813 | # Don't check USE_EXPAND #147237 |
|
|
1814 | local expand |
|
|
1815 | for expand in $(echo ${USE_EXPAND} | tr '[:upper:]' '[:lower:]') ; do |
|
|
1816 | if [[ $1 == ${expand}_* ]] ; then |
|
|
1817 | expand="" |
|
|
1818 | break |
|
|
1819 | fi |
|
|
1820 | done |
|
|
1821 | if [[ -n ${expand} ]] ; then |
|
|
1822 | if ! has $1 ${IUSE_BUILT[@]#[-+]} ; then |
|
|
1823 | case ${missing_action} in |
|
|
1824 | true) return 0;; |
|
|
1825 | false) return 1;; |
|
|
1826 | die) die "$PKG does not actually support the $1 USE flag!";; |
|
|
1827 | esac |
|
|
1828 | fi |
|
|
1829 | fi |
|
|
1830 | fi |
|
|
1831 | |
|
|
1832 | local USE_BUILT=$(<${USEFILE}) |
|
|
1833 | while [[ $# -gt 0 ]] ; do |
|
|
1834 | if [[ ${opt} = "-o" ]] ; then |
|
|
1835 | has $1 ${USE_BUILT} && return 0 |
|
|
1836 | else |
|
|
1837 | has $1 ${USE_BUILT} || return 1 |
|
|
1838 | fi |
|
|
1839 | shift |
|
|
1840 | done |
|
|
1841 | [[ ${opt} = "-a" ]] |
|
|
1842 | } |
|
|
1843 | |
|
|
1844 | # @FUNCTION: epunt_cxx |
|
|
1845 | # @USAGE: [dir to scan] |
|
|
1846 | # @DESCRIPTION: |
|
|
1847 | # Many configure scripts wrongly bail when a C++ compiler could not be |
|
|
1848 | # detected. If dir is not specified, then it defaults to ${S}. |
|
|
1849 | # |
|
|
1850 | # http://bugs.gentoo.org/73450 |
|
|
1851 | epunt_cxx() { |
|
|
1852 | local dir=$1 |
|
|
1853 | [[ -z ${dir} ]] && dir=${S} |
|
|
1854 | ebegin "Removing useless C++ checks" |
|
|
1855 | local f |
|
|
1856 | find "${dir}" -name configure | while read f ; do |
|
|
1857 | patch --no-backup-if-mismatch -p0 "${f}" "${PORTDIR}/eclass/ELT-patches/nocxx/nocxx.patch" > /dev/null |
|
|
1858 | done |
|
|
1859 | eend 0 |
|
|
1860 | } |
|
|
1861 | |
|
|
1862 | # @FUNCTION: make_wrapper |
|
|
1863 | # @USAGE: <wrapper> <target> [chdir] [libpaths] [installpath] |
|
|
1864 | # @DESCRIPTION: |
|
|
1865 | # Create a shell wrapper script named wrapper in installpath |
|
|
1866 | # (defaults to the bindir) to execute target (default of wrapper) by |
|
|
1867 | # first optionally setting LD_LIBRARY_PATH to the colon-delimited |
|
|
1868 | # libpaths followed by optionally changing directory to chdir. |
|
|
1869 | make_wrapper() { |
|
|
1870 | local wrapper=$1 bin=$2 chdir=$3 libdir=$4 path=$5 |
|
|
1871 | local tmpwrapper=$(emktemp) |
|
|
1872 | # We don't want to quote ${bin} so that people can pass complex |
|
|
1873 | # things as $bin ... "./someprog --args" |
|
|
1874 | cat << EOF > "${tmpwrapper}" |
|
|
1875 | #!/bin/sh |
|
|
1876 | cd "${chdir:-.}" |
|
|
1877 | if [ -n "${libdir}" ] ; then |
|
|
1878 | if [ "\${LD_LIBRARY_PATH+set}" = "set" ] ; then |
|
|
1879 | export LD_LIBRARY_PATH="\${LD_LIBRARY_PATH}:${libdir}" |
|
|
1880 | else |
|
|
1881 | export LD_LIBRARY_PATH="${libdir}" |
|
|
1882 | fi |
|
|
1883 | fi |
|
|
1884 | exec ${bin} "\$@" |
|
|
1885 | EOF |
|
|
1886 | chmod go+rx "${tmpwrapper}" |
|
|
1887 | if [[ -n ${path} ]] ; then |
|
|
1888 | ( |
|
|
1889 | exeinto "${path}" |
|
|
1890 | newexe "${tmpwrapper}" "${wrapper}" |
|
|
1891 | ) || die |
|
|
1892 | else |
|
|
1893 | newbin "${tmpwrapper}" "${wrapper}" || die |
|
|
1894 | fi |
|
|
1895 | } |
|
|
1896 | |
|
|
1897 | # @FUNCTION: prepalldocs |
|
|
1898 | # @USAGE: |
|
|
1899 | # @DESCRIPTION: |
|
|
1900 | # Compress files in /usr/share/doc which are not already |
|
|
1901 | # compressed, excluding /usr/share/doc/${PF}/html. |
|
|
1902 | # Uses the ecompressdir to do the compression. |
|
|
1903 | # 2009-02-18 by betelgeuse: |
|
|
1904 | # Commented because ecompressdir is even more internal to |
|
|
1905 | # Portage than prepalldocs (it's not even mentioned in man 5 |
|
|
1906 | # ebuild). Please submit a better version for review to gentoo-dev |
|
|
1907 | # if you want prepalldocs here. |
|
|
1908 | #prepalldocs() { |
|
|
1909 | # if [[ -n $1 ]] ; then |
|
|
1910 | # ewarn "prepalldocs: invalid usage; takes no arguments" |
|
|
1911 | # fi |
|
|
1912 | |
|
|
1913 | # cd "${D}" |
|
|
1914 | # [[ -d usr/share/doc ]] || return 0 |
|
|
1915 | |
|
|
1916 | # find usr/share/doc -exec gzip {} + |
|
|
1917 | # ecompressdir --ignore /usr/share/doc/${PF}/html |
|
|
1918 | # ecompressdir --queue /usr/share/doc |
|
|
1919 | #} |