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