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