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