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