| 1 | # Copyright 1999-2006 Gentoo Foundation |
1 | # Copyright 1999-2007 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.256 2006/10/31 19:29:12 agriffis Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.310 2009/02/15 20:09:09 grobian Exp $ |
|
|
4 | |
|
|
5 | # @ECLASS: eutils.eclass |
|
|
6 | # @MAINTAINER: |
|
|
7 | # base-system@gentoo.org |
|
|
8 | # @BLURB: many extra (but common) functions that are used in ebuilds |
|
|
9 | # @DESCRIPTION: |
|
|
10 | # The eutils eclass contains a suite of functions that complement |
|
|
11 | # the ones that ebuild.sh already contain. The idea is that the functions |
|
|
12 | # are not required in all ebuilds but enough utilize them to have a common |
|
|
13 | # home rather than having multiple ebuilds implementing the same thing. |
| 4 | # |
14 | # |
| 5 | # This eclass is for general purpose functions that most ebuilds |
15 | # Due to the nature of this eclass, some functions may have maintainers |
| 6 | # have to implement themselves. |
16 | # different from the overall eclass! |
| 7 | # |
|
|
| 8 | # NB: If you add anything, please comment it! |
|
|
| 9 | # |
|
|
| 10 | # Maintainer: see each individual function, base-system@gentoo.org as default |
|
|
| 11 | |
17 | |
| 12 | inherit multilib portability |
18 | inherit multilib portability |
| 13 | |
19 | |
| 14 | DESCRIPTION="Based on the ${ECLASS} eclass" |
20 | DESCRIPTION="Based on the ${ECLASS} eclass" |
| 15 | |
21 | |
| 16 | # Wait for the supplied number of seconds. If no argument is supplied, defaults |
22 | # @FUNCTION: epause |
| 17 | # to five seconds. If the EPAUSE_IGNORE env var is set, don't wait. If we're not |
23 | # @USAGE: [seconds] |
| 18 | # outputting to a terminal, don't wait. For compatability purposes, the argument |
24 | # @DESCRIPTION: |
| 19 | # must be an integer greater than zero. |
25 | # Sleep for the specified number of seconds (default of 5 seconds). Useful when |
| 20 | # Bug 62950, Ciaran McCreesh <ciaranm@gentoo.org> (05 Sep 2004) |
26 | # printing a message the user should probably be reading and often used in |
|
|
27 | # conjunction with the ebeep function. If the EPAUSE_IGNORE env var is set, |
|
|
28 | # don't wait at all. |
| 21 | epause() { |
29 | epause() { |
| 22 | [[ -z ${EPAUSE_IGNORE} ]] && sleep ${1:-5} |
30 | [[ -z ${EPAUSE_IGNORE} ]] && sleep ${1:-5} |
| 23 | } |
31 | } |
| 24 | |
32 | |
| 25 | # Beep the specified number of times (defaults to five). If our output |
33 | # @FUNCTION: ebeep |
| 26 | # is not a terminal, don't beep. If the EBEEP_IGNORE env var is set, |
34 | # @USAGE: [number of beeps] |
|
|
35 | # @DESCRIPTION: |
|
|
36 | # Issue the specified number of beeps (default of 5 beeps). Useful when |
|
|
37 | # printing a message the user should probably be reading and often used in |
|
|
38 | # conjunction with the epause function. If the EBEEP_IGNORE env var is set, |
| 27 | # don't beep. |
39 | # don't beep at all. |
| 28 | # Bug 62950, Ciaran McCreesh <ciaranm@gentoo.org> (05 Sep 2004) |
|
|
| 29 | ebeep() { |
40 | ebeep() { |
| 30 | local n |
41 | local n |
| 31 | if [[ -z ${EBEEP_IGNORE} ]] ; then |
42 | if [[ -z ${EBEEP_IGNORE} ]] ; then |
| 32 | for ((n=1 ; n <= ${1:-5} ; n++)) ; do |
43 | for ((n=1 ; n <= ${1:-5} ; n++)) ; do |
| 33 | echo -ne "\a" |
44 | echo -ne "\a" |
| … | |
… | |
| 36 | sleep 1 |
47 | sleep 1 |
| 37 | done |
48 | done |
| 38 | fi |
49 | fi |
| 39 | } |
50 | } |
| 40 | |
51 | |
| 41 | # This function generate linker scripts in /usr/lib for dynamic |
52 | # @FUNCTION: ecvs_clean |
| 42 | # libs in /lib. This is to fix linking problems when you have |
53 | # @USAGE: [list of dirs] |
| 43 | # the .so in /lib, and the .a in /usr/lib. What happens is that |
54 | # @DESCRIPTION: |
| 44 | # in some cases when linking dynamic, the .a in /usr/lib is used |
55 | # Remove CVS directories recursiveley. Useful when a source tarball contains |
| 45 | # instead of the .so in /lib due to gcc/libtool tweaking ld's |
56 | # internal CVS directories. Defaults to $PWD. |
| 46 | # library search path. This cause many builds to fail. |
57 | ecvs_clean() { |
| 47 | # See bug #4411 for more info. |
58 | [[ -z $* ]] && set -- . |
| 48 | # |
59 | find "$@" -type d -name 'CVS' -prune -print0 | xargs -0 rm -rf |
| 49 | # To use, simply call: |
60 | find "$@" -type f -name '.cvs*' -print0 | xargs -0 rm -rf |
| 50 | # |
|
|
| 51 | # gen_usr_ldscript libfoo.so |
|
|
| 52 | # |
|
|
| 53 | # Note that you should in general use the unversioned name of |
|
|
| 54 | # the library, as ldconfig should usually update it correctly |
|
|
| 55 | # to point to the latest version of the library present. |
|
|
| 56 | # |
|
|
| 57 | # <azarah@gentoo.org> (26 Oct 2002) |
|
|
| 58 | # |
|
|
| 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 | |
|
|
| 68 | local lib libdir=$(get_libdir) |
|
|
| 69 | # Just make sure it exists |
|
|
| 70 | dodir /usr/${libdir} |
|
|
| 71 | |
|
|
| 72 | for lib in "${@}" ; do |
|
|
| 73 | cat > "${D}/usr/${libdir}/${lib}" <<-END_LDSCRIPT |
|
|
| 74 | /* GNU ld script |
|
|
| 75 | Since Gentoo has critical dynamic libraries |
|
|
| 76 | in /lib, and the static versions in /usr/lib, |
|
|
| 77 | we need to have a "fake" dynamic lib in /usr/lib, |
|
|
| 78 | otherwise we run into linking problems. |
|
|
| 79 | |
|
|
| 80 | See bug http://bugs.gentoo.org/4411 for more info. |
|
|
| 81 | */ |
|
|
| 82 | GROUP ( /${libdir}/${lib} ) |
|
|
| 83 | END_LDSCRIPT |
|
|
| 84 | fperms a+x "/usr/${libdir}/${lib}" || die "could not change perms on ${lib}" |
|
|
| 85 | done |
|
|
| 86 | } |
61 | } |
| 87 | |
62 | |
|
|
63 | # @FUNCTION: esvn_clean |
|
|
64 | # @USAGE: [list of dirs] |
|
|
65 | # @DESCRIPTION: |
|
|
66 | # Remove .svn directories recursiveley. Useful when a source tarball contains |
|
|
67 | # internal Subversion directories. Defaults to $PWD. |
|
|
68 | esvn_clean() { |
|
|
69 | [[ -z $* ]] && set -- . |
|
|
70 | find "$@" -type d -name '.svn' -prune -print0 | xargs -0 rm -rf |
|
|
71 | } |
| 88 | |
72 | |
| 89 | # Default directory where patches are located |
73 | # Default directory where patches are located |
| 90 | EPATCH_SOURCE="${WORKDIR}/patch" |
74 | EPATCH_SOURCE="${WORKDIR}/patch" |
| 91 | # Default extension for patches |
75 | # Default extension for patches |
| 92 | EPATCH_SUFFIX="patch.bz2" |
76 | EPATCH_SUFFIX="patch.bz2" |
| 93 | # Default options for patch |
77 | # Default options for patch |
| 94 | # Set -g0 to keep RCS, ClearCase, Perforce and SCCS happy. Bug #24571 |
78 | # Set -g0 to keep RCS, ClearCase, Perforce and SCCS happy. Bug #24571 |
| 95 | # Set --no-backup-if-mismatch so we don't leave '.orig' files behind. |
79 | # Set --no-backup-if-mismatch so we don't leave '.orig' files behind. |
| 96 | # Set -E to automatically remove empty files. |
80 | # Set -E to automatically remove empty files. |
| 97 | EPATCH_OPTS="-g0 -E --no-backup-if-mismatch" |
81 | EPATCH_OPTS="-g0 -E --no-backup-if-mismatch" |
| 98 | # List of patches not to apply. Not this is only file names, |
82 | # List of patches not to apply. Note this is only file names, |
| 99 | # and not the full path .. |
83 | # and not the full path .. |
| 100 | EPATCH_EXCLUDE="" |
84 | EPATCH_EXCLUDE="" |
| 101 | # Change the printed message for a single patch. |
85 | # Change the printed message for a single patch. |
| 102 | EPATCH_SINGLE_MSG="" |
86 | EPATCH_SINGLE_MSG="" |
| 103 | # Change the printed message for multiple patches. |
87 | # Change the printed message for multiple patches. |
| 104 | EPATCH_MULTI_MSG="Applying various patches (bugfixes/updates) ..." |
88 | EPATCH_MULTI_MSG="Applying various patches (bugfixes/updates) ..." |
| 105 | # Force applying bulk patches even if not following the style: |
89 | # Force applying bulk patches even if not following the style: |
| 106 | # |
90 | # |
| 107 | # ??_${ARCH}_foo.${EPATCH_SUFFIX} |
91 | # ??_${ARCH}_foo.${EPATCH_SUFFIX} |
| 108 | # |
92 | # |
| 109 | EPATCH_FORCE="no" |
93 | EPATCH_FORCE="no" |
| 110 | |
94 | |
| 111 | # This function is for bulk patching, or in theory for just one |
95 | # This function is for bulk patching, or in theory for just one |
| 112 | # or two patches. |
96 | # or two patches. |
| … | |
… | |
| 121 | # bug they should be left as is to ensure an ebuild can rely on |
105 | # bug they should be left as is to ensure an ebuild can rely on |
| 122 | # them for. |
106 | # them for. |
| 123 | # |
107 | # |
| 124 | # Patches are applied in current directory. |
108 | # Patches are applied in current directory. |
| 125 | # |
109 | # |
| 126 | # Bulk Patches should preferibly have the form of: |
110 | # Bulk Patches should preferably have the form of: |
| 127 | # |
111 | # |
| 128 | # ??_${ARCH}_foo.${EPATCH_SUFFIX} |
112 | # ??_${ARCH}_foo.${EPATCH_SUFFIX} |
| 129 | # |
113 | # |
| 130 | # For example: |
114 | # For example: |
| 131 | # |
115 | # |
| 132 | # 01_all_misc-fix.patch.bz2 |
116 | # 01_all_misc-fix.patch.bz2 |
| 133 | # 02_sparc_another-fix.patch.bz2 |
117 | # 02_sparc_another-fix.patch.bz2 |
| 134 | # |
118 | # |
| 135 | # This ensures that there are a set order, and you can have ARCH |
119 | # This ensures that there are a set order, and you can have ARCH |
| 136 | # specific patches. |
120 | # specific patches. |
| 137 | # |
121 | # |
| 138 | # If you however give an argument to epatch(), it will treat it as a |
122 | # If you however give an argument to epatch(), it will treat it as a |
| … | |
… | |
| 180 | local EPATCH_SOURCE="$1/*" |
164 | local EPATCH_SOURCE="$1/*" |
| 181 | else |
165 | else |
| 182 | local EPATCH_SOURCE="$1/*.${EPATCH_SUFFIX}" |
166 | local EPATCH_SOURCE="$1/*.${EPATCH_SUFFIX}" |
| 183 | fi |
167 | fi |
| 184 | else |
168 | else |
| 185 | if [ ! -d ${EPATCH_SOURCE} ] || [ -n "$1" ] |
169 | if [[ ! -d ${EPATCH_SOURCE} ]] || [[ -n $1 ]] ; then |
| 186 | then |
|
|
| 187 | if [ -n "$1" -a "${EPATCH_SOURCE}" = "${WORKDIR}/patch" ] |
170 | if [ -n "$1" -a "${EPATCH_SOURCE}" = "${WORKDIR}/patch" ] |
| 188 | then |
171 | then |
| 189 | EPATCH_SOURCE="$1" |
172 | EPATCH_SOURCE="$1" |
| 190 | fi |
173 | fi |
| 191 | |
174 | |
| … | |
… | |
| 200 | |
183 | |
| 201 | local EPATCH_SOURCE="${EPATCH_SOURCE}/*.${EPATCH_SUFFIX}" |
184 | local EPATCH_SOURCE="${EPATCH_SOURCE}/*.${EPATCH_SUFFIX}" |
| 202 | fi |
185 | fi |
| 203 | |
186 | |
| 204 | case ${EPATCH_SUFFIX##*\.} in |
187 | case ${EPATCH_SUFFIX##*\.} in |
|
|
188 | lzma) |
|
|
189 | PIPE_CMD="lzma -dc" |
|
|
190 | PATCH_SUFFIX="lzma" |
|
|
191 | ;; |
| 205 | bz2) |
192 | bz2) |
| 206 | PIPE_CMD="bzip2 -dc" |
193 | PIPE_CMD="bzip2 -dc" |
| 207 | PATCH_SUFFIX="bz2" |
194 | PATCH_SUFFIX="bz2" |
| 208 | ;; |
195 | ;; |
| 209 | gz|Z|z) |
196 | gz|Z|z) |
| … | |
… | |
| 226 | fi |
213 | fi |
| 227 | for x in ${EPATCH_SOURCE} |
214 | for x in ${EPATCH_SOURCE} |
| 228 | do |
215 | do |
| 229 | # New ARCH dependant patch naming scheme ... |
216 | # New ARCH dependant patch naming scheme ... |
| 230 | # |
217 | # |
| 231 | # ???_arch_foo.patch |
218 | # ???_arch_foo.patch |
| 232 | # |
219 | # |
| 233 | if [ -f ${x} ] && \ |
220 | if [ -f ${x} ] && \ |
| 234 | ([ "${SINGLE_PATCH}" = "yes" -o "${x/_all_}" != "${x}" -o "${x/_${ARCH}_}" != "${x}" ] || \ |
221 | ([ "${SINGLE_PATCH}" = "yes" -o "${x/_all_}" != "${x}" -o "${x/_${ARCH}_}" != "${x}" ] || \ |
| 235 | [ "${EPATCH_FORCE}" = "yes" ]) |
222 | [ "${EPATCH_FORCE}" = "yes" ]) |
| 236 | then |
223 | then |
| 237 | local count=0 |
224 | local count=0 |
| 238 | local popts="${EPATCH_OPTS}" |
225 | local popts="${EPATCH_OPTS}" |
| 239 | local patchname=${x##*/} |
226 | local patchname=${x##*/} |
| 240 | |
227 | |
| … | |
… | |
| 259 | fi |
246 | fi |
| 260 | |
247 | |
| 261 | echo "***** ${patchname} *****" > ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
248 | echo "***** ${patchname} *****" > ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 262 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
249 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 263 | |
250 | |
|
|
251 | # Decompress the patch if need be |
|
|
252 | if [[ ${PATCH_SUFFIX} != "patch" ]] ; then |
|
|
253 | echo -n "PIPE_COMMAND: " >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
|
|
254 | echo "${PIPE_CMD} ${x} > ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
|
|
255 | |
|
|
256 | if ! (${PIPE_CMD} ${x} > ${PATCH_TARGET}) >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} 2>&1 ; then |
|
|
257 | echo |
|
|
258 | eerror "Could not extract patch!" |
|
|
259 | #die "Could not extract patch!" |
|
|
260 | count=5 |
|
|
261 | break |
|
|
262 | fi |
|
|
263 | else |
|
|
264 | PATCH_TARGET="${x}" |
|
|
265 | fi |
|
|
266 | |
|
|
267 | # Check for absolute paths in patches. If sandbox is disabled, |
|
|
268 | # people could (accidently) patch files in the root filesystem. |
|
|
269 | # Or trigger other unpleasantries #237667. So disallow -p0 on |
|
|
270 | # such patches. |
|
|
271 | local abs_paths=$(egrep -n '^[-+]{3} /' "${PATCH_TARGET}" | awk '$2 != "/dev/null" { print }') |
|
|
272 | if [[ -n ${abs_paths} ]] ; then |
|
|
273 | count=1 |
|
|
274 | echo "NOTE: skipping -p0 due to absolute paths in patch:" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
|
|
275 | echo "${abs_paths}" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
|
|
276 | fi |
|
|
277 | |
| 264 | # Allow for prefix to differ ... im lazy, so shoot me :/ |
278 | # Allow for prefix to differ ... im lazy, so shoot me :/ |
| 265 | while [ "${count}" -lt 5 ] |
279 | while [ "${count}" -lt 5 ] |
| 266 | do |
280 | do |
| 267 | # Generate some useful debug info ... |
281 | # Generate some useful debug info ... |
| 268 | _epatch_draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
282 | _epatch_draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 269 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
283 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 270 | |
284 | |
| 271 | if [ "${PATCH_SUFFIX}" != "patch" ] |
|
|
| 272 | then |
|
|
| 273 | echo -n "PIPE_COMMAND: " >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
|
|
| 274 | echo "${PIPE_CMD} ${x} > ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
|
|
| 275 | else |
|
|
| 276 | PATCH_TARGET="${x}" |
|
|
| 277 | fi |
|
|
| 278 | |
|
|
| 279 | echo -n "PATCH COMMAND: " >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
285 | echo -n "PATCH COMMAND: " >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 280 | echo "patch -p${count} ${popts} < ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
286 | echo "patch -p${count} ${popts} < ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 281 | |
287 | |
| 282 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
288 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 283 | _epatch_draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
289 | _epatch_draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
| 284 | |
|
|
| 285 | if [ "${PATCH_SUFFIX}" != "patch" ] |
|
|
| 286 | then |
|
|
| 287 | if ! (${PIPE_CMD} ${x} > ${PATCH_TARGET}) >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} 2>&1 |
|
|
| 288 | then |
|
|
| 289 | echo |
|
|
| 290 | eerror "Could not extract patch!" |
|
|
| 291 | #die "Could not extract patch!" |
|
|
| 292 | count=5 |
|
|
| 293 | break |
|
|
| 294 | fi |
|
|
| 295 | fi |
|
|
| 296 | |
290 | |
| 297 | if (cat ${PATCH_TARGET} | patch -p${count} ${popts} --dry-run -f ; _epatch_assert) >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} 2>&1 |
291 | if (cat ${PATCH_TARGET} | patch -p${count} ${popts} --dry-run -f ; _epatch_assert) >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} 2>&1 |
| 298 | then |
292 | then |
| 299 | _epatch_draw_line "***** ${patchname} *****" > ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
293 | _epatch_draw_line "***** ${patchname} *****" > ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
| 300 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
294 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
| … | |
… | |
| 350 | then |
344 | then |
| 351 | einfo "Done with patching" |
345 | einfo "Done with patching" |
| 352 | fi |
346 | fi |
| 353 | } |
347 | } |
| 354 | |
348 | |
|
|
349 | # @FUNCTION: emktemp |
|
|
350 | # @USAGE: [temp dir] |
|
|
351 | # @DESCRIPTION: |
| 355 | # Cheap replacement for when debianutils (and thus mktemp) |
352 | # Cheap replacement for when debianutils (and thus mktemp) |
| 356 | # does not exist on the users system |
353 | # does not exist on the users system. |
| 357 | # vapier@gentoo.org |
|
|
| 358 | # |
|
|
| 359 | # Takes just 1 optional parameter (the directory to create tmpfile in) |
|
|
| 360 | emktemp() { |
354 | emktemp() { |
| 361 | local exe="touch" |
355 | local exe="touch" |
| 362 | [[ $1 == -d ]] && exe="mkdir" && shift |
356 | [[ $1 == -d ]] && exe="mkdir" && shift |
| 363 | local topdir=$1 |
357 | local topdir=$1 |
| 364 | |
358 | |
| … | |
… | |
| 366 | [[ -z ${T} ]] \ |
360 | [[ -z ${T} ]] \ |
| 367 | && topdir="/tmp" \ |
361 | && topdir="/tmp" \ |
| 368 | || topdir=${T} |
362 | || topdir=${T} |
| 369 | fi |
363 | fi |
| 370 | |
364 | |
| 371 | if [[ -z $(type -p mktemp) ]] ; then |
365 | if ! type -P mktemp > /dev/null ; then |
|
|
366 | # system lacks `mktemp` so we have to fake it |
| 372 | local tmp=/ |
367 | local tmp=/ |
| 373 | while [[ -e ${tmp} ]] ; do |
368 | while [[ -e ${tmp} ]] ; do |
| 374 | tmp=${topdir}/tmp.${RANDOM}.${RANDOM}.${RANDOM} |
369 | tmp=${topdir}/tmp.${RANDOM}.${RANDOM}.${RANDOM} |
| 375 | done |
370 | done |
| 376 | ${exe} "${tmp}" || ${exe} -p "${tmp}" |
371 | ${exe} "${tmp}" || ${exe} -p "${tmp}" |
| 377 | echo "${tmp}" |
372 | echo "${tmp}" |
| 378 | else |
373 | else |
|
|
374 | # the args here will give slightly wierd names on BSD, |
|
|
375 | # but should produce a usable file on all userlands |
| 379 | if [[ ${exe} == "touch" ]] ; then |
376 | if [[ ${exe} == "touch" ]] ; then |
| 380 | [[ ${USERLAND} == "GNU" ]] \ |
|
|
| 381 | && mktemp -p "${topdir}" \ |
|
|
| 382 | || TMPDIR="${topdir}" mktemp -t tmp |
377 | TMPDIR="${topdir}" mktemp -t tmp.XXXXXXXXXX |
| 383 | else |
378 | else |
| 384 | [[ ${USERLAND} == "GNU" ]] \ |
|
|
| 385 | && mktemp -d "${topdir}" \ |
|
|
| 386 | || TMPDIR="${topdir}" mktemp -dt tmp |
379 | TMPDIR="${topdir}" mktemp -dt tmp.XXXXXXXXXX |
| 387 | fi |
|
|
| 388 | fi |
380 | fi |
|
|
381 | fi |
| 389 | } |
382 | } |
| 390 | |
383 | |
|
|
384 | # @FUNCTION: egetent |
|
|
385 | # @USAGE: <database> <key> |
|
|
386 | # @MAINTAINER: |
|
|
387 | # base-system@gentoo.org (Linux) |
|
|
388 | # Joe Jezak <josejx@gmail.com> (OS X) |
|
|
389 | # usata@gentoo.org (OS X) |
|
|
390 | # Aaron Walker <ka0ttic@gentoo.org> (FreeBSD) |
|
|
391 | # @DESCRIPTION: |
| 391 | # Small wrapper for getent (Linux), nidump (Mac OS X), |
392 | # Small wrapper for getent (Linux), |
|
|
393 | # nidump (< Mac OS X 10.5), dscl (Mac OS X 10.5), |
| 392 | # and pw (FreeBSD) used in enewuser()/enewgroup() |
394 | # and pw (FreeBSD) used in enewuser()/enewgroup() |
| 393 | # Joe Jezak <josejx@gmail.com> and usata@gentoo.org |
|
|
| 394 | # FBSD stuff: Aaron Walker <ka0ttic@gentoo.org> |
|
|
| 395 | # |
|
|
| 396 | # egetent(database, key) |
|
|
| 397 | egetent() { |
395 | egetent() { |
| 398 | case ${CHOST} in |
396 | case ${CHOST} in |
|
|
397 | *-darwin9) |
|
|
398 | local mytype=$1 |
|
|
399 | [[ "passwd" == $mytype ]] && mytype="Users" |
|
|
400 | [[ "group" == $mytype ]] && mytype="Groups" |
|
|
401 | case "$2" in |
|
|
402 | *[!0-9]*) # Non numeric |
|
|
403 | dscl . -read /$mytype/$2 2>/dev/null |grep RecordName |
|
|
404 | ;; |
|
|
405 | *) # Numeric |
|
|
406 | local mykey="UniqueID" |
|
|
407 | [[ $mytype == "Groups" ]] && mykey="PrimaryGroupID" |
|
|
408 | dscl . -search /$mytype $mykey $2 2>/dev/null |
|
|
409 | ;; |
|
|
410 | esac |
|
|
411 | ;; |
| 399 | *-darwin*) |
412 | *-darwin*) |
| 400 | case "$2" in |
413 | case "$2" in |
| 401 | *[!0-9]*) # Non numeric |
414 | *[!0-9]*) # Non numeric |
| 402 | nidump $1 . | awk -F":" "{ if (\$1 ~ /^$2$/) {print \$0;exit;} }" |
415 | nidump $1 . | awk -F":" "{ if (\$1 ~ /^$2$/) {print \$0;exit;} }" |
| 403 | ;; |
416 | ;; |
| … | |
… | |
| 425 | getent "$1" "$2" |
438 | getent "$1" "$2" |
| 426 | ;; |
439 | ;; |
| 427 | esac |
440 | esac |
| 428 | } |
441 | } |
| 429 | |
442 | |
| 430 | # Simplify/standardize adding users to the system |
443 | # @FUNCTION: enewuser |
| 431 | # vapier@gentoo.org |
444 | # @USAGE: <user> [uid] [shell] [homedir] [groups] [params] |
| 432 | # |
445 | # @DESCRIPTION: |
| 433 | # enewuser(username, uid, shell, homedir, groups, extra options) |
446 | # Same as enewgroup, you are not required to understand how to properly add |
| 434 | # |
447 | # a user to the system. The only required parameter is the username. |
| 435 | # Default values if you do not specify any: |
448 | # Default uid is (pass -1 for this) next available, default shell is |
| 436 | # username: REQUIRED ! |
449 | # /bin/false, default homedir is /dev/null, there are no default groups, |
| 437 | # uid: next available (see useradd(8)) |
450 | # and default params sets the comment as 'added by portage for ${PN}'. |
| 438 | # note: pass -1 to get default behavior |
|
|
| 439 | # shell: /bin/false |
|
|
| 440 | # homedir: /dev/null |
|
|
| 441 | # groups: none |
|
|
| 442 | # extra: comment of 'added by portage for ${PN}' |
|
|
| 443 | enewuser() { |
451 | enewuser() { |
| 444 | case ${EBUILD_PHASE} in |
452 | case ${EBUILD_PHASE} in |
| 445 | unpack|compile|test|install) |
453 | unpack|compile|test|install) |
| 446 | eerror "'enewuser()' called from '${EBUILD_PHASE}()' which is not a pkg_* function." |
454 | 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." |
455 | eerror "Package fails at QA and at life. Please file a bug." |
| … | |
… | |
| 636 | fi |
644 | fi |
| 637 | |
645 | |
| 638 | export SANDBOX_ON=${oldsandbox} |
646 | export SANDBOX_ON=${oldsandbox} |
| 639 | } |
647 | } |
| 640 | |
648 | |
| 641 | # Simplify/standardize adding groups to the system |
649 | # @FUNCTION: enewgroup |
| 642 | # vapier@gentoo.org |
650 | # @USAGE: <group> [gid] |
| 643 | # |
651 | # @DESCRIPTION: |
| 644 | # enewgroup(group, gid) |
652 | # This function does not require you to understand how to properly add a |
| 645 | # |
653 | # group to the system. Just give it a group name to add and enewgroup will |
| 646 | # Default values if you do not specify any: |
654 | # do the rest. You may specify the gid for the group or allow the group to |
| 647 | # groupname: REQUIRED ! |
655 | # allocate the next available one. |
| 648 | # gid: next available (see groupadd(8)) |
|
|
| 649 | # extra: none |
|
|
| 650 | enewgroup() { |
656 | enewgroup() { |
| 651 | case ${EBUILD_PHASE} in |
657 | case ${EBUILD_PHASE} in |
| 652 | unpack|compile|test|install) |
658 | unpack|compile|test|install) |
| 653 | eerror "'enewgroup()' called from '${EBUILD_PHASE}()' which is not a pkg_* function." |
659 | 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." |
660 | eerror "Package fails at QA and at life. Please file a bug." |
| … | |
… | |
| 750 | ;; |
756 | ;; |
| 751 | esac |
757 | esac |
| 752 | export SANDBOX_ON="${oldsandbox}" |
758 | export SANDBOX_ON="${oldsandbox}" |
| 753 | } |
759 | } |
| 754 | |
760 | |
| 755 | # Simple script to replace 'dos2unix' binaries |
761 | # @FUNCTION: edos2unix |
| 756 | # vapier@gentoo.org |
762 | # @USAGE: <file> [more files ...] |
| 757 | # |
763 | # @DESCRIPTION: |
| 758 | # edos2unix(file, <more files> ...) |
764 | # A handy replacement for dos2unix, recode, fixdos, etc... This allows you |
|
|
765 | # to remove all of these text utilities from DEPEND variables because this |
|
|
766 | # is a script based solution. Just give it a list of files to convert and |
|
|
767 | # they will all be changed from the DOS CRLF format to the UNIX LF format. |
| 759 | edos2unix() { |
768 | edos2unix() { |
| 760 | for f in "$@" |
769 | echo "$@" | xargs sed -i 's/\r$//' |
| 761 | do |
|
|
| 762 | cp "${f}" ${T}/edos2unix |
|
|
| 763 | sed 's/\r$//' ${T}/edos2unix > "${f}" |
|
|
| 764 | done |
|
|
| 765 | } |
770 | } |
| 766 | |
|
|
| 767 | |
|
|
| 768 | ############################################################## |
|
|
| 769 | # START: Handle .desktop files and menu entries # |
|
|
| 770 | # maybe this should be separated into a new eclass some time # |
|
|
| 771 | # lanius@gentoo.org # |
|
|
| 772 | ############################################################## |
|
|
| 773 | |
771 | |
| 774 | # Make a desktop file ! |
772 | # Make a desktop file ! |
| 775 | # Great for making those icons in kde/gnome startmenu ! |
773 | # Great for making those icons in kde/gnome startmenu ! |
| 776 | # Amaze your friends ! Get the women ! Join today ! |
774 | # Amaze your friends ! Get the women ! Join today ! |
| 777 | # |
775 | # |
| 778 | # make_desktop_entry(<command>, [name], [icon], [type], [path]) |
776 | # make_desktop_entry(<command>, [name], [icon], [type], [path]) |
| 779 | # |
777 | # |
| 780 | # binary: what command does the app run with ? |
778 | # binary: what command does the app run with ? |
| 781 | # name: the name that will show up in the menu |
779 | # name: the name that will show up in the menu |
| 782 | # icon: give your little like a pretty little icon ... |
780 | # icon: give your little like a pretty little icon ... |
| 783 | # this can be relative (to /usr/share/pixmaps) or |
781 | # this can be relative (to /usr/share/pixmaps) or |
| 784 | # a full path to an icon |
782 | # a full path to an icon |
| 785 | # type: what kind of application is this ? for categories: |
783 | # type: what kind of application is this ? for categories: |
| 786 | # http://www.freedesktop.org/Standards/desktop-entry-spec |
784 | # http://standards.freedesktop.org/menu-spec/latest/apa.html |
| 787 | # path: if your app needs to startup in a specific dir |
785 | # path: if your app needs to startup in a specific dir |
| 788 | make_desktop_entry() { |
786 | make_desktop_entry() { |
| 789 | [[ -z $1 ]] && eerror "make_desktop_entry: You must specify the executable" && return 1 |
787 | [[ -z $1 ]] && eerror "make_desktop_entry: You must specify the executable" && return 1 |
| 790 | |
788 | |
| 791 | local exec=${1} |
789 | local exec=${1} |
| 792 | local name=${2:-${PN}} |
790 | local name=${2:-${PN}} |
| 793 | local icon=${3:-${PN}.png} |
791 | local icon=${3:-${PN}} |
| 794 | local type=${4} |
792 | local type=${4} |
| 795 | local path=${5} |
793 | local path=${5} |
| 796 | |
794 | |
| 797 | if [[ -z ${type} ]] ; then |
795 | if [[ -z ${type} ]] ; then |
| 798 | local catmaj=${CATEGORY%%-*} |
796 | local catmaj=${CATEGORY%%-*} |
| 799 | local catmin=${CATEGORY##*-} |
797 | local catmin=${CATEGORY##*-} |
| 800 | case ${catmaj} in |
798 | case ${catmaj} in |
| 801 | app) |
799 | app) |
| 802 | case ${catmin} in |
800 | case ${catmin} in |
|
|
801 | accessibility) type=Accessibility;; |
| 803 | admin) type=System;; |
802 | admin) type=System;; |
|
|
803 | antivirus) type=System;; |
|
|
804 | arch) type=Archiving;; |
|
|
805 | backup) type=Archiving;; |
| 804 | cdr) type=DiscBurning;; |
806 | cdr) type=DiscBurning;; |
| 805 | dicts) type=Dictionary;; |
807 | dicts) type=Dictionary;; |
|
|
808 | doc) type=Documentation;; |
| 806 | editors) type=TextEditor;; |
809 | editors) type=TextEditor;; |
| 807 | emacs) type=TextEditor;; |
810 | emacs) type=TextEditor;; |
| 808 | emulation) type=Emulator;; |
811 | emulation) type=Emulator;; |
| 809 | laptop) type=HardwareSettings;; |
812 | laptop) type=HardwareSettings;; |
| 810 | office) type=Office;; |
813 | office) type=Office;; |
|
|
814 | pda) type=PDA;; |
| 811 | vim) type=TextEditor;; |
815 | vim) type=TextEditor;; |
| 812 | xemacs) type=TextEditor;; |
816 | xemacs) type=TextEditor;; |
| 813 | *) type=;; |
817 | *) type=;; |
| 814 | esac |
818 | esac |
| 815 | ;; |
819 | ;; |
| 816 | |
820 | |
| 817 | dev) |
821 | dev) |
| 818 | type="Development" |
822 | type="Development" |
| 819 | ;; |
823 | ;; |
| 820 | |
824 | |
| 821 | games) |
825 | games) |
| 822 | case ${catmin} in |
826 | case ${catmin} in |
| 823 | action) type=ActionGame;; |
827 | action|fps) type=ActionGame;; |
| 824 | arcade) type=ArcadeGame;; |
828 | arcade) type=ArcadeGame;; |
| 825 | board) type=BoardGame;; |
829 | board) type=BoardGame;; |
| 826 | kids) type=KidsGame;; |
|
|
| 827 | emulation) type=Emulator;; |
830 | emulation) type=Emulator;; |
|
|
831 | kids) type=KidsGame;; |
| 828 | puzzle) type=LogicGame;; |
832 | puzzle) type=LogicGame;; |
| 829 | rpg) type=RolePlaying;; |
|
|
| 830 | roguelike) type=RolePlaying;; |
833 | roguelike) type=RolePlaying;; |
|
|
834 | rpg) type=RolePlaying;; |
| 831 | simulation) type=Simulation;; |
835 | simulation) type=Simulation;; |
| 832 | sports) type=SportsGame;; |
836 | sports) type=SportsGame;; |
| 833 | strategy) type=StrategyGame;; |
837 | strategy) type=StrategyGame;; |
| 834 | *) type=;; |
838 | *) type=;; |
| 835 | esac |
839 | esac |
| 836 | type="Game;${type}" |
840 | type="Game;${type}" |
|
|
841 | ;; |
|
|
842 | |
|
|
843 | gnome) |
|
|
844 | type="Gnome;GTK" |
|
|
845 | ;; |
|
|
846 | |
|
|
847 | kde) |
|
|
848 | type="KDE;Qt" |
| 837 | ;; |
849 | ;; |
| 838 | |
850 | |
| 839 | mail) |
851 | mail) |
| 840 | type="Network;Email" |
852 | type="Network;Email" |
| 841 | ;; |
853 | ;; |
| … | |
… | |
| 843 | media) |
855 | media) |
| 844 | case ${catmin} in |
856 | case ${catmin} in |
| 845 | gfx) type=Graphics;; |
857 | gfx) type=Graphics;; |
| 846 | radio) type=Tuner;; |
858 | radio) type=Tuner;; |
| 847 | sound) type=Audio;; |
859 | sound) type=Audio;; |
| 848 | tv) type=TV;; |
860 | tv) type=TV;; |
| 849 | video) type=Video;; |
861 | video) type=Video;; |
| 850 | *) type=;; |
862 | *) type=;; |
| 851 | esac |
863 | esac |
| 852 | type="AudioVideo;${type}" |
864 | type="AudioVideo;${type}" |
| 853 | ;; |
865 | ;; |
| 854 | |
866 | |
| 855 | net) |
867 | net) |
| 856 | case ${catmin} in |
868 | case ${catmin} in |
| 857 | dialup) type=Dialup;; |
869 | dialup) type=Dialup;; |
| 858 | ftp) type=FileTransfer;; |
870 | ftp) type=FileTransfer;; |
| 859 | im) type=InstantMessaging;; |
871 | im) type=InstantMessaging;; |
| 860 | irc) type=IRCClient;; |
872 | irc) type=IRCClient;; |
| 861 | mail) type=Email;; |
873 | mail) type=Email;; |
| 862 | news) type=News;; |
874 | news) type=News;; |
| 863 | nntp) type=News;; |
875 | nntp) type=News;; |
| 864 | p2p) type=FileTransfer;; |
876 | p2p) type=FileTransfer;; |
| 865 | *) type=;; |
877 | *) type=;; |
| 866 | esac |
878 | esac |
| 867 | type="Network;${type}" |
879 | type="Network;${type}" |
| 868 | ;; |
880 | ;; |
| 869 | |
881 | |
| 870 | sci) |
882 | sci) |
| 871 | case ${catmin} in |
883 | case ${catmin} in |
| 872 | astro*) type=Astronomy;; |
884 | astro*) type=Astronomy;; |
| 873 | bio*) type=Biology;; |
885 | bio*) type=Biology;; |
| 874 | calc*) type=Calculator;; |
886 | calc*) type=Calculator;; |
| 875 | chem*) type=Chemistry;; |
887 | chem*) type=Chemistry;; |
|
|
888 | elec*) type=Electronics;; |
| 876 | geo*) type=Geology;; |
889 | geo*) type=Geology;; |
| 877 | math*) type=Math;; |
890 | math*) type=Math;; |
|
|
891 | physics) type=Physics;; |
|
|
892 | visual*) type=DataVisualization;; |
| 878 | *) type=;; |
893 | *) type=;; |
| 879 | esac |
894 | esac |
| 880 | type="Science;${type}" |
895 | type="Science;${type}" |
| 881 | ;; |
896 | ;; |
| 882 | |
897 | |
|
|
898 | sys) |
|
|
899 | type="System" |
|
|
900 | ;; |
|
|
901 | |
| 883 | www) |
902 | www) |
| 884 | case ${catmin} in |
903 | case ${catmin} in |
| 885 | client) type=WebBrowser;; |
904 | client) type=WebBrowser;; |
| 886 | *) type=;; |
905 | *) type=;; |
| 887 | esac |
906 | esac |
| 888 | type="Network" |
907 | type="Network" |
| 889 | ;; |
908 | ;; |
| 890 | |
909 | |
| 891 | *) |
910 | *) |
| … | |
… | |
| 896 | if [ "${SLOT}" == "0" ] ; then |
915 | if [ "${SLOT}" == "0" ] ; then |
| 897 | local desktop_name="${PN}" |
916 | local desktop_name="${PN}" |
| 898 | else |
917 | else |
| 899 | local desktop_name="${PN}-${SLOT}" |
918 | local desktop_name="${PN}-${SLOT}" |
| 900 | fi |
919 | fi |
| 901 | local desktop=${T}/${exec%% *}-${desktop_name}.desktop |
920 | local desktop="${T}/$(echo ${exec} | sed 's:[[:space:]/:]:_:g')-${desktop_name}.desktop" |
| 902 | # local desktop=${T}/${exec%% *:-${desktop_name}}.desktop |
921 | #local desktop=${T}/${exec%% *:-${desktop_name}}.desktop |
| 903 | |
922 | |
|
|
923 | cat <<-EOF > "${desktop}" |
| 904 | echo "[Desktop Entry] |
924 | [Desktop Entry] |
| 905 | Encoding=UTF-8 |
925 | Version=1.0 |
| 906 | Version=0.9.2 |
|
|
| 907 | Name=${name} |
926 | Name=${name} |
| 908 | Type=Application |
927 | Type=Application |
| 909 | Comment=${DESCRIPTION} |
928 | Comment=${DESCRIPTION} |
| 910 | Exec=${exec} |
929 | Exec=${exec} |
| 911 | TryExec=${exec%% *} |
930 | TryExec=${exec%% *} |
| 912 | Path=${path} |
|
|
| 913 | Icon=${icon} |
931 | Icon=${icon} |
| 914 | Categories=Application;${type};" > "${desktop}" |
932 | Categories=${type}; |
|
|
933 | EOF |
|
|
934 | |
|
|
935 | [[ ${path} ]] && echo "Path=${path}" >> "${desktop}" |
| 915 | |
936 | |
| 916 | ( |
937 | ( |
| 917 | # wrap the env here so that the 'insinto' call |
938 | # wrap the env here so that the 'insinto' call |
| 918 | # doesn't corrupt the env of the caller |
939 | # doesn't corrupt the env of the caller |
| 919 | insinto /usr/share/applications |
940 | insinto /usr/share/applications |
| 920 | doins "${desktop}" |
941 | doins "${desktop}" |
| 921 | ) |
942 | ) |
| 922 | } |
943 | } |
| 923 | |
944 | |
| 924 | # Make a GDM/KDM Session file |
945 | # @FUNCTION: validate_desktop_entries |
| 925 | # |
946 | # @USAGE: [directories] |
| 926 | # make_session_desktop(<title>, <command>) |
947 | # @MAINTAINER: |
| 927 | # title: File to execute to start the Window Manager |
948 | # Carsten Lohrke <carlo@gentoo.org> |
| 928 | # command: Name of the Window Manager |
949 | # @DESCRIPTION: |
|
|
950 | # Validate desktop entries using desktop-file-utils |
|
|
951 | validate_desktop_entries() { |
|
|
952 | if [[ -x /usr/bin/desktop-file-validate ]] ; then |
|
|
953 | einfo "Checking desktop entry validity" |
|
|
954 | local directories="" |
|
|
955 | for d in /usr/share/applications $@ ; do |
|
|
956 | [[ -d ${D}${d} ]] && directories="${directories} ${D}${d}" |
|
|
957 | done |
|
|
958 | if [[ -n ${directories} ]] ; then |
|
|
959 | for FILE in $(find ${directories} -name "*\.desktop" \ |
|
|
960 | -not -path '*.hidden*' | sort -u 2>/dev/null) |
|
|
961 | do |
|
|
962 | local temp=$(desktop-file-validate ${FILE} | grep -v "warning:" | \ |
|
|
963 | sed -e "s|error: ||" -e "s|${FILE}:|--|g" ) |
|
|
964 | [[ -n $temp ]] && elog ${temp/--/${FILE/${D}/}:} |
|
|
965 | done |
|
|
966 | fi |
|
|
967 | echo "" |
|
|
968 | else |
|
|
969 | einfo "Passing desktop entry validity check. Install dev-util/desktop-file-utils, if you want to help to improve Gentoo." |
|
|
970 | fi |
|
|
971 | } |
| 929 | |
972 | |
|
|
973 | # @FUNCTION: make_session_desktop |
|
|
974 | # @USAGE: <title> <command> |
|
|
975 | # @DESCRIPTION: |
|
|
976 | # Make a GDM/KDM Session file. The title is the file to execute to start the |
|
|
977 | # Window Manager. The command is the name of the Window Manager. |
| 930 | make_session_desktop() { |
978 | make_session_desktop() { |
| 931 | [[ -z $1 ]] && eerror "make_session_desktop: You must specify the title" && return 1 |
979 | [[ -z $1 ]] && eerror "make_session_desktop: You must specify the title" && return 1 |
| 932 | [[ -z $2 ]] && eerror "make_session_desktop: You must specify the command" && return 1 |
980 | [[ -z $2 ]] && eerror "make_session_desktop: You must specify the command" && return 1 |
| 933 | |
981 | |
| 934 | local title=$1 |
982 | local title=$1 |
| 935 | local command=$2 |
983 | local command=$2 |
| 936 | local desktop=${T}/${wm}.desktop |
984 | local desktop=${T}/${wm}.desktop |
| 937 | |
985 | |
|
|
986 | cat <<-EOF > "${desktop}" |
| 938 | echo "[Desktop Entry] |
987 | [Desktop Entry] |
| 939 | Encoding=UTF-8 |
|
|
| 940 | Name=${title} |
988 | Name=${title} |
| 941 | Comment=This session logs you into ${title} |
989 | Comment=This session logs you into ${title} |
| 942 | Exec=${command} |
990 | Exec=${command} |
| 943 | TryExec=${command} |
991 | TryExec=${command} |
| 944 | Type=Application" > "${desktop}" |
992 | Type=Application |
|
|
993 | EOF |
| 945 | |
994 | |
|
|
995 | ( |
|
|
996 | # wrap the env here so that the 'insinto' call |
|
|
997 | # doesn't corrupt the env of the caller |
| 946 | insinto /usr/share/xsessions |
998 | insinto /usr/share/xsessions |
| 947 | doins "${desktop}" |
999 | doins "${desktop}" |
|
|
1000 | ) |
| 948 | } |
1001 | } |
| 949 | |
1002 | |
|
|
1003 | # @FUNCTION: domenu |
|
|
1004 | # @USAGE: <menus> |
|
|
1005 | # @DESCRIPTION: |
|
|
1006 | # Install the list of .desktop menu files into the appropriate directory |
|
|
1007 | # (/usr/share/applications). |
| 950 | domenu() { |
1008 | domenu() { |
|
|
1009 | ( |
|
|
1010 | # wrap the env here so that the 'insinto' call |
|
|
1011 | # doesn't corrupt the env of the caller |
| 951 | local i j |
1012 | local i j ret=0 |
| 952 | insinto /usr/share/applications |
1013 | insinto /usr/share/applications |
| 953 | for i in "$@" ; do |
1014 | for i in "$@" ; do |
| 954 | if [[ -f ${i} ]] ; then |
1015 | if [[ -f ${i} ]] ; then |
| 955 | doins "${i}" |
1016 | doins "${i}" |
|
|
1017 | ((ret+=$?)) |
| 956 | elif [[ -d ${i} ]] ; then |
1018 | elif [[ -d ${i} ]] ; then |
| 957 | for j in "${i}"/*.desktop ; do |
1019 | for j in "${i}"/*.desktop ; do |
| 958 | doins "${j}" |
1020 | doins "${j}" |
|
|
1021 | ((ret+=$?)) |
| 959 | done |
1022 | done |
|
|
1023 | else |
|
|
1024 | ((++ret)) |
| 960 | fi |
1025 | fi |
| 961 | done |
1026 | done |
|
|
1027 | exit ${ret} |
|
|
1028 | ) |
| 962 | } |
1029 | } |
|
|
1030 | |
|
|
1031 | # @FUNCTION: newmenu |
|
|
1032 | # @USAGE: <menu> <newname> |
|
|
1033 | # @DESCRIPTION: |
|
|
1034 | # Like all other new* functions, install the specified menu as newname. |
| 963 | newmenu() { |
1035 | newmenu() { |
|
|
1036 | ( |
|
|
1037 | # wrap the env here so that the 'insinto' call |
|
|
1038 | # doesn't corrupt the env of the caller |
| 964 | insinto /usr/share/applications |
1039 | insinto /usr/share/applications |
| 965 | newins "$1" "$2" |
1040 | newins "$@" |
|
|
1041 | ) |
| 966 | } |
1042 | } |
| 967 | |
1043 | |
|
|
1044 | # @FUNCTION: doicon |
|
|
1045 | # @USAGE: <list of icons> |
|
|
1046 | # @DESCRIPTION: |
|
|
1047 | # Install the list of icons into the icon directory (/usr/share/pixmaps). |
|
|
1048 | # This is useful in conjunction with creating desktop/menu files. |
| 968 | doicon() { |
1049 | doicon() { |
|
|
1050 | ( |
|
|
1051 | # wrap the env here so that the 'insinto' call |
|
|
1052 | # doesn't corrupt the env of the caller |
| 969 | local i j |
1053 | local i j ret |
| 970 | insinto /usr/share/pixmaps |
1054 | insinto /usr/share/pixmaps |
| 971 | for i in "$@" ; do |
1055 | for i in "$@" ; do |
| 972 | if [[ -f ${i} ]] ; then |
1056 | if [[ -f ${i} ]] ; then |
| 973 | doins "${i}" |
1057 | doins "${i}" |
|
|
1058 | ((ret+=$?)) |
| 974 | elif [[ -d ${i} ]] ; then |
1059 | elif [[ -d ${i} ]] ; then |
| 975 | for j in "${i}"/*.png ; do |
1060 | for j in "${i}"/*.png ; do |
| 976 | doins "${j}" |
1061 | doins "${j}" |
|
|
1062 | ((ret+=$?)) |
| 977 | done |
1063 | done |
|
|
1064 | else |
|
|
1065 | ((++ret)) |
| 978 | fi |
1066 | fi |
| 979 | done |
1067 | done |
|
|
1068 | exit ${ret} |
|
|
1069 | ) |
| 980 | } |
1070 | } |
|
|
1071 | |
|
|
1072 | # @FUNCTION: newicon |
|
|
1073 | # @USAGE: <icon> <newname> |
|
|
1074 | # @DESCRIPTION: |
|
|
1075 | # Like all other new* functions, install the specified icon as newname. |
| 981 | newicon() { |
1076 | newicon() { |
|
|
1077 | ( |
|
|
1078 | # wrap the env here so that the 'insinto' call |
|
|
1079 | # doesn't corrupt the env of the caller |
| 982 | insinto /usr/share/pixmaps |
1080 | insinto /usr/share/pixmaps |
| 983 | newins "$1" "$2" |
1081 | newins "$@" |
|
|
1082 | ) |
| 984 | } |
1083 | } |
| 985 | |
|
|
| 986 | ############################################################## |
|
|
| 987 | # END: Handle .desktop files and menu entries # |
|
|
| 988 | ############################################################## |
|
|
| 989 | |
|
|
| 990 | |
1084 | |
| 991 | # for internal use only (unpack_pdv and unpack_makeself) |
1085 | # for internal use only (unpack_pdv and unpack_makeself) |
| 992 | find_unpackable_file() { |
1086 | find_unpackable_file() { |
| 993 | local src=$1 |
1087 | local src=$1 |
| 994 | if [[ -z ${src} ]] ; then |
1088 | if [[ -z ${src} ]] ; then |
| … | |
… | |
| 1004 | fi |
1098 | fi |
| 1005 | [[ ! -e ${src} ]] && return 1 |
1099 | [[ ! -e ${src} ]] && return 1 |
| 1006 | echo "${src}" |
1100 | echo "${src}" |
| 1007 | } |
1101 | } |
| 1008 | |
1102 | |
|
|
1103 | # @FUNCTION: unpack_pdv |
|
|
1104 | # @USAGE: <file to unpack> <size of off_t> |
|
|
1105 | # @DESCRIPTION: |
| 1009 | # Unpack those pesky pdv generated files ... |
1106 | # Unpack those pesky pdv generated files ... |
| 1010 | # They're self-unpacking programs with the binary package stuffed in |
1107 | # They're self-unpacking programs with the binary package stuffed in |
| 1011 | # the middle of the archive. Valve seems to use it a lot ... too bad |
1108 | # the middle of the archive. Valve seems to use it a lot ... too bad |
| 1012 | # it seems to like to segfault a lot :(. So lets take it apart ourselves. |
1109 | # it seems to like to segfault a lot :(. So lets take it apart ourselves. |
| 1013 | # |
1110 | # |
| 1014 | # Usage: unpack_pdv [file to unpack] [size of off_t] |
|
|
| 1015 | # - you have to specify the off_t size ... i have no idea how to extract that |
1111 | # You have to specify the off_t size ... I have no idea how to extract that |
| 1016 | # information out of the binary executable myself. basically you pass in |
1112 | # information out of the binary executable myself. Basically you pass in |
| 1017 | # the size of the off_t type (in bytes) on the machine that built the pdv |
1113 | # the size of the off_t type (in bytes) on the machine that built the pdv |
|
|
1114 | # archive. |
|
|
1115 | # |
| 1018 | # archive. one way to determine this is by running the following commands: |
1116 | # One way to determine this is by running the following commands: |
|
|
1117 | # |
|
|
1118 | # @CODE |
| 1019 | # strings <pdv archive> | grep lseek |
1119 | # strings <pdv archive> | grep lseek |
| 1020 | # strace -elseek <pdv archive> |
1120 | # strace -elseek <pdv archive> |
|
|
1121 | # @CODE |
|
|
1122 | # |
| 1021 | # basically look for the first lseek command (we do the strings/grep because |
1123 | # Basically look for the first lseek command (we do the strings/grep because |
| 1022 | # sometimes the function call is _llseek or something) and steal the 2nd |
1124 | # sometimes the function call is _llseek or something) and steal the 2nd |
| 1023 | # parameter. here is an example: |
1125 | # parameter. Here is an example: |
|
|
1126 | # |
|
|
1127 | # @CODE |
| 1024 | # root@vapier 0 pdv_unpack # strings hldsupdatetool.bin | grep lseek |
1128 | # vapier@vapier 0 pdv_unpack # strings hldsupdatetool.bin | grep lseek |
| 1025 | # lseek |
1129 | # lseek |
| 1026 | # root@vapier 0 pdv_unpack # strace -elseek ./hldsupdatetool.bin |
1130 | # vapier@vapier 0 pdv_unpack # strace -elseek ./hldsupdatetool.bin |
| 1027 | # lseek(3, -4, SEEK_END) = 2981250 |
1131 | # lseek(3, -4, SEEK_END) = 2981250 |
|
|
1132 | # @CODE |
|
|
1133 | # |
| 1028 | # thus we would pass in the value of '4' as the second parameter. |
1134 | # Thus we would pass in the value of '4' as the second parameter. |
| 1029 | unpack_pdv() { |
1135 | unpack_pdv() { |
| 1030 | local src=$(find_unpackable_file $1) |
1136 | local src=$(find_unpackable_file "$1") |
| 1031 | local sizeoff_t=$2 |
1137 | local sizeoff_t=$2 |
| 1032 | |
1138 | |
| 1033 | [[ -z ${src} ]] && die "Could not locate source for '$1'" |
1139 | [[ -z ${src} ]] && die "Could not locate source for '$1'" |
| 1034 | [[ -z ${sizeoff_t} ]] && die "No idea what off_t size was used for this pdv :(" |
1140 | [[ -z ${sizeoff_t} ]] && die "No idea what off_t size was used for this pdv :(" |
| 1035 | |
1141 | |
| 1036 | local shrtsrc=$(basename "${src}") |
1142 | local shrtsrc=$(basename "${src}") |
| 1037 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
1143 | echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
| 1038 | local metaskip=`tail -c ${sizeoff_t} ${src} | hexdump -e \"%i\"` |
1144 | local metaskip=$(tail -c ${sizeoff_t} "${src}" | hexdump -e \"%i\") |
| 1039 | local tailskip=`tail -c $((${sizeoff_t}*2)) ${src} | head -c ${sizeoff_t} | hexdump -e \"%i\"` |
1145 | local tailskip=$(tail -c $((${sizeoff_t}*2)) "${src}" | head -c ${sizeoff_t} | hexdump -e \"%i\") |
| 1040 | |
1146 | |
| 1041 | # grab metadata for debug reasons |
1147 | # grab metadata for debug reasons |
| 1042 | local metafile="$(emktemp)" |
1148 | local metafile=$(emktemp) |
| 1043 | tail -c +$((${metaskip}+1)) ${src} > ${metafile} |
1149 | tail -c +$((${metaskip}+1)) "${src}" > "${metafile}" |
| 1044 | |
1150 | |
| 1045 | # rip out the final file name from the metadata |
1151 | # rip out the final file name from the metadata |
| 1046 | local datafile="`tail -c +$((${metaskip}+1)) ${src} | strings | head -n 1`" |
1152 | local datafile=$(tail -c +$((${metaskip}+1)) "${src}" | strings | head -n 1) |
| 1047 | datafile="`basename ${datafile}`" |
1153 | datafile=$(basename "${datafile}") |
| 1048 | |
1154 | |
| 1049 | # now lets uncompress/untar the file if need be |
1155 | # now lets uncompress/untar the file if need be |
| 1050 | local tmpfile="$(emktemp)" |
1156 | local tmpfile=$(emktemp) |
| 1051 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null | head -c 512 > ${tmpfile} |
1157 | tail -c +$((${tailskip}+1)) ${src} 2>/dev/null | head -c 512 > ${tmpfile} |
| 1052 | |
1158 | |
| 1053 | local iscompressed="`file -b ${tmpfile}`" |
1159 | local iscompressed=$(file -b "${tmpfile}") |
| 1054 | if [ "${iscompressed:0:8}" == "compress" ] ; then |
1160 | if [[ ${iscompressed:0:8} == "compress" ]] ; then |
| 1055 | iscompressed=1 |
1161 | iscompressed=1 |
| 1056 | mv ${tmpfile}{,.Z} |
1162 | mv ${tmpfile}{,.Z} |
| 1057 | gunzip ${tmpfile} |
1163 | gunzip ${tmpfile} |
| 1058 | else |
1164 | else |
| 1059 | iscompressed=0 |
1165 | iscompressed=0 |
| 1060 | fi |
1166 | fi |
| 1061 | local istar="`file -b ${tmpfile}`" |
1167 | local istar=$(file -b "${tmpfile}") |
| 1062 | if [ "${istar:0:9}" == "POSIX tar" ] ; then |
1168 | if [[ ${istar:0:9} == "POSIX tar" ]] ; then |
| 1063 | istar=1 |
1169 | istar=1 |
| 1064 | else |
1170 | else |
| 1065 | istar=0 |
1171 | istar=0 |
| 1066 | fi |
1172 | fi |
| 1067 | |
1173 | |
| … | |
… | |
| 1095 | true |
1201 | true |
| 1096 | #[ -s "${datafile}" ] || die "failure unpacking pdv ('${metaskip}' '${tailskip}' '${datafile}')" |
1202 | #[ -s "${datafile}" ] || die "failure unpacking pdv ('${metaskip}' '${tailskip}' '${datafile}')" |
| 1097 | #assert "failure unpacking pdv ('${metaskip}' '${tailskip}' '${datafile}')" |
1203 | #assert "failure unpacking pdv ('${metaskip}' '${tailskip}' '${datafile}')" |
| 1098 | } |
1204 | } |
| 1099 | |
1205 | |
|
|
1206 | # @FUNCTION: unpack_makeself |
|
|
1207 | # @USAGE: [file to unpack] [offset] [tail|dd] |
|
|
1208 | # @DESCRIPTION: |
| 1100 | # Unpack those pesky makeself generated files ... |
1209 | # Unpack those pesky makeself generated files ... |
| 1101 | # They're shell scripts with the binary package tagged onto |
1210 | # They're shell scripts with the binary package tagged onto |
| 1102 | # the end of the archive. Loki utilized the format as does |
1211 | # the end of the archive. Loki utilized the format as does |
| 1103 | # many other game companies. |
1212 | # many other game companies. |
| 1104 | # |
1213 | # |
| 1105 | # Usage: unpack_makeself [file to unpack] [offset] [tail|dd] |
1214 | # If the file is not specified, then ${A} is used. If the |
| 1106 | # - If the file is not specified then unpack will utilize ${A}. |
|
|
| 1107 | # - If the offset is not specified then we will attempt to extract |
1215 | # offset is not specified then we will attempt to extract |
| 1108 | # the proper offset from the script itself. |
1216 | # the proper offset from the script itself. |
| 1109 | unpack_makeself() { |
1217 | unpack_makeself() { |
| 1110 | local src_input=${1:-${A}} |
1218 | local src_input=${1:-${A}} |
| 1111 | local src=$(find_unpackable_file "${src_input}") |
1219 | local src=$(find_unpackable_file "${src_input}") |
| 1112 | local skip=$2 |
1220 | local skip=$2 |
| 1113 | local exe=$3 |
1221 | local exe=$3 |
| … | |
… | |
| 1159 | dd) exe="dd ibs=${skip} skip=1 obs=1024 conv=sync if='${src}'";; |
1267 | dd) exe="dd ibs=${skip} skip=1 obs=1024 conv=sync if='${src}'";; |
| 1160 | *) die "makeself cant handle exe '${exe}'" |
1268 | *) die "makeself cant handle exe '${exe}'" |
| 1161 | esac |
1269 | esac |
| 1162 | |
1270 | |
| 1163 | # lets grab the first few bytes of the file to figure out what kind of archive it is |
1271 | # lets grab the first few bytes of the file to figure out what kind of archive it is |
| 1164 | local tmpfile="$(emktemp)" |
1272 | local tmpfile=$(emktemp) |
| 1165 | eval ${exe} 2>/dev/null | head -c 512 > "${tmpfile}" |
1273 | eval ${exe} 2>/dev/null | head -c 512 > "${tmpfile}" |
| 1166 | local filetype="$(file -b "${tmpfile}")" |
1274 | local filetype=$(file -b "${tmpfile}") |
| 1167 | case ${filetype} in |
1275 | case ${filetype} in |
| 1168 | *tar\ archive) |
1276 | *tar\ archive*) |
| 1169 | eval ${exe} | tar --no-same-owner -xf - |
1277 | eval ${exe} | tar --no-same-owner -xf - |
| 1170 | ;; |
1278 | ;; |
| 1171 | bzip2*) |
1279 | bzip2*) |
| 1172 | eval ${exe} | bzip2 -dc | tar --no-same-owner -xf - |
1280 | eval ${exe} | bzip2 -dc | tar --no-same-owner -xf - |
| 1173 | ;; |
1281 | ;; |
| … | |
… | |
| 1183 | ;; |
1291 | ;; |
| 1184 | esac |
1292 | esac |
| 1185 | assert "failure unpacking (${filetype}) makeself ${shrtsrc} ('${ver}' +${skip})" |
1293 | assert "failure unpacking (${filetype}) makeself ${shrtsrc} ('${ver}' +${skip})" |
| 1186 | } |
1294 | } |
| 1187 | |
1295 | |
|
|
1296 | # @FUNCTION: check_license |
|
|
1297 | # @USAGE: [license] |
|
|
1298 | # @DESCRIPTION: |
| 1188 | # Display a license for user to accept. |
1299 | # Display a license for user to accept. If no license is |
| 1189 | # |
|
|
| 1190 | # Usage: check_license [license] |
|
|
| 1191 | # - If the file is not specified then ${LICENSE} is used. |
1300 | # specified, then ${LICENSE} is used. |
| 1192 | check_license() { |
1301 | check_license() { |
| 1193 | local lic=$1 |
1302 | local lic=$1 |
| 1194 | if [ -z "${lic}" ] ; then |
1303 | if [ -z "${lic}" ] ; then |
| 1195 | lic="${PORTDIR}/licenses/${LICENSE}" |
1304 | lic="${PORTDIR}/licenses/${LICENSE}" |
| 1196 | else |
1305 | else |
| … | |
… | |
| 1216 | return 0 |
1325 | return 0 |
| 1217 | fi |
1326 | fi |
| 1218 | done |
1327 | done |
| 1219 | set +o noglob; set -$shopts #reset old shell opts |
1328 | set +o noglob; set -$shopts #reset old shell opts |
| 1220 | |
1329 | |
| 1221 | local licmsg="$(emktemp)" |
1330 | local licmsg=$(emktemp) |
| 1222 | cat << EOF > ${licmsg} |
1331 | cat <<-EOF > ${licmsg} |
| 1223 | ********************************************************** |
1332 | ********************************************************** |
| 1224 | The following license outlines the terms of use of this |
1333 | The following license outlines the terms of use of this |
| 1225 | package. You MUST accept this license for installation to |
1334 | package. You MUST accept this license for installation to |
| 1226 | continue. When you are done viewing, hit 'q'. If you |
1335 | continue. When you are done viewing, hit 'q'. If you |
| 1227 | CTRL+C out of this, the install will not run! |
1336 | CTRL+C out of this, the install will not run! |
| 1228 | ********************************************************** |
1337 | ********************************************************** |
| 1229 | |
1338 | |
| 1230 | EOF |
1339 | EOF |
| 1231 | cat ${lic} >> ${licmsg} |
1340 | cat ${lic} >> ${licmsg} |
| 1232 | ${PAGER:-less} ${licmsg} || die "Could not execute pager (${PAGER}) to accept ${lic}" |
1341 | ${PAGER:-less} ${licmsg} || die "Could not execute pager (${PAGER}) to accept ${lic}" |
| 1233 | einfon "Do you accept the terms of this license (${l})? [yes/no] " |
1342 | einfon "Do you accept the terms of this license (${l})? [yes/no] " |
| 1234 | read alic |
1343 | read alic |
| 1235 | case ${alic} in |
1344 | case ${alic} in |
| … | |
… | |
| 1242 | die "Failed to accept license" |
1351 | die "Failed to accept license" |
| 1243 | ;; |
1352 | ;; |
| 1244 | esac |
1353 | esac |
| 1245 | } |
1354 | } |
| 1246 | |
1355 | |
|
|
1356 | # @FUNCTION: cdrom_get_cds |
|
|
1357 | # @USAGE: <file on cd1> [file on cd2] [file on cd3] [...] |
|
|
1358 | # @DESCRIPTION: |
| 1247 | # Aquire cd(s) for those lovely cd-based emerges. Yes, this violates |
1359 | # Aquire cd(s) for those lovely cd-based emerges. Yes, this violates |
| 1248 | # the whole 'non-interactive' policy, but damnit I want CD support ! |
1360 | # the whole 'non-interactive' policy, but damnit I want CD support ! |
| 1249 | # |
1361 | # |
| 1250 | # with these cdrom functions we handle all the user interaction and |
1362 | # With these cdrom functions we handle all the user interaction and |
| 1251 | # standardize everything. all you have to do is call cdrom_get_cds() |
1363 | # standardize everything. All you have to do is call cdrom_get_cds() |
| 1252 | # and when the function returns, you can assume that the cd has been |
1364 | # and when the function returns, you can assume that the cd has been |
| 1253 | # found at CDROM_ROOT. |
1365 | # found at CDROM_ROOT. |
| 1254 | # |
1366 | # |
|
|
1367 | # The function will attempt to locate a cd based upon a file that is on |
|
|
1368 | # the cd. The more files you give this function, the more cds |
|
|
1369 | # the cdrom functions will handle. |
|
|
1370 | # |
| 1255 | # normally the cdrom functions will refer to the cds as 'cd #1', 'cd #2', |
1371 | # Normally the cdrom functions will refer to the cds as 'cd #1', 'cd #2', |
| 1256 | # etc... if you want to give the cds better names, then just export |
1372 | # etc... If you want to give the cds better names, then just export |
| 1257 | # the appropriate CDROM_NAME variable before calling cdrom_get_cds(). |
1373 | # the appropriate CDROM_NAME variable before calling cdrom_get_cds(). |
| 1258 | # - CDROM_NAME="fooie cd" - for when you only want 1 cd |
1374 | # Use CDROM_NAME for one cd, or CDROM_NAME_# for multiple cds. You can |
| 1259 | # - CDROM_NAME_1="install cd" - for when you want more than 1 cd |
1375 | # also use the CDROM_NAME_SET bash array. |
| 1260 | # CDROM_NAME_2="data cd" |
|
|
| 1261 | # - CDROM_NAME_SET=( "install cd" "data cd" ) - short hand for CDROM_NAME_# |
|
|
| 1262 | # |
1376 | # |
| 1263 | # for those multi cd ebuilds, see the cdrom_load_next_cd() below. |
1377 | # For those multi cd ebuilds, see the cdrom_load_next_cd() function. |
| 1264 | # |
|
|
| 1265 | # Usage: cdrom_get_cds <file on cd1> [file on cd2] [file on cd3] [...] |
|
|
| 1266 | # - this will attempt to locate a cd based upon a file that is on |
|
|
| 1267 | # the cd ... the more files you give this function, the more cds |
|
|
| 1268 | # the cdrom functions will handle |
|
|
| 1269 | cdrom_get_cds() { |
1378 | cdrom_get_cds() { |
| 1270 | # first we figure out how many cds we're dealing with by |
1379 | # first we figure out how many cds we're dealing with by |
| 1271 | # the # of files they gave us |
1380 | # the # of files they gave us |
| 1272 | local cdcnt=0 |
1381 | local cdcnt=0 |
| 1273 | local f= |
1382 | local f= |
| … | |
… | |
| 1359 | export CDROM_SET="" |
1468 | export CDROM_SET="" |
| 1360 | export CDROM_CURRENT_CD=0 |
1469 | export CDROM_CURRENT_CD=0 |
| 1361 | cdrom_load_next_cd |
1470 | cdrom_load_next_cd |
| 1362 | } |
1471 | } |
| 1363 | |
1472 | |
| 1364 | # this is only used when you need access to more than one cd. |
1473 | # @FUNCTION: cdrom_load_next_cd |
| 1365 | # when you have finished using the first cd, just call this function. |
1474 | # @DESCRIPTION: |
| 1366 | # when it returns, CDROM_ROOT will be pointing to the second cd. |
1475 | # Some packages are so big they come on multiple CDs. When you're done reading |
| 1367 | # remember, you can only go forward in the cd chain, you can't go back. |
1476 | # files off a CD and want access to the next one, just call this function. |
|
|
1477 | # Again, all the messy details of user interaction are taken care of for you. |
|
|
1478 | # Once this returns, just read the variable CDROM_ROOT for the location of the |
|
|
1479 | # mounted CD. Note that you can only go forward in the CD list, so make sure |
|
|
1480 | # you only call this function when you're done using the current CD. |
| 1368 | cdrom_load_next_cd() { |
1481 | cdrom_load_next_cd() { |
| 1369 | local var |
1482 | local var |
| 1370 | ((++CDROM_CURRENT_CD)) |
1483 | ((++CDROM_CURRENT_CD)) |
| 1371 | |
1484 | |
| 1372 | unset CDROM_ROOT |
1485 | unset CDROM_ROOT |
| … | |
… | |
| 1389 | # displayed and we'll hang out here until: |
1502 | # displayed and we'll hang out here until: |
| 1390 | # (1) the file is found on a mounted cdrom |
1503 | # (1) the file is found on a mounted cdrom |
| 1391 | # (2) the user hits CTRL+C |
1504 | # (2) the user hits CTRL+C |
| 1392 | _cdrom_locate_file_on_cd() { |
1505 | _cdrom_locate_file_on_cd() { |
| 1393 | local mline="" |
1506 | local mline="" |
| 1394 | local showedmsg=0 |
1507 | local showedmsg=0 showjolietmsg=0 |
| 1395 | |
1508 | |
| 1396 | while [[ -z ${CDROM_ROOT} ]] ; do |
1509 | while [[ -z ${CDROM_ROOT} ]] ; do |
| 1397 | local i=0 |
1510 | local i=0 |
| 1398 | local -a cdset=(${*//:/ }) |
1511 | local -a cdset=(${*//:/ }) |
| 1399 | if [[ -n ${CDROM_SET} ]] ; then |
1512 | if [[ -n ${CDROM_SET} ]] ; then |
| … | |
… | |
| 1402 | |
1515 | |
| 1403 | while [[ -n ${cdset[${i}]} ]] ; do |
1516 | while [[ -n ${cdset[${i}]} ]] ; do |
| 1404 | local dir=$(dirname ${cdset[${i}]}) |
1517 | local dir=$(dirname ${cdset[${i}]}) |
| 1405 | local file=$(basename ${cdset[${i}]}) |
1518 | local file=$(basename ${cdset[${i}]}) |
| 1406 | |
1519 | |
| 1407 | for mline in $(mount | gawk '/(iso|cdrom|fs=cdfss)/ {print $3}') ; do |
1520 | local point= node= fs= foo= |
|
|
1521 | while read point node fs foo ; do |
|
|
1522 | [[ " cd9660 iso9660 udf " != *" ${fs} "* ]] && \ |
|
|
1523 | ! [[ ${fs} == "subfs" && ",${opts}," == *",fs=cdfss,"* ]] \ |
|
|
1524 | && continue |
|
|
1525 | point=${point//\040/ } |
| 1408 | [[ -d ${mline}/${dir} ]] || continue |
1526 | [[ ! -d ${point}/${dir} ]] && continue |
| 1409 | if [[ -n $(find ${mline}/${dir} -maxdepth 1 -iname ${file}) ]] ; then |
1527 | [[ -z $(find "${point}/${dir}" -maxdepth 1 -iname "${file}") ]] && continue |
| 1410 | export CDROM_ROOT=${mline} |
1528 | export CDROM_ROOT=${point} |
| 1411 | export CDROM_SET=${i} |
1529 | export CDROM_SET=${i} |
| 1412 | export CDROM_MATCH=${cdset[${i}]} |
1530 | export CDROM_MATCH=${cdset[${i}]} |
| 1413 | return |
1531 | return |
| 1414 | fi |
1532 | done <<< "$(get_mounts)" |
| 1415 | done |
|
|
| 1416 | |
1533 | |
| 1417 | ((++i)) |
1534 | ((++i)) |
| 1418 | done |
1535 | done |
| 1419 | |
1536 | |
| 1420 | echo |
1537 | echo |
| … | |
… | |
| 1436 | showedmsg=1 |
1553 | showedmsg=1 |
| 1437 | fi |
1554 | fi |
| 1438 | einfo "Press return to scan for the cd again" |
1555 | einfo "Press return to scan for the cd again" |
| 1439 | einfo "or hit CTRL+C to abort the emerge." |
1556 | einfo "or hit CTRL+C to abort the emerge." |
| 1440 | echo |
1557 | echo |
|
|
1558 | if [[ ${showjolietmsg} -eq 0 ]] ; then |
|
|
1559 | showjolietmsg=1 |
|
|
1560 | else |
| 1441 | einfo "If you are having trouble with the detection" |
1561 | ewarn "If you are having trouble with the detection" |
| 1442 | einfo "of your CD, it is possible that you do not have" |
1562 | ewarn "of your CD, it is possible that you do not have" |
| 1443 | einfo "Joliet support enabled in your kernel. Please" |
1563 | ewarn "Joliet support enabled in your kernel. Please" |
| 1444 | einfo "check that CONFIG_JOLIET is enabled in your kernel." |
1564 | ewarn "check that CONFIG_JOLIET is enabled in your kernel." |
|
|
1565 | ebeep 5 |
|
|
1566 | fi |
| 1445 | read || die "something is screwed with your system" |
1567 | read || die "something is screwed with your system" |
| 1446 | done |
1568 | done |
| 1447 | } |
1569 | } |
| 1448 | |
1570 | |
|
|
1571 | # @FUNCTION: strip-linguas |
|
|
1572 | # @USAGE: [<allow LINGUAS>|<-i|-u> <directories of .po files>] |
|
|
1573 | # @DESCRIPTION: |
| 1449 | # Make sure that LINGUAS only contains languages that |
1574 | # Make sure that LINGUAS only contains languages that |
| 1450 | # a package can support |
1575 | # a package can support. The first form allows you to |
| 1451 | # |
1576 | # specify a list of LINGUAS. The -i builds a list of po |
| 1452 | # usage: strip-linguas <allow LINGUAS> |
1577 | # files found in all the directories and uses the |
| 1453 | # strip-linguas -i <directories of .po files> |
1578 | # intersection of the lists. The -u builds a list of po |
| 1454 | # strip-linguas -u <directories of .po files> |
1579 | # files found in all the directories and uses the union |
| 1455 | # |
1580 | # of the lists. |
| 1456 | # The first form allows you to specify a list of LINGUAS. |
|
|
| 1457 | # The -i builds a list of po files found in all the |
|
|
| 1458 | # directories and uses the intersection of the lists. |
|
|
| 1459 | # The -u builds a list of po files found in all the |
|
|
| 1460 | # directories and uses the union of the lists. |
|
|
| 1461 | strip-linguas() { |
1581 | strip-linguas() { |
| 1462 | local ls newls nols |
1582 | local ls newls nols |
| 1463 | if [[ $1 == "-i" ]] || [[ $1 == "-u" ]] ; then |
1583 | if [[ $1 == "-i" ]] || [[ $1 == "-u" ]] ; then |
| 1464 | local op=$1; shift |
1584 | local op=$1; shift |
| 1465 | ls=$(find "$1" -name '*.po' -exec basename {} .po \;); shift |
1585 | ls=$(find "$1" -name '*.po' -exec basename {} .po \;); shift |
| … | |
… | |
| 1495 | [[ -n ${nols} ]] \ |
1615 | [[ -n ${nols} ]] \ |
| 1496 | && ewarn "Sorry, but ${PN} does not support the LINGUAs:" ${nols} |
1616 | && ewarn "Sorry, but ${PN} does not support the LINGUAs:" ${nols} |
| 1497 | export LINGUAS=${newls:1} |
1617 | export LINGUAS=${newls:1} |
| 1498 | } |
1618 | } |
| 1499 | |
1619 | |
| 1500 | # moved from kernel.eclass since they are generally useful outside of |
1620 | # @FUNCTION: preserve_old_lib |
| 1501 | # kernel.eclass -iggy (20041002) |
1621 | # @USAGE: <libs to preserve> [more libs] |
| 1502 | |
1622 | # @DESCRIPTION: |
| 1503 | # the following functions are useful in kernel module ebuilds, etc. |
|
|
| 1504 | # for an example see ivtv or drbd ebuilds |
|
|
| 1505 | |
|
|
| 1506 | # set's ARCH to match what the kernel expects |
|
|
| 1507 | set_arch_to_kernel() { |
|
|
| 1508 | i=10 |
|
|
| 1509 | while ((i--)) ; do |
|
|
| 1510 | ewarn "PLEASE UPDATE TO YOUR PACKAGE TO USE linux-info.eclass" |
|
|
| 1511 | done |
|
|
| 1512 | export EUTILS_ECLASS_PORTAGE_ARCH="${ARCH}" |
|
|
| 1513 | case ${ARCH} in |
|
|
| 1514 | x86) export ARCH="i386";; |
|
|
| 1515 | amd64) export ARCH="x86_64";; |
|
|
| 1516 | hppa) export ARCH="parisc";; |
|
|
| 1517 | mips) export ARCH="mips";; |
|
|
| 1518 | 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! |
|
|
| 1519 | *) export ARCH="${ARCH}";; |
|
|
| 1520 | esac |
|
|
| 1521 | } |
|
|
| 1522 | |
|
|
| 1523 | # set's ARCH back to what portage expects |
|
|
| 1524 | set_arch_to_portage() { |
|
|
| 1525 | i=10 |
|
|
| 1526 | while ((i--)) ; do |
|
|
| 1527 | ewarn "PLEASE UPDATE TO YOUR PACKAGE TO USE linux-info.eclass" |
|
|
| 1528 | done |
|
|
| 1529 | export ARCH="${EUTILS_ECLASS_PORTAGE_ARCH}" |
|
|
| 1530 | } |
|
|
| 1531 | |
|
|
| 1532 | # Jeremy Huddleston <eradicator@gentoo.org>: |
|
|
| 1533 | # preserve_old_lib /path/to/libblah.so.0 |
|
|
| 1534 | # preserve_old_lib_notify /path/to/libblah.so.0 |
|
|
| 1535 | # |
|
|
| 1536 | # These functions are useful when a lib in your package changes --library. Such |
1623 | # These functions are useful when a lib in your package changes ABI SONAME. |
| 1537 | # an example might be from libogg.so.0 to libogg.so.1. Removing libogg.so.0 |
1624 | # An example might be from libogg.so.0 to libogg.so.1. Removing libogg.so.0 |
| 1538 | # would break packages that link against it. Most people get around this |
1625 | # would break packages that link against it. Most people get around this |
| 1539 | # by using the portage SLOT mechanism, but that is not always a relevant |
1626 | # by using the portage SLOT mechanism, but that is not always a relevant |
| 1540 | # solution, so instead you can add the following to your ebuilds: |
1627 | # solution, so instead you can call this from pkg_preinst. See also the |
| 1541 | # |
1628 | # preserve_old_lib_notify function. |
| 1542 | # src_install() { |
|
|
| 1543 | # ... |
|
|
| 1544 | # preserve_old_lib /usr/$(get_libdir)/libogg.so.0 |
|
|
| 1545 | # ... |
|
|
| 1546 | # } |
|
|
| 1547 | # |
|
|
| 1548 | # pkg_postinst() { |
|
|
| 1549 | # ... |
|
|
| 1550 | # preserve_old_lib_notify /usr/$(get_libdir)/libogg.so.0 |
|
|
| 1551 | # ... |
|
|
| 1552 | # } |
|
|
| 1553 | |
|
|
| 1554 | preserve_old_lib() { |
1629 | preserve_old_lib() { |
| 1555 | LIB=$1 |
1630 | if [[ ${EBUILD_PHASE} != "preinst" ]] ; then |
|
|
1631 | eerror "preserve_old_lib() must be called from pkg_preinst() only" |
|
|
1632 | die "Invalid preserve_old_lib() usage" |
|
|
1633 | fi |
|
|
1634 | [[ -z $1 ]] && die "Usage: preserve_old_lib <library to preserve> [more libraries to preserve]" |
| 1556 | |
1635 | |
| 1557 | if [ -n "${LIB}" -a -f "${ROOT}${LIB}" ]; then |
1636 | # let portage worry about it |
| 1558 | SONAME=`basename ${LIB}` |
1637 | has preserve-libs ${FEATURES} && return 0 |
| 1559 | DIRNAME=`dirname ${LIB}` |
|
|
| 1560 | |
1638 | |
| 1561 | dodir ${DIRNAME} |
1639 | local lib dir |
| 1562 | cp ${ROOT}${LIB} ${D}${DIRNAME} |
1640 | for lib in "$@" ; do |
|
|
1641 | [[ -e ${ROOT}/${lib} ]] || continue |
|
|
1642 | dir=${lib%/*} |
|
|
1643 | dodir ${dir} || die "dodir ${dir} failed" |
|
|
1644 | cp "${ROOT}"/${lib} "${D}"/${lib} || die "cp ${lib} failed" |
| 1563 | touch ${D}${LIB} |
1645 | touch "${D}"/${lib} |
| 1564 | fi |
1646 | done |
| 1565 | } |
1647 | } |
| 1566 | |
1648 | |
|
|
1649 | # @FUNCTION: preserve_old_lib_notify |
|
|
1650 | # @USAGE: <libs to notify> [more libs] |
|
|
1651 | # @DESCRIPTION: |
|
|
1652 | # Spit helpful messages about the libraries preserved by preserve_old_lib. |
| 1567 | preserve_old_lib_notify() { |
1653 | preserve_old_lib_notify() { |
| 1568 | LIB=$1 |
1654 | if [[ ${EBUILD_PHASE} != "postinst" ]] ; then |
|
|
1655 | eerror "preserve_old_lib_notify() must be called from pkg_postinst() only" |
|
|
1656 | die "Invalid preserve_old_lib_notify() usage" |
|
|
1657 | fi |
| 1569 | |
1658 | |
| 1570 | if [ -n "${LIB}" -a -f "${ROOT}${LIB}" ]; then |
1659 | # let portage worry about it |
| 1571 | SONAME=`basename ${LIB}` |
1660 | has preserve-libs ${FEATURES} && return 0 |
| 1572 | |
1661 | |
|
|
1662 | local lib notice=0 |
|
|
1663 | for lib in "$@" ; do |
|
|
1664 | [[ -e ${ROOT}/${lib} ]] || continue |
|
|
1665 | if [[ ${notice} -eq 0 ]] ; then |
|
|
1666 | notice=1 |
| 1573 | ewarn "An old version of an installed library was detected on your system." |
1667 | ewarn "Old versions of installed libraries were detected on your system." |
| 1574 | ewarn "In order to avoid breaking packages that link against it, this older version" |
1668 | ewarn "In order to avoid breaking packages that depend on these old libs," |
| 1575 | ewarn "is not being removed. In order to make full use of this newer version," |
1669 | ewarn "the libraries are not being removed. You need to run revdep-rebuild" |
| 1576 | ewarn "you will need to execute the following command:" |
1670 | ewarn "in order to remove these old dependencies. If you do not have this" |
|
|
1671 | ewarn "helper program, simply emerge the 'gentoolkit' package." |
|
|
1672 | ewarn |
|
|
1673 | fi |
| 1577 | ewarn " revdep-rebuild --library ${SONAME}" |
1674 | ewarn " # revdep-rebuild --library ${lib##*/}" |
|
|
1675 | done |
|
|
1676 | if [[ ${notice} -eq 1 ]] ; then |
| 1578 | ewarn |
1677 | ewarn |
| 1579 | ewarn "After doing that, you can safely remove ${LIB}" |
1678 | ewarn "Once you've finished running revdep-rebuild, it should be safe to" |
| 1580 | ewarn "Note: 'emerge gentoolkit' to get revdep-rebuild" |
1679 | ewarn "delete the old libraries. Here is a copy & paste for the lazy:" |
|
|
1680 | for lib in "$@" ; do |
|
|
1681 | ewarn " # rm '${lib}'" |
|
|
1682 | done |
| 1581 | fi |
1683 | fi |
| 1582 | } |
1684 | } |
| 1583 | |
1685 | |
| 1584 | # Hack for people to figure out if a package was built with |
1686 | # @FUNCTION: built_with_use |
| 1585 | # certain USE flags |
1687 | # @USAGE: [--hidden] [--missing <action>] [-a|-o] <DEPEND ATOM> <List of USE flags> |
|
|
1688 | # @DESCRIPTION: |
|
|
1689 | # A temporary hack until portage properly supports DEPENDing on USE |
|
|
1690 | # flags being enabled in packages. This will check to see if the specified |
|
|
1691 | # DEPEND atom was built with the specified list of USE flags. The |
|
|
1692 | # --missing option controls the behavior if called on a package that does |
|
|
1693 | # not actually support the defined USE flags (aka listed in IUSE). |
|
|
1694 | # The default is to abort (call die). The -a and -o flags control |
|
|
1695 | # the requirements of the USE flags. They correspond to "and" and "or" |
|
|
1696 | # logic. So the -a flag means all listed USE flags must be enabled |
|
|
1697 | # while the -o flag means at least one of the listed IUSE flags must be |
|
|
1698 | # enabled. The --hidden option is really for internal use only as it |
|
|
1699 | # means the USE flag we're checking is hidden expanded, so it won't be found |
|
|
1700 | # in IUSE like normal USE flags. |
| 1586 | # |
1701 | # |
| 1587 | # Usage: built_with_use [-a|-o] <DEPEND ATOM> <List of USE flags> |
1702 | # Remember that this function isn't terribly intelligent so order of optional |
| 1588 | # ex: built_with_use xchat gtk2 |
1703 | # flags matter. |
| 1589 | # |
|
|
| 1590 | # Flags: -a all USE flags should be utilized |
|
|
| 1591 | # -o at least one USE flag should be utilized |
|
|
| 1592 | # Note: the default flag is '-a' |
|
|
| 1593 | built_with_use() { |
1704 | built_with_use() { |
|
|
1705 | local hidden="no" |
|
|
1706 | if [[ $1 == "--hidden" ]] ; then |
|
|
1707 | hidden="yes" |
|
|
1708 | shift |
|
|
1709 | fi |
|
|
1710 | |
|
|
1711 | local missing_action="die" |
|
|
1712 | if [[ $1 == "--missing" ]] ; then |
|
|
1713 | missing_action=$2 |
|
|
1714 | shift ; shift |
|
|
1715 | case ${missing_action} in |
|
|
1716 | true|false|die) ;; |
|
|
1717 | *) die "unknown action '${missing_action}'";; |
|
|
1718 | esac |
|
|
1719 | fi |
|
|
1720 | |
| 1594 | local opt=$1 |
1721 | local opt=$1 |
| 1595 | [[ ${opt:0:1} = "-" ]] && shift || opt="-a" |
1722 | [[ ${opt:0:1} = "-" ]] && shift || opt="-a" |
| 1596 | |
1723 | |
| 1597 | local PKG=$(best_version $1) |
1724 | local PKG=$(best_version $1) |
| 1598 | [[ -z ${PKG} ]] && die "Unable to resolve $1 to an installed package" |
1725 | [[ -z ${PKG} ]] && die "Unable to resolve $1 to an installed package" |
| 1599 | shift |
1726 | shift |
| 1600 | |
1727 | |
| 1601 | local USEFILE=${ROOT}/var/db/pkg/${PKG}/USE |
1728 | local USEFILE=${ROOT}/var/db/pkg/${PKG}/USE |
| 1602 | local IUSEFILE=${ROOT}/var/db/pkg/${PKG}/IUSE |
1729 | local IUSEFILE=${ROOT}/var/db/pkg/${PKG}/IUSE |
| 1603 | |
1730 | |
| 1604 | # if the USE file doesnt exist, assume the $PKG is either |
1731 | # if the IUSE file doesn't exist, the read will error out, we need to handle |
| 1605 | # injected or package.provided |
1732 | # this gracefully |
|
|
1733 | if [[ ! -e ${USEFILE} ]] || [[ ! -e ${IUSEFILE} && ${hidden} == "no" ]] ; then |
|
|
1734 | case ${missing_action} in |
|
|
1735 | true) return 0;; |
|
|
1736 | false) return 1;; |
| 1606 | [[ ! -e ${USEFILE} ]] && die "Unable to determine what USE flags $PKG was built with" |
1737 | die) die "Unable to determine what USE flags $PKG was built with";; |
|
|
1738 | esac |
|
|
1739 | fi |
| 1607 | |
1740 | |
|
|
1741 | if [[ ${hidden} == "no" ]] ; then |
| 1608 | local IUSE_BUILT=$(<${IUSEFILE}) |
1742 | local IUSE_BUILT=( $(<"${IUSEFILE}") ) |
| 1609 | # Don't check USE_EXPAND #147237 |
1743 | # Don't check USE_EXPAND #147237 |
| 1610 | local expand |
1744 | local expand |
| 1611 | for expand in $(echo ${USE_EXPAND} | tr '[:upper:]' '[:lower:]') ; do |
1745 | for expand in $(echo ${USE_EXPAND} | tr '[:upper:]' '[:lower:]') ; do |
| 1612 | if [[ $1 == ${expand}_* ]] ; then |
1746 | if [[ $1 == ${expand}_* ]] ; then |
| 1613 | expand="" |
1747 | expand="" |
| 1614 | break |
1748 | break |
| 1615 | fi |
1749 | fi |
| 1616 | done |
1750 | done |
| 1617 | if [[ -n ${expand} ]] ; then |
1751 | if [[ -n ${expand} ]] ; then |
|
|
1752 | if ! has $1 ${IUSE_BUILT[@]#[-+]} ; then |
|
|
1753 | case ${missing_action} in |
|
|
1754 | true) return 0;; |
|
|
1755 | false) return 1;; |
| 1618 | has $1 ${IUSE_BUILT} || die "$PKG does not actually support the $1 USE flag!" |
1756 | die) die "$PKG does not actually support the $1 USE flag!";; |
|
|
1757 | esac |
|
|
1758 | fi |
|
|
1759 | fi |
| 1619 | fi |
1760 | fi |
| 1620 | |
1761 | |
| 1621 | local USE_BUILT=$(<${USEFILE}) |
1762 | local USE_BUILT=$(<${USEFILE}) |
| 1622 | while [[ $# -gt 0 ]] ; do |
1763 | while [[ $# -gt 0 ]] ; do |
| 1623 | if [[ ${opt} = "-o" ]] ; then |
1764 | if [[ ${opt} = "-o" ]] ; then |
| … | |
… | |
| 1628 | shift |
1769 | shift |
| 1629 | done |
1770 | done |
| 1630 | [[ ${opt} = "-a" ]] |
1771 | [[ ${opt} = "-a" ]] |
| 1631 | } |
1772 | } |
| 1632 | |
1773 | |
|
|
1774 | # @FUNCTION: epunt_cxx |
|
|
1775 | # @USAGE: [dir to scan] |
|
|
1776 | # @DESCRIPTION: |
| 1633 | # Many configure scripts wrongly bail when a C++ compiler |
1777 | # Many configure scripts wrongly bail when a C++ compiler could not be |
| 1634 | # could not be detected. #73450 |
1778 | # detected. If dir is not specified, then it defaults to ${S}. |
|
|
1779 | # |
|
|
1780 | # http://bugs.gentoo.org/73450 |
| 1635 | epunt_cxx() { |
1781 | epunt_cxx() { |
| 1636 | local dir=$1 |
1782 | local dir=$1 |
| 1637 | [[ -z ${dir} ]] && dir=${S} |
1783 | [[ -z ${dir} ]] && dir=${S} |
| 1638 | ebegin "Removing useless C++ checks" |
1784 | ebegin "Removing useless C++ checks" |
| 1639 | local f |
1785 | local f |
| 1640 | for f in $(find ${dir} -name configure) ; do |
1786 | find "${dir}" -name configure | while read f ; do |
| 1641 | patch -p0 "${f}" "${PORTDIR}/eclass/ELT-patches/nocxx/nocxx.patch" > /dev/null |
1787 | patch --no-backup-if-mismatch -p0 "${f}" "${PORTDIR}/eclass/ELT-patches/nocxx/nocxx.patch" > /dev/null |
| 1642 | done |
1788 | done |
| 1643 | eend 0 |
1789 | eend 0 |
| 1644 | } |
1790 | } |
| 1645 | |
1791 | |
| 1646 | # dopamd <file> [more files] |
1792 | # @FUNCTION: make_wrapper |
| 1647 | # |
1793 | # @USAGE: <wrapper> <target> [chdir] [libpaths] [installpath] |
| 1648 | # Install pam auth config file in /etc/pam.d |
1794 | # @DESCRIPTION: |
| 1649 | dopamd() { |
1795 | # Create a shell wrapper script named wrapper in installpath |
| 1650 | [[ -z $1 ]] && die "dopamd requires at least one argument" |
1796 | # (defaults to the bindir) to execute target (default of wrapper) by |
| 1651 | |
1797 | # first optionally setting LD_LIBRARY_PATH to the colon-delimited |
| 1652 | use pam || return 0 |
1798 | # libpaths followed by optionally changing directory to chdir. |
| 1653 | |
|
|
| 1654 | INSDESTTREE=/etc/pam.d \ |
|
|
| 1655 | doins "$@" || die "failed to install $@" |
|
|
| 1656 | } |
|
|
| 1657 | # newpamd <old name> <new name> |
|
|
| 1658 | # |
|
|
| 1659 | # Install pam file <old name> as <new name> in /etc/pam.d |
|
|
| 1660 | newpamd() { |
|
|
| 1661 | [[ $# -ne 2 ]] && die "newpamd requires two arguements" |
|
|
| 1662 | |
|
|
| 1663 | use pam || return 0 |
|
|
| 1664 | |
|
|
| 1665 | INSDESTTREE=/etc/pam.d \ |
|
|
| 1666 | newins "$1" "$2" || die "failed to install $1 as $2" |
|
|
| 1667 | } |
|
|
| 1668 | |
|
|
| 1669 | # make a wrapper script ... |
|
|
| 1670 | # NOTE: this was originally games_make_wrapper, but I noticed other places where |
|
|
| 1671 | # this could be used, so I have moved it here and made it not games-specific |
|
|
| 1672 | # -- wolf31o2 |
|
|
| 1673 | # $1 == wrapper name |
|
|
| 1674 | # $2 == binary to run |
|
|
| 1675 | # $3 == directory to chdir before running binary |
|
|
| 1676 | # $4 == extra LD_LIBRARY_PATH's (make it : delimited) |
|
|
| 1677 | # $5 == path for wrapper |
|
|
| 1678 | make_wrapper() { |
1799 | make_wrapper() { |
| 1679 | local wrapper=$1 bin=$2 chdir=$3 libdir=$4 path=$5 |
1800 | local wrapper=$1 bin=$2 chdir=$3 libdir=$4 path=$5 |
| 1680 | local tmpwrapper=$(emktemp) |
1801 | local tmpwrapper=$(emktemp) |
| 1681 | # We don't want to quote ${bin} so that people can pass complex |
1802 | # We don't want to quote ${bin} so that people can pass complex |
| 1682 | # things as $bin ... "./someprog --args" |
1803 | # things as $bin ... "./someprog --args" |
| … | |
… | |
| 1692 | fi |
1813 | fi |
| 1693 | exec ${bin} "\$@" |
1814 | exec ${bin} "\$@" |
| 1694 | EOF |
1815 | EOF |
| 1695 | chmod go+rx "${tmpwrapper}" |
1816 | chmod go+rx "${tmpwrapper}" |
| 1696 | if [[ -n ${path} ]] ; then |
1817 | if [[ -n ${path} ]] ; then |
|
|
1818 | ( |
| 1697 | exeinto "${path}" |
1819 | exeinto "${path}" |
| 1698 | newexe "${tmpwrapper}" "${wrapper}" |
1820 | newexe "${tmpwrapper}" "${wrapper}" |
|
|
1821 | ) || die |
| 1699 | else |
1822 | else |
| 1700 | newbin "${tmpwrapper}" "${wrapper}" |
1823 | newbin "${tmpwrapper}" "${wrapper}" || die |
| 1701 | fi |
1824 | fi |
| 1702 | } |
1825 | } |