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