1 | # Copyright 1999-2007 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.282 2007/06/16 07:11:43 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.304 2008/09/20 18:45:26 vapier 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" |
34 | sleep 0.1 &>/dev/null ; sleep 0,1 &>/dev/null |
45 | sleep 0.1 &>/dev/null ; sleep 0,1 &>/dev/null |
35 | echo -ne "\a" |
46 | echo -ne "\a" |
36 | sleep 1 |
47 | sleep 1 |
37 | done |
48 | done |
38 | fi |
49 | fi |
|
|
50 | } |
|
|
51 | |
|
|
52 | # @FUNCTION: ecvs_clean |
|
|
53 | # @USAGE: [list of dirs] |
|
|
54 | # @DESCRIPTION: |
|
|
55 | # Remove CVS directories recursiveley. Useful when a source tarball contains |
|
|
56 | # internal CVS directories. Defaults to $PWD. |
|
|
57 | ecvs_clean() { |
|
|
58 | [[ -z $* ]] && set -- . |
|
|
59 | find "$@" -type d -name 'CVS' -prune -print0 | xargs -0 rm -rf |
|
|
60 | find "$@" -type f -name '.cvs*' -print0 | xargs -0 rm -rf |
|
|
61 | } |
|
|
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 |
39 | } |
71 | } |
40 | |
72 | |
41 | # Default directory where patches are located |
73 | # Default directory where patches are located |
42 | EPATCH_SOURCE="${WORKDIR}/patch" |
74 | EPATCH_SOURCE="${WORKDIR}/patch" |
43 | # Default extension for patches |
75 | # Default extension for patches |
… | |
… | |
132 | local EPATCH_SOURCE="$1/*" |
164 | local EPATCH_SOURCE="$1/*" |
133 | else |
165 | else |
134 | local EPATCH_SOURCE="$1/*.${EPATCH_SUFFIX}" |
166 | local EPATCH_SOURCE="$1/*.${EPATCH_SUFFIX}" |
135 | fi |
167 | fi |
136 | else |
168 | else |
137 | if [ ! -d ${EPATCH_SOURCE} ] || [ -n "$1" ] |
169 | if [[ ! -d ${EPATCH_SOURCE} ]] || [[ -n $1 ]] ; then |
138 | then |
|
|
139 | if [ -n "$1" -a "${EPATCH_SOURCE}" = "${WORKDIR}/patch" ] |
170 | if [ -n "$1" -a "${EPATCH_SOURCE}" = "${WORKDIR}/patch" ] |
140 | then |
171 | then |
141 | EPATCH_SOURCE="$1" |
172 | EPATCH_SOURCE="$1" |
142 | fi |
173 | fi |
143 | |
174 | |
… | |
… | |
152 | |
183 | |
153 | local EPATCH_SOURCE="${EPATCH_SOURCE}/*.${EPATCH_SUFFIX}" |
184 | local EPATCH_SOURCE="${EPATCH_SOURCE}/*.${EPATCH_SUFFIX}" |
154 | fi |
185 | fi |
155 | |
186 | |
156 | case ${EPATCH_SUFFIX##*\.} in |
187 | case ${EPATCH_SUFFIX##*\.} in |
|
|
188 | lzma) |
|
|
189 | PIPE_CMD="lzma -dc" |
|
|
190 | PATCH_SUFFIX="lzma" |
|
|
191 | ;; |
157 | bz2) |
192 | bz2) |
158 | PIPE_CMD="bzip2 -dc" |
193 | PIPE_CMD="bzip2 -dc" |
159 | PATCH_SUFFIX="bz2" |
194 | PATCH_SUFFIX="bz2" |
160 | ;; |
195 | ;; |
161 | gz|Z|z) |
196 | gz|Z|z) |
… | |
… | |
211 | fi |
246 | fi |
212 | |
247 | |
213 | echo "***** ${patchname} *****" > ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
248 | echo "***** ${patchname} *****" > ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
214 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
249 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
215 | |
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 | |
216 | # Allow for prefix to differ ... im lazy, so shoot me :/ |
267 | # Allow for prefix to differ ... im lazy, so shoot me :/ |
217 | while [ "${count}" -lt 5 ] |
268 | while [ "${count}" -lt 5 ] |
218 | do |
269 | do |
219 | # Generate some useful debug info ... |
270 | # Generate some useful debug info ... |
220 | _epatch_draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
271 | _epatch_draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
221 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
272 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
222 | |
273 | |
223 | if [ "${PATCH_SUFFIX}" != "patch" ] |
|
|
224 | then |
|
|
225 | echo -n "PIPE_COMMAND: " >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
|
|
226 | echo "${PIPE_CMD} ${x} > ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
|
|
227 | else |
|
|
228 | PATCH_TARGET="${x}" |
|
|
229 | fi |
|
|
230 | |
|
|
231 | echo -n "PATCH COMMAND: " >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
274 | echo -n "PATCH COMMAND: " >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
232 | echo "patch -p${count} ${popts} < ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
275 | echo "patch -p${count} ${popts} < ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
233 | |
276 | |
234 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
277 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
235 | _epatch_draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
278 | _epatch_draw_line "***** ${patchname} *****" >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} |
236 | |
|
|
237 | if [ "${PATCH_SUFFIX}" != "patch" ] |
|
|
238 | then |
|
|
239 | if ! (${PIPE_CMD} ${x} > ${PATCH_TARGET}) >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} 2>&1 |
|
|
240 | then |
|
|
241 | echo |
|
|
242 | eerror "Could not extract patch!" |
|
|
243 | #die "Could not extract patch!" |
|
|
244 | count=5 |
|
|
245 | break |
|
|
246 | fi |
|
|
247 | fi |
|
|
248 | |
279 | |
249 | if (cat ${PATCH_TARGET} | patch -p${count} ${popts} --dry-run -f ; _epatch_assert) >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} 2>&1 |
280 | if (cat ${PATCH_TARGET} | patch -p${count} ${popts} --dry-run -f ; _epatch_assert) >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/} 2>&1 |
250 | then |
281 | then |
251 | _epatch_draw_line "***** ${patchname} *****" > ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
282 | _epatch_draw_line "***** ${patchname} *****" > ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
252 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
283 | echo >> ${STDERR_TARGET%/*}/${patchname}-${STDERR_TARGET##*/}.real |
… | |
… | |
302 | then |
333 | then |
303 | einfo "Done with patching" |
334 | einfo "Done with patching" |
304 | fi |
335 | fi |
305 | } |
336 | } |
306 | |
337 | |
|
|
338 | # @FUNCTION: emktemp |
|
|
339 | # @USAGE: [temp dir] |
|
|
340 | # @DESCRIPTION: |
307 | # Cheap replacement for when debianutils (and thus mktemp) |
341 | # Cheap replacement for when debianutils (and thus mktemp) |
308 | # does not exist on the users system |
342 | # does not exist on the users system. |
309 | # vapier@gentoo.org |
|
|
310 | # |
|
|
311 | # Takes just 1 optional parameter (the directory to create tmpfile in) |
|
|
312 | emktemp() { |
343 | emktemp() { |
313 | local exe="touch" |
344 | local exe="touch" |
314 | [[ $1 == -d ]] && exe="mkdir" && shift |
345 | [[ $1 == -d ]] && exe="mkdir" && shift |
315 | local topdir=$1 |
346 | local topdir=$1 |
316 | |
347 | |
… | |
… | |
337 | TMPDIR="${topdir}" mktemp -dt tmp.XXXXXXXXXX |
368 | TMPDIR="${topdir}" mktemp -dt tmp.XXXXXXXXXX |
338 | fi |
369 | fi |
339 | fi |
370 | fi |
340 | } |
371 | } |
341 | |
372 | |
|
|
373 | # @FUNCTION: egetent |
|
|
374 | # @USAGE: <database> <key> |
|
|
375 | # @MAINTAINER: |
|
|
376 | # base-system@gentoo.org (Linux) |
|
|
377 | # Joe Jezak <josejx@gmail.com> (OS X) |
|
|
378 | # usata@gentoo.org (OS X) |
|
|
379 | # Aaron Walker <ka0ttic@gentoo.org> (FreeBSD) |
|
|
380 | # @DESCRIPTION: |
342 | # Small wrapper for getent (Linux), nidump (Mac OS X), |
381 | # Small wrapper for getent (Linux), nidump (Mac OS X), |
343 | # and pw (FreeBSD) used in enewuser()/enewgroup() |
382 | # and pw (FreeBSD) used in enewuser()/enewgroup() |
344 | # Joe Jezak <josejx@gmail.com> and usata@gentoo.org |
|
|
345 | # FBSD stuff: Aaron Walker <ka0ttic@gentoo.org> |
|
|
346 | # |
|
|
347 | # egetent(database, key) |
|
|
348 | egetent() { |
383 | egetent() { |
349 | case ${CHOST} in |
384 | case ${CHOST} in |
350 | *-darwin*) |
385 | *-darwin*) |
351 | case "$2" in |
386 | case "$2" in |
352 | *[!0-9]*) # Non numeric |
387 | *[!0-9]*) # Non numeric |
… | |
… | |
376 | getent "$1" "$2" |
411 | getent "$1" "$2" |
377 | ;; |
412 | ;; |
378 | esac |
413 | esac |
379 | } |
414 | } |
380 | |
415 | |
381 | # Simplify/standardize adding users to the system |
416 | # @FUNCTION: enewuser |
382 | # vapier@gentoo.org |
417 | # @USAGE: <user> [uid] [shell] [homedir] [groups] [params] |
383 | # |
418 | # @DESCRIPTION: |
384 | # enewuser(username, uid, shell, homedir, groups, extra options) |
419 | # Same as enewgroup, you are not required to understand how to properly add |
385 | # |
420 | # a user to the system. The only required parameter is the username. |
386 | # Default values if you do not specify any: |
421 | # Default uid is (pass -1 for this) next available, default shell is |
387 | # username: REQUIRED ! |
422 | # /bin/false, default homedir is /dev/null, there are no default groups, |
388 | # uid: next available (see useradd(8)) |
423 | # and default params sets the comment as 'added by portage for ${PN}'. |
389 | # note: pass -1 to get default behavior |
|
|
390 | # shell: /bin/false |
|
|
391 | # homedir: /dev/null |
|
|
392 | # groups: none |
|
|
393 | # extra: comment of 'added by portage for ${PN}' |
|
|
394 | enewuser() { |
424 | enewuser() { |
395 | case ${EBUILD_PHASE} in |
425 | case ${EBUILD_PHASE} in |
396 | unpack|compile|test|install) |
426 | unpack|compile|test|install) |
397 | eerror "'enewuser()' called from '${EBUILD_PHASE}()' which is not a pkg_* function." |
427 | eerror "'enewuser()' called from '${EBUILD_PHASE}()' which is not a pkg_* function." |
398 | eerror "Package fails at QA and at life. Please file a bug." |
428 | eerror "Package fails at QA and at life. Please file a bug." |
… | |
… | |
587 | fi |
617 | fi |
588 | |
618 | |
589 | export SANDBOX_ON=${oldsandbox} |
619 | export SANDBOX_ON=${oldsandbox} |
590 | } |
620 | } |
591 | |
621 | |
592 | # Simplify/standardize adding groups to the system |
622 | # @FUNCTION: enewgroup |
593 | # vapier@gentoo.org |
623 | # @USAGE: <group> [gid] |
594 | # |
624 | # @DESCRIPTION: |
595 | # enewgroup(group, gid) |
625 | # This function does not require you to understand how to properly add a |
596 | # |
626 | # group to the system. Just give it a group name to add and enewgroup will |
597 | # Default values if you do not specify any: |
627 | # do the rest. You may specify the gid for the group or allow the group to |
598 | # groupname: REQUIRED ! |
628 | # allocate the next available one. |
599 | # gid: next available (see groupadd(8)) |
|
|
600 | # extra: none |
|
|
601 | enewgroup() { |
629 | enewgroup() { |
602 | case ${EBUILD_PHASE} in |
630 | case ${EBUILD_PHASE} in |
603 | unpack|compile|test|install) |
631 | unpack|compile|test|install) |
604 | eerror "'enewgroup()' called from '${EBUILD_PHASE}()' which is not a pkg_* function." |
632 | eerror "'enewgroup()' called from '${EBUILD_PHASE}()' which is not a pkg_* function." |
605 | eerror "Package fails at QA and at life. Please file a bug." |
633 | eerror "Package fails at QA and at life. Please file a bug." |
… | |
… | |
701 | ;; |
729 | ;; |
702 | esac |
730 | esac |
703 | export SANDBOX_ON="${oldsandbox}" |
731 | export SANDBOX_ON="${oldsandbox}" |
704 | } |
732 | } |
705 | |
733 | |
706 | # Simple script to replace 'dos2unix' binaries |
734 | # @FUNCTION: edos2unix |
707 | # vapier@gentoo.org |
735 | # @USAGE: <file> [more files ...] |
708 | # |
736 | # @DESCRIPTION: |
709 | # edos2unix(file, <more files> ...) |
737 | # A handy replacement for dos2unix, recode, fixdos, etc... This allows you |
|
|
738 | # to remove all of these text utilities from DEPEND variables because this |
|
|
739 | # is a script based solution. Just give it a list of files to convert and |
|
|
740 | # they will all be changed from the DOS CRLF format to the UNIX LF format. |
710 | edos2unix() { |
741 | edos2unix() { |
711 | echo "$@" | xargs sed -i 's/\r$//' |
742 | echo "$@" | xargs sed -i 's/\r$//' |
712 | } |
743 | } |
713 | |
|
|
714 | |
|
|
715 | ############################################################## |
|
|
716 | # START: Handle .desktop files and menu entries # |
|
|
717 | # maybe this should be separated into a new eclass some time # |
|
|
718 | # lanius@gentoo.org # |
|
|
719 | ############################################################## |
|
|
720 | |
744 | |
721 | # Make a desktop file ! |
745 | # Make a desktop file ! |
722 | # Great for making those icons in kde/gnome startmenu ! |
746 | # Great for making those icons in kde/gnome startmenu ! |
723 | # Amaze your friends ! Get the women ! Join today ! |
747 | # Amaze your friends ! Get the women ! Join today ! |
724 | # |
748 | # |
… | |
… | |
728 | # name: the name that will show up in the menu |
752 | # name: the name that will show up in the menu |
729 | # icon: give your little like a pretty little icon ... |
753 | # icon: give your little like a pretty little icon ... |
730 | # this can be relative (to /usr/share/pixmaps) or |
754 | # this can be relative (to /usr/share/pixmaps) or |
731 | # a full path to an icon |
755 | # a full path to an icon |
732 | # type: what kind of application is this ? for categories: |
756 | # type: what kind of application is this ? for categories: |
733 | # http://www.freedesktop.org/Standards/desktop-entry-spec |
757 | # http://standards.freedesktop.org/menu-spec/latest/apa.html |
734 | # path: if your app needs to startup in a specific dir |
758 | # path: if your app needs to startup in a specific dir |
735 | make_desktop_entry() { |
759 | make_desktop_entry() { |
736 | [[ -z $1 ]] && eerror "make_desktop_entry: You must specify the executable" && return 1 |
760 | [[ -z $1 ]] && eerror "make_desktop_entry: You must specify the executable" && return 1 |
737 | |
761 | |
738 | local exec=${1} |
762 | local exec=${1} |
739 | local name=${2:-${PN}} |
763 | local name=${2:-${PN}} |
740 | local icon=${3:-${PN}.png} |
764 | local icon=${3:-${PN}} |
741 | local type=${4} |
765 | local type=${4} |
742 | local path=${5} |
766 | local path=${5} |
743 | |
767 | |
744 | if [[ -z ${type} ]] ; then |
768 | if [[ -z ${type} ]] ; then |
745 | local catmaj=${CATEGORY%%-*} |
769 | local catmaj=${CATEGORY%%-*} |
746 | local catmin=${CATEGORY##*-} |
770 | local catmin=${CATEGORY##*-} |
747 | case ${catmaj} in |
771 | case ${catmaj} in |
748 | app) |
772 | app) |
749 | case ${catmin} in |
773 | case ${catmin} in |
|
|
774 | accessibility) type=Accessibility;; |
750 | admin) type=System;; |
775 | admin) type=System;; |
|
|
776 | antivirus) type=System;; |
|
|
777 | arch) type=Archiving;; |
|
|
778 | backup) type=Archiving;; |
751 | cdr) type=DiscBurning;; |
779 | cdr) type=DiscBurning;; |
752 | dicts) type=Dictionary;; |
780 | dicts) type=Dictionary;; |
|
|
781 | doc) type=Documentation;; |
753 | editors) type=TextEditor;; |
782 | editors) type=TextEditor;; |
754 | emacs) type=TextEditor;; |
783 | emacs) type=TextEditor;; |
755 | emulation) type=Emulator;; |
784 | emulation) type=Emulator;; |
756 | laptop) type=HardwareSettings;; |
785 | laptop) type=HardwareSettings;; |
757 | office) type=Office;; |
786 | office) type=Office;; |
|
|
787 | pda) type=PDA;; |
758 | vim) type=TextEditor;; |
788 | vim) type=TextEditor;; |
759 | xemacs) type=TextEditor;; |
789 | xemacs) type=TextEditor;; |
760 | *) type=;; |
790 | *) type=;; |
761 | esac |
791 | esac |
762 | ;; |
792 | ;; |
… | |
… | |
768 | games) |
798 | games) |
769 | case ${catmin} in |
799 | case ${catmin} in |
770 | action|fps) type=ActionGame;; |
800 | action|fps) type=ActionGame;; |
771 | arcade) type=ArcadeGame;; |
801 | arcade) type=ArcadeGame;; |
772 | board) type=BoardGame;; |
802 | board) type=BoardGame;; |
|
|
803 | emulation) type=Emulator;; |
773 | kids) type=KidsGame;; |
804 | kids) type=KidsGame;; |
774 | emulation) type=Emulator;; |
|
|
775 | puzzle) type=LogicGame;; |
805 | puzzle) type=LogicGame;; |
|
|
806 | roguelike) type=RolePlaying;; |
776 | rpg) type=RolePlaying;; |
807 | rpg) type=RolePlaying;; |
777 | roguelike) type=RolePlaying;; |
|
|
778 | simulation) type=Simulation;; |
808 | simulation) type=Simulation;; |
779 | sports) type=SportsGame;; |
809 | sports) type=SportsGame;; |
780 | strategy) type=StrategyGame;; |
810 | strategy) type=StrategyGame;; |
781 | *) type=;; |
811 | *) type=;; |
782 | esac |
812 | esac |
783 | type="Game;${type}" |
813 | type="Game;${type}" |
|
|
814 | ;; |
|
|
815 | |
|
|
816 | gnome) |
|
|
817 | type="Gnome;GTK" |
|
|
818 | ;; |
|
|
819 | |
|
|
820 | kde) |
|
|
821 | type="KDE;Qt" |
784 | ;; |
822 | ;; |
785 | |
823 | |
786 | mail) |
824 | mail) |
787 | type="Network;Email" |
825 | type="Network;Email" |
788 | ;; |
826 | ;; |
… | |
… | |
814 | type="Network;${type}" |
852 | type="Network;${type}" |
815 | ;; |
853 | ;; |
816 | |
854 | |
817 | sci) |
855 | sci) |
818 | case ${catmin} in |
856 | case ${catmin} in |
819 | astro*) type=Astronomy;; |
857 | astro*) type=Astronomy;; |
820 | bio*) type=Biology;; |
858 | bio*) type=Biology;; |
821 | calc*) type=Calculator;; |
859 | calc*) type=Calculator;; |
822 | chem*) type=Chemistry;; |
860 | chem*) type=Chemistry;; |
|
|
861 | elec*) type=Electronics;; |
823 | geo*) type=Geology;; |
862 | geo*) type=Geology;; |
824 | math*) type=Math;; |
863 | math*) type=Math;; |
|
|
864 | physics) type=Physics;; |
|
|
865 | visual*) type=DataVisualization;; |
825 | *) type=;; |
866 | *) type=;; |
826 | esac |
867 | esac |
827 | type="Science;${type}" |
868 | type="Science;${type}" |
|
|
869 | ;; |
|
|
870 | |
|
|
871 | sys) |
|
|
872 | type="System" |
828 | ;; |
873 | ;; |
829 | |
874 | |
830 | www) |
875 | www) |
831 | case ${catmin} in |
876 | case ${catmin} in |
832 | client) type=WebBrowser;; |
877 | client) type=WebBrowser;; |
… | |
… | |
848 | local desktop="${T}/$(echo ${exec} | sed 's:[[:space:]/:]:_:g')-${desktop_name}.desktop" |
893 | local desktop="${T}/$(echo ${exec} | sed 's:[[:space:]/:]:_:g')-${desktop_name}.desktop" |
849 | #local desktop=${T}/${exec%% *:-${desktop_name}}.desktop |
894 | #local desktop=${T}/${exec%% *:-${desktop_name}}.desktop |
850 | |
895 | |
851 | cat <<-EOF > "${desktop}" |
896 | cat <<-EOF > "${desktop}" |
852 | [Desktop Entry] |
897 | [Desktop Entry] |
853 | Encoding=UTF-8 |
|
|
854 | Version=0.9.2 |
898 | Version=1.0 |
855 | Name=${name} |
899 | Name=${name} |
856 | Type=Application |
900 | Type=Application |
857 | Comment=${DESCRIPTION} |
901 | Comment=${DESCRIPTION} |
858 | Exec=${exec} |
902 | Exec=${exec} |
859 | TryExec=${exec%% *} |
903 | TryExec=${exec%% *} |
860 | Path=${path} |
|
|
861 | Icon=${icon} |
904 | Icon=${icon} |
862 | Categories=Application;${type}; |
905 | Categories=${type}; |
863 | EOF |
906 | EOF |
|
|
907 | |
|
|
908 | [[ ${path} ]] && echo "Path=${path}" >> "${desktop}" |
864 | |
909 | |
865 | ( |
910 | ( |
866 | # wrap the env here so that the 'insinto' call |
911 | # wrap the env here so that the 'insinto' call |
867 | # doesn't corrupt the env of the caller |
912 | # doesn't corrupt the env of the caller |
868 | insinto /usr/share/applications |
913 | insinto /usr/share/applications |
869 | doins "${desktop}" |
914 | doins "${desktop}" |
870 | ) |
915 | ) |
871 | } |
916 | } |
872 | |
917 | |
873 | |
918 | # @FUNCTION: validate_desktop_entries |
|
|
919 | # @USAGE: [directories] |
|
|
920 | # @MAINTAINER: |
|
|
921 | # Carsten Lohrke <carlo@gentoo.org> |
|
|
922 | # @DESCRIPTION: |
874 | # Validate desktop entries using desktop-file-utils |
923 | # Validate desktop entries using desktop-file-utils |
875 | # Carsten Lohrke <carlo@gentoo.org> |
|
|
876 | # |
|
|
877 | # Usage: validate_desktop_entries [directory ...] |
|
|
878 | |
|
|
879 | validate_desktop_entries() { |
924 | validate_desktop_entries() { |
880 | if [[ -x /usr/bin/desktop-file-validate ]] ; then |
925 | if [[ -x /usr/bin/desktop-file-validate ]] ; then |
881 | einfo "Checking desktop entry validity" |
926 | einfo "Checking desktop entry validity" |
882 | local directories="" |
927 | local directories="" |
883 | for d in /usr/share/applications $@ ; do |
928 | for d in /usr/share/applications $@ ; do |
… | |
… | |
896 | else |
941 | else |
897 | einfo "Passing desktop entry validity check. Install dev-util/desktop-file-utils, if you want to help to improve Gentoo." |
942 | einfo "Passing desktop entry validity check. Install dev-util/desktop-file-utils, if you want to help to improve Gentoo." |
898 | fi |
943 | fi |
899 | } |
944 | } |
900 | |
945 | |
901 | |
946 | # @FUNCTION: make_session_desktop |
902 | # Make a GDM/KDM Session file |
947 | # @USAGE: <title> <command> |
903 | # |
948 | # @DESCRIPTION: |
904 | # make_session_desktop(<title>, <command>) |
949 | # Make a GDM/KDM Session file. The title is the file to execute to start the |
905 | # title: File to execute to start the Window Manager |
950 | # Window Manager. The command is the name of the Window Manager. |
906 | # command: Name of the Window Manager |
|
|
907 | |
|
|
908 | make_session_desktop() { |
951 | make_session_desktop() { |
909 | [[ -z $1 ]] && eerror "make_session_desktop: You must specify the title" && return 1 |
952 | [[ -z $1 ]] && eerror "make_session_desktop: You must specify the title" && return 1 |
910 | [[ -z $2 ]] && eerror "make_session_desktop: You must specify the command" && return 1 |
953 | [[ -z $2 ]] && eerror "make_session_desktop: You must specify the command" && return 1 |
911 | |
954 | |
912 | local title=$1 |
955 | local title=$1 |
913 | local command=$2 |
956 | local command=$2 |
914 | local desktop=${T}/${wm}.desktop |
957 | local desktop=${T}/${wm}.desktop |
915 | |
958 | |
916 | cat <<-EOF > "${desktop}" |
959 | cat <<-EOF > "${desktop}" |
917 | [Desktop Entry] |
960 | [Desktop Entry] |
918 | Encoding=UTF-8 |
|
|
919 | Name=${title} |
961 | Name=${title} |
920 | Comment=This session logs you into ${title} |
962 | Comment=This session logs you into ${title} |
921 | Exec=${command} |
963 | Exec=${command} |
922 | TryExec=${command} |
964 | TryExec=${command} |
923 | Type=Application |
965 | Type=Application |
… | |
… | |
929 | insinto /usr/share/xsessions |
971 | insinto /usr/share/xsessions |
930 | doins "${desktop}" |
972 | doins "${desktop}" |
931 | ) |
973 | ) |
932 | } |
974 | } |
933 | |
975 | |
|
|
976 | # @FUNCTION: domenu |
|
|
977 | # @USAGE: <menus> |
|
|
978 | # @DESCRIPTION: |
|
|
979 | # Install the list of .desktop menu files into the appropriate directory |
|
|
980 | # (/usr/share/applications). |
934 | domenu() { |
981 | domenu() { |
935 | ( |
982 | ( |
936 | # wrap the env here so that the 'insinto' call |
983 | # wrap the env here so that the 'insinto' call |
937 | # doesn't corrupt the env of the caller |
984 | # doesn't corrupt the env of the caller |
938 | local i j ret=0 |
985 | local i j ret=0 |
… | |
… | |
944 | elif [[ -d ${i} ]] ; then |
991 | elif [[ -d ${i} ]] ; then |
945 | for j in "${i}"/*.desktop ; do |
992 | for j in "${i}"/*.desktop ; do |
946 | doins "${j}" |
993 | doins "${j}" |
947 | ((ret+=$?)) |
994 | ((ret+=$?)) |
948 | done |
995 | done |
|
|
996 | else |
|
|
997 | ((++ret)) |
949 | fi |
998 | fi |
950 | done |
999 | done |
951 | exit ${ret} |
1000 | exit ${ret} |
952 | ) |
1001 | ) |
953 | } |
1002 | } |
|
|
1003 | |
|
|
1004 | # @FUNCTION: newmenu |
|
|
1005 | # @USAGE: <menu> <newname> |
|
|
1006 | # @DESCRIPTION: |
|
|
1007 | # Like all other new* functions, install the specified menu as newname. |
954 | newmenu() { |
1008 | newmenu() { |
955 | ( |
1009 | ( |
956 | # wrap the env here so that the 'insinto' call |
1010 | # wrap the env here so that the 'insinto' call |
957 | # doesn't corrupt the env of the caller |
1011 | # doesn't corrupt the env of the caller |
958 | insinto /usr/share/applications |
1012 | insinto /usr/share/applications |
959 | newins "$@" |
1013 | newins "$@" |
960 | ) |
1014 | ) |
961 | } |
1015 | } |
962 | |
1016 | |
|
|
1017 | # @FUNCTION: doicon |
|
|
1018 | # @USAGE: <list of icons> |
|
|
1019 | # @DESCRIPTION: |
|
|
1020 | # Install the list of icons into the icon directory (/usr/share/pixmaps). |
|
|
1021 | # This is useful in conjunction with creating desktop/menu files. |
963 | doicon() { |
1022 | doicon() { |
964 | ( |
1023 | ( |
965 | # wrap the env here so that the 'insinto' call |
1024 | # wrap the env here so that the 'insinto' call |
966 | # doesn't corrupt the env of the caller |
1025 | # doesn't corrupt the env of the caller |
967 | local i j ret |
1026 | local i j ret |
… | |
… | |
973 | elif [[ -d ${i} ]] ; then |
1032 | elif [[ -d ${i} ]] ; then |
974 | for j in "${i}"/*.png ; do |
1033 | for j in "${i}"/*.png ; do |
975 | doins "${j}" |
1034 | doins "${j}" |
976 | ((ret+=$?)) |
1035 | ((ret+=$?)) |
977 | done |
1036 | done |
|
|
1037 | else |
|
|
1038 | ((++ret)) |
978 | fi |
1039 | fi |
979 | done |
1040 | done |
980 | exit ${ret} |
1041 | exit ${ret} |
981 | ) |
1042 | ) |
982 | } |
1043 | } |
|
|
1044 | |
|
|
1045 | # @FUNCTION: newicon |
|
|
1046 | # @USAGE: <icon> <newname> |
|
|
1047 | # @DESCRIPTION: |
|
|
1048 | # Like all other new* functions, install the specified icon as newname. |
983 | newicon() { |
1049 | newicon() { |
984 | ( |
1050 | ( |
985 | # wrap the env here so that the 'insinto' call |
1051 | # wrap the env here so that the 'insinto' call |
986 | # doesn't corrupt the env of the caller |
1052 | # doesn't corrupt the env of the caller |
987 | insinto /usr/share/pixmaps |
1053 | insinto /usr/share/pixmaps |
988 | newins "$@" |
1054 | newins "$@" |
989 | ) |
1055 | ) |
990 | } |
1056 | } |
991 | |
|
|
992 | ############################################################## |
|
|
993 | # END: Handle .desktop files and menu entries # |
|
|
994 | ############################################################## |
|
|
995 | |
|
|
996 | |
1057 | |
997 | # for internal use only (unpack_pdv and unpack_makeself) |
1058 | # for internal use only (unpack_pdv and unpack_makeself) |
998 | find_unpackable_file() { |
1059 | find_unpackable_file() { |
999 | local src=$1 |
1060 | local src=$1 |
1000 | if [[ -z ${src} ]] ; then |
1061 | if [[ -z ${src} ]] ; then |
… | |
… | |
1010 | fi |
1071 | fi |
1011 | [[ ! -e ${src} ]] && return 1 |
1072 | [[ ! -e ${src} ]] && return 1 |
1012 | echo "${src}" |
1073 | echo "${src}" |
1013 | } |
1074 | } |
1014 | |
1075 | |
|
|
1076 | # @FUNCTION: unpack_pdv |
|
|
1077 | # @USAGE: <file to unpack> <size of off_t> |
|
|
1078 | # @DESCRIPTION: |
1015 | # Unpack those pesky pdv generated files ... |
1079 | # Unpack those pesky pdv generated files ... |
1016 | # They're self-unpacking programs with the binary package stuffed in |
1080 | # They're self-unpacking programs with the binary package stuffed in |
1017 | # the middle of the archive. Valve seems to use it a lot ... too bad |
1081 | # the middle of the archive. Valve seems to use it a lot ... too bad |
1018 | # it seems to like to segfault a lot :(. So lets take it apart ourselves. |
1082 | # it seems to like to segfault a lot :(. So lets take it apart ourselves. |
1019 | # |
1083 | # |
1020 | # Usage: unpack_pdv [file to unpack] [size of off_t] |
|
|
1021 | # - you have to specify the off_t size ... i have no idea how to extract that |
1084 | # You have to specify the off_t size ... I have no idea how to extract that |
1022 | # information out of the binary executable myself. basically you pass in |
1085 | # information out of the binary executable myself. Basically you pass in |
1023 | # the size of the off_t type (in bytes) on the machine that built the pdv |
1086 | # the size of the off_t type (in bytes) on the machine that built the pdv |
|
|
1087 | # archive. |
|
|
1088 | # |
1024 | # archive. one way to determine this is by running the following commands: |
1089 | # One way to determine this is by running the following commands: |
|
|
1090 | # |
|
|
1091 | # @CODE |
1025 | # strings <pdv archive> | grep lseek |
1092 | # strings <pdv archive> | grep lseek |
1026 | # strace -elseek <pdv archive> |
1093 | # strace -elseek <pdv archive> |
|
|
1094 | # @CODE |
|
|
1095 | # |
1027 | # basically look for the first lseek command (we do the strings/grep because |
1096 | # Basically look for the first lseek command (we do the strings/grep because |
1028 | # sometimes the function call is _llseek or something) and steal the 2nd |
1097 | # sometimes the function call is _llseek or something) and steal the 2nd |
1029 | # parameter. here is an example: |
1098 | # parameter. Here is an example: |
|
|
1099 | # |
|
|
1100 | # @CODE |
1030 | # root@vapier 0 pdv_unpack # strings hldsupdatetool.bin | grep lseek |
1101 | # vapier@vapier 0 pdv_unpack # strings hldsupdatetool.bin | grep lseek |
1031 | # lseek |
1102 | # lseek |
1032 | # root@vapier 0 pdv_unpack # strace -elseek ./hldsupdatetool.bin |
1103 | # vapier@vapier 0 pdv_unpack # strace -elseek ./hldsupdatetool.bin |
1033 | # lseek(3, -4, SEEK_END) = 2981250 |
1104 | # lseek(3, -4, SEEK_END) = 2981250 |
|
|
1105 | # @CODE |
|
|
1106 | # |
1034 | # thus we would pass in the value of '4' as the second parameter. |
1107 | # Thus we would pass in the value of '4' as the second parameter. |
1035 | unpack_pdv() { |
1108 | unpack_pdv() { |
1036 | local src=$(find_unpackable_file "$1") |
1109 | local src=$(find_unpackable_file "$1") |
1037 | local sizeoff_t=$2 |
1110 | local sizeoff_t=$2 |
1038 | |
1111 | |
1039 | [[ -z ${src} ]] && die "Could not locate source for '$1'" |
1112 | [[ -z ${src} ]] && die "Could not locate source for '$1'" |
… | |
… | |
1101 | true |
1174 | true |
1102 | #[ -s "${datafile}" ] || die "failure unpacking pdv ('${metaskip}' '${tailskip}' '${datafile}')" |
1175 | #[ -s "${datafile}" ] || die "failure unpacking pdv ('${metaskip}' '${tailskip}' '${datafile}')" |
1103 | #assert "failure unpacking pdv ('${metaskip}' '${tailskip}' '${datafile}')" |
1176 | #assert "failure unpacking pdv ('${metaskip}' '${tailskip}' '${datafile}')" |
1104 | } |
1177 | } |
1105 | |
1178 | |
|
|
1179 | # @FUNCTION: unpack_makeself |
|
|
1180 | # @USAGE: [file to unpack] [offset] [tail|dd] |
|
|
1181 | # @DESCRIPTION: |
1106 | # Unpack those pesky makeself generated files ... |
1182 | # Unpack those pesky makeself generated files ... |
1107 | # They're shell scripts with the binary package tagged onto |
1183 | # They're shell scripts with the binary package tagged onto |
1108 | # the end of the archive. Loki utilized the format as does |
1184 | # the end of the archive. Loki utilized the format as does |
1109 | # many other game companies. |
1185 | # many other game companies. |
1110 | # |
1186 | # |
1111 | # Usage: unpack_makeself [file to unpack] [offset] [tail|dd] |
1187 | # If the file is not specified, then ${A} is used. If the |
1112 | # - If the file is not specified then unpack will utilize ${A}. |
|
|
1113 | # - If the offset is not specified then we will attempt to extract |
1188 | # offset is not specified then we will attempt to extract |
1114 | # the proper offset from the script itself. |
1189 | # the proper offset from the script itself. |
1115 | unpack_makeself() { |
1190 | unpack_makeself() { |
1116 | local src_input=${1:-${A}} |
1191 | local src_input=${1:-${A}} |
1117 | local src=$(find_unpackable_file "${src_input}") |
1192 | local src=$(find_unpackable_file "${src_input}") |
1118 | local skip=$2 |
1193 | local skip=$2 |
1119 | local exe=$3 |
1194 | local exe=$3 |
… | |
… | |
1189 | ;; |
1264 | ;; |
1190 | esac |
1265 | esac |
1191 | assert "failure unpacking (${filetype}) makeself ${shrtsrc} ('${ver}' +${skip})" |
1266 | assert "failure unpacking (${filetype}) makeself ${shrtsrc} ('${ver}' +${skip})" |
1192 | } |
1267 | } |
1193 | |
1268 | |
|
|
1269 | # @FUNCTION: check_license |
|
|
1270 | # @USAGE: [license] |
|
|
1271 | # @DESCRIPTION: |
1194 | # Display a license for user to accept. |
1272 | # Display a license for user to accept. If no license is |
1195 | # |
|
|
1196 | # Usage: check_license [license] |
|
|
1197 | # - If the file is not specified then ${LICENSE} is used. |
1273 | # specified, then ${LICENSE} is used. |
1198 | check_license() { |
1274 | check_license() { |
1199 | local lic=$1 |
1275 | local lic=$1 |
1200 | if [ -z "${lic}" ] ; then |
1276 | if [ -z "${lic}" ] ; then |
1201 | lic="${PORTDIR}/licenses/${LICENSE}" |
1277 | lic="${PORTDIR}/licenses/${LICENSE}" |
1202 | else |
1278 | else |
… | |
… | |
1230 | The following license outlines the terms of use of this |
1306 | The following license outlines the terms of use of this |
1231 | package. You MUST accept this license for installation to |
1307 | package. You MUST accept this license for installation to |
1232 | continue. When you are done viewing, hit 'q'. If you |
1308 | continue. When you are done viewing, hit 'q'. If you |
1233 | CTRL+C out of this, the install will not run! |
1309 | CTRL+C out of this, the install will not run! |
1234 | ********************************************************** |
1310 | ********************************************************** |
1235 | |
1311 | |
1236 | EOF |
1312 | EOF |
1237 | cat ${lic} >> ${licmsg} |
1313 | cat ${lic} >> ${licmsg} |
1238 | ${PAGER:-less} ${licmsg} || die "Could not execute pager (${PAGER}) to accept ${lic}" |
1314 | ${PAGER:-less} ${licmsg} || die "Could not execute pager (${PAGER}) to accept ${lic}" |
1239 | einfon "Do you accept the terms of this license (${l})? [yes/no] " |
1315 | einfon "Do you accept the terms of this license (${l})? [yes/no] " |
1240 | read alic |
1316 | read alic |
… | |
… | |
1248 | die "Failed to accept license" |
1324 | die "Failed to accept license" |
1249 | ;; |
1325 | ;; |
1250 | esac |
1326 | esac |
1251 | } |
1327 | } |
1252 | |
1328 | |
|
|
1329 | # @FUNCTION: cdrom_get_cds |
|
|
1330 | # @USAGE: <file on cd1> [file on cd2] [file on cd3] [...] |
|
|
1331 | # @DESCRIPTION: |
1253 | # Aquire cd(s) for those lovely cd-based emerges. Yes, this violates |
1332 | # Aquire cd(s) for those lovely cd-based emerges. Yes, this violates |
1254 | # the whole 'non-interactive' policy, but damnit I want CD support ! |
1333 | # the whole 'non-interactive' policy, but damnit I want CD support ! |
1255 | # |
1334 | # |
1256 | # with these cdrom functions we handle all the user interaction and |
1335 | # With these cdrom functions we handle all the user interaction and |
1257 | # standardize everything. all you have to do is call cdrom_get_cds() |
1336 | # standardize everything. All you have to do is call cdrom_get_cds() |
1258 | # and when the function returns, you can assume that the cd has been |
1337 | # and when the function returns, you can assume that the cd has been |
1259 | # found at CDROM_ROOT. |
1338 | # found at CDROM_ROOT. |
1260 | # |
1339 | # |
|
|
1340 | # The function will attempt to locate a cd based upon a file that is on |
|
|
1341 | # the cd. The more files you give this function, the more cds |
|
|
1342 | # the cdrom functions will handle. |
|
|
1343 | # |
1261 | # normally the cdrom functions will refer to the cds as 'cd #1', 'cd #2', |
1344 | # Normally the cdrom functions will refer to the cds as 'cd #1', 'cd #2', |
1262 | # etc... if you want to give the cds better names, then just export |
1345 | # etc... If you want to give the cds better names, then just export |
1263 | # the appropriate CDROM_NAME variable before calling cdrom_get_cds(). |
1346 | # the appropriate CDROM_NAME variable before calling cdrom_get_cds(). |
1264 | # - CDROM_NAME="fooie cd" - for when you only want 1 cd |
1347 | # Use CDROM_NAME for one cd, or CDROM_NAME_# for multiple cds. You can |
1265 | # - CDROM_NAME_1="install cd" - for when you want more than 1 cd |
1348 | # also use the CDROM_NAME_SET bash array. |
1266 | # CDROM_NAME_2="data cd" |
|
|
1267 | # - CDROM_NAME_SET=( "install cd" "data cd" ) - short hand for CDROM_NAME_# |
|
|
1268 | # |
1349 | # |
1269 | # for those multi cd ebuilds, see the cdrom_load_next_cd() below. |
1350 | # For those multi cd ebuilds, see the cdrom_load_next_cd() function. |
1270 | # |
|
|
1271 | # Usage: cdrom_get_cds <file on cd1> [file on cd2] [file on cd3] [...] |
|
|
1272 | # - this will attempt to locate a cd based upon a file that is on |
|
|
1273 | # the cd ... the more files you give this function, the more cds |
|
|
1274 | # the cdrom functions will handle |
|
|
1275 | cdrom_get_cds() { |
1351 | cdrom_get_cds() { |
1276 | # first we figure out how many cds we're dealing with by |
1352 | # first we figure out how many cds we're dealing with by |
1277 | # the # of files they gave us |
1353 | # the # of files they gave us |
1278 | local cdcnt=0 |
1354 | local cdcnt=0 |
1279 | local f= |
1355 | local f= |
… | |
… | |
1365 | export CDROM_SET="" |
1441 | export CDROM_SET="" |
1366 | export CDROM_CURRENT_CD=0 |
1442 | export CDROM_CURRENT_CD=0 |
1367 | cdrom_load_next_cd |
1443 | cdrom_load_next_cd |
1368 | } |
1444 | } |
1369 | |
1445 | |
1370 | # this is only used when you need access to more than one cd. |
1446 | # @FUNCTION: cdrom_load_next_cd |
1371 | # when you have finished using the first cd, just call this function. |
1447 | # @DESCRIPTION: |
1372 | # when it returns, CDROM_ROOT will be pointing to the second cd. |
1448 | # Some packages are so big they come on multiple CDs. When you're done reading |
1373 | # remember, you can only go forward in the cd chain, you can't go back. |
1449 | # files off a CD and want access to the next one, just call this function. |
|
|
1450 | # Again, all the messy details of user interaction are taken care of for you. |
|
|
1451 | # Once this returns, just read the variable CDROM_ROOT for the location of the |
|
|
1452 | # mounted CD. Note that you can only go forward in the CD list, so make sure |
|
|
1453 | # you only call this function when you're done using the current CD. |
1374 | cdrom_load_next_cd() { |
1454 | cdrom_load_next_cd() { |
1375 | local var |
1455 | local var |
1376 | ((++CDROM_CURRENT_CD)) |
1456 | ((++CDROM_CURRENT_CD)) |
1377 | |
1457 | |
1378 | unset CDROM_ROOT |
1458 | unset CDROM_ROOT |
… | |
… | |
1395 | # displayed and we'll hang out here until: |
1475 | # displayed and we'll hang out here until: |
1396 | # (1) the file is found on a mounted cdrom |
1476 | # (1) the file is found on a mounted cdrom |
1397 | # (2) the user hits CTRL+C |
1477 | # (2) the user hits CTRL+C |
1398 | _cdrom_locate_file_on_cd() { |
1478 | _cdrom_locate_file_on_cd() { |
1399 | local mline="" |
1479 | local mline="" |
1400 | local showedmsg=0 |
1480 | local showedmsg=0 showjolietmsg=0 |
1401 | |
1481 | |
1402 | while [[ -z ${CDROM_ROOT} ]] ; do |
1482 | while [[ -z ${CDROM_ROOT} ]] ; do |
1403 | local i=0 |
1483 | local i=0 |
1404 | local -a cdset=(${*//:/ }) |
1484 | local -a cdset=(${*//:/ }) |
1405 | if [[ -n ${CDROM_SET} ]] ; then |
1485 | if [[ -n ${CDROM_SET} ]] ; then |
… | |
… | |
1414 | while read point node fs foo ; do |
1494 | while read point node fs foo ; do |
1415 | [[ " cd9660 iso9660 udf " != *" ${fs} "* ]] && \ |
1495 | [[ " cd9660 iso9660 udf " != *" ${fs} "* ]] && \ |
1416 | ! [[ ${fs} == "subfs" && ",${opts}," == *",fs=cdfss,"* ]] \ |
1496 | ! [[ ${fs} == "subfs" && ",${opts}," == *",fs=cdfss,"* ]] \ |
1417 | && continue |
1497 | && continue |
1418 | point=${point//\040/ } |
1498 | point=${point//\040/ } |
|
|
1499 | [[ ! -d ${point}/${dir} ]] && continue |
1419 | [[ -z $(find "${point}/${dir}" -maxdepth 1 -iname "${file}") ]] && continue |
1500 | [[ -z $(find "${point}/${dir}" -maxdepth 1 -iname "${file}") ]] && continue |
1420 | export CDROM_ROOT=${point} |
1501 | export CDROM_ROOT=${point} |
1421 | export CDROM_SET=${i} |
1502 | export CDROM_SET=${i} |
1422 | export CDROM_MATCH=${cdset[${i}]} |
1503 | export CDROM_MATCH=${cdset[${i}]} |
1423 | return |
1504 | return |
… | |
… | |
1445 | showedmsg=1 |
1526 | showedmsg=1 |
1446 | fi |
1527 | fi |
1447 | einfo "Press return to scan for the cd again" |
1528 | einfo "Press return to scan for the cd again" |
1448 | einfo "or hit CTRL+C to abort the emerge." |
1529 | einfo "or hit CTRL+C to abort the emerge." |
1449 | echo |
1530 | echo |
|
|
1531 | if [[ ${showjolietmsg} -eq 0 ]] ; then |
|
|
1532 | showjolietmsg=1 |
|
|
1533 | else |
1450 | einfo "If you are having trouble with the detection" |
1534 | ewarn "If you are having trouble with the detection" |
1451 | einfo "of your CD, it is possible that you do not have" |
1535 | ewarn "of your CD, it is possible that you do not have" |
1452 | einfo "Joliet support enabled in your kernel. Please" |
1536 | ewarn "Joliet support enabled in your kernel. Please" |
1453 | einfo "check that CONFIG_JOLIET is enabled in your kernel." |
1537 | ewarn "check that CONFIG_JOLIET is enabled in your kernel." |
|
|
1538 | ebeep 5 |
|
|
1539 | fi |
1454 | read || die "something is screwed with your system" |
1540 | read || die "something is screwed with your system" |
1455 | done |
1541 | done |
1456 | } |
1542 | } |
1457 | |
1543 | |
|
|
1544 | # @FUNCTION: strip-linguas |
|
|
1545 | # @USAGE: [<allow LINGUAS>|<-i|-u> <directories of .po files>] |
|
|
1546 | # @DESCRIPTION: |
1458 | # Make sure that LINGUAS only contains languages that |
1547 | # Make sure that LINGUAS only contains languages that |
1459 | # a package can support |
1548 | # a package can support. The first form allows you to |
1460 | # |
1549 | # specify a list of LINGUAS. The -i builds a list of po |
1461 | # usage: strip-linguas <allow LINGUAS> |
1550 | # files found in all the directories and uses the |
1462 | # strip-linguas -i <directories of .po files> |
1551 | # intersection of the lists. The -u builds a list of po |
1463 | # strip-linguas -u <directories of .po files> |
1552 | # files found in all the directories and uses the union |
1464 | # |
1553 | # of the lists. |
1465 | # The first form allows you to specify a list of LINGUAS. |
|
|
1466 | # The -i builds a list of po files found in all the |
|
|
1467 | # directories and uses the intersection of the lists. |
|
|
1468 | # The -u builds a list of po files found in all the |
|
|
1469 | # directories and uses the union of the lists. |
|
|
1470 | strip-linguas() { |
1554 | strip-linguas() { |
1471 | local ls newls nols |
1555 | local ls newls nols |
1472 | if [[ $1 == "-i" ]] || [[ $1 == "-u" ]] ; then |
1556 | if [[ $1 == "-i" ]] || [[ $1 == "-u" ]] ; then |
1473 | local op=$1; shift |
1557 | local op=$1; shift |
1474 | ls=$(find "$1" -name '*.po' -exec basename {} .po \;); shift |
1558 | ls=$(find "$1" -name '*.po' -exec basename {} .po \;); shift |
… | |
… | |
1504 | [[ -n ${nols} ]] \ |
1588 | [[ -n ${nols} ]] \ |
1505 | && ewarn "Sorry, but ${PN} does not support the LINGUAs:" ${nols} |
1589 | && ewarn "Sorry, but ${PN} does not support the LINGUAs:" ${nols} |
1506 | export LINGUAS=${newls:1} |
1590 | export LINGUAS=${newls:1} |
1507 | } |
1591 | } |
1508 | |
1592 | |
1509 | # moved from kernel.eclass since they are generally useful outside of |
1593 | # @FUNCTION: preserve_old_lib |
1510 | # kernel.eclass -iggy (20041002) |
1594 | # @USAGE: <libs to preserve> [more libs] |
1511 | |
1595 | # @DESCRIPTION: |
1512 | # the following functions are useful in kernel module ebuilds, etc. |
|
|
1513 | # for an example see ivtv or drbd ebuilds |
|
|
1514 | |
|
|
1515 | # set's ARCH to match what the kernel expects |
|
|
1516 | set_arch_to_kernel() { |
|
|
1517 | i=10 |
|
|
1518 | while ((i--)) ; do |
|
|
1519 | ewarn "PLEASE UPDATE TO YOUR PACKAGE TO USE linux-info.eclass" |
|
|
1520 | done |
|
|
1521 | export EUTILS_ECLASS_PORTAGE_ARCH="${ARCH}" |
|
|
1522 | case ${ARCH} in |
|
|
1523 | x86) export ARCH="i386";; |
|
|
1524 | amd64) export ARCH="x86_64";; |
|
|
1525 | hppa) export ARCH="parisc";; |
|
|
1526 | mips) export ARCH="mips";; |
|
|
1527 | 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! |
|
|
1528 | *) export ARCH="${ARCH}";; |
|
|
1529 | esac |
|
|
1530 | } |
|
|
1531 | |
|
|
1532 | # set's ARCH back to what portage expects |
|
|
1533 | set_arch_to_portage() { |
|
|
1534 | i=10 |
|
|
1535 | while ((i--)) ; do |
|
|
1536 | ewarn "PLEASE UPDATE TO YOUR PACKAGE TO USE linux-info.eclass" |
|
|
1537 | done |
|
|
1538 | export ARCH="${EUTILS_ECLASS_PORTAGE_ARCH}" |
|
|
1539 | } |
|
|
1540 | |
|
|
1541 | # Jeremy Huddleston <eradicator@gentoo.org>: |
|
|
1542 | # preserve_old_lib /path/to/libblah.so.0 |
|
|
1543 | # preserve_old_lib_notify /path/to/libblah.so.0 |
|
|
1544 | # |
|
|
1545 | # These functions are useful when a lib in your package changes --library. Such |
1596 | # These functions are useful when a lib in your package changes ABI SONAME. |
1546 | # an example might be from libogg.so.0 to libogg.so.1. Removing libogg.so.0 |
1597 | # An example might be from libogg.so.0 to libogg.so.1. Removing libogg.so.0 |
1547 | # would break packages that link against it. Most people get around this |
1598 | # would break packages that link against it. Most people get around this |
1548 | # by using the portage SLOT mechanism, but that is not always a relevant |
1599 | # by using the portage SLOT mechanism, but that is not always a relevant |
1549 | # solution, so instead you can add the following to your ebuilds: |
1600 | # solution, so instead you can call this from pkg_preinst. See also the |
1550 | # |
1601 | # preserve_old_lib_notify function. |
1551 | # pkg_preinst() { |
|
|
1552 | # ... |
|
|
1553 | # preserve_old_lib /usr/$(get_libdir)/libogg.so.0 |
|
|
1554 | # ... |
|
|
1555 | # } |
|
|
1556 | # |
|
|
1557 | # pkg_postinst() { |
|
|
1558 | # ... |
|
|
1559 | # preserve_old_lib_notify /usr/$(get_libdir)/libogg.so.0 |
|
|
1560 | # ... |
|
|
1561 | # } |
|
|
1562 | |
|
|
1563 | preserve_old_lib() { |
1602 | preserve_old_lib() { |
1564 | if [[ ${EBUILD_PHASE} != "preinst" ]] ; then |
1603 | if [[ ${EBUILD_PHASE} != "preinst" ]] ; then |
1565 | eerror "preserve_old_lib() must be called from pkg_preinst() only" |
1604 | eerror "preserve_old_lib() must be called from pkg_preinst() only" |
1566 | die "Invalid preserve_old_lib() usage" |
1605 | die "Invalid preserve_old_lib() usage" |
1567 | fi |
1606 | fi |
1568 | [[ -z $1 ]] && die "Usage: preserve_old_lib <library to preserve> [more libraries to preserve]" |
1607 | [[ -z $1 ]] && die "Usage: preserve_old_lib <library to preserve> [more libraries to preserve]" |
|
|
1608 | |
|
|
1609 | # let portage worry about it |
|
|
1610 | has preserve-libs ${FEATURES} && return 0 |
1569 | |
1611 | |
1570 | local lib dir |
1612 | local lib dir |
1571 | for lib in "$@" ; do |
1613 | for lib in "$@" ; do |
1572 | [[ -e ${ROOT}/${lib} ]] || continue |
1614 | [[ -e ${ROOT}/${lib} ]] || continue |
1573 | dir=${lib%/*} |
1615 | dir=${lib%/*} |
… | |
… | |
1575 | cp "${ROOT}"/${lib} "${D}"/${lib} || die "cp ${lib} failed" |
1617 | cp "${ROOT}"/${lib} "${D}"/${lib} || die "cp ${lib} failed" |
1576 | touch "${D}"/${lib} |
1618 | touch "${D}"/${lib} |
1577 | done |
1619 | done |
1578 | } |
1620 | } |
1579 | |
1621 | |
|
|
1622 | # @FUNCTION: preserve_old_lib_notify |
|
|
1623 | # @USAGE: <libs to notify> [more libs] |
|
|
1624 | # @DESCRIPTION: |
|
|
1625 | # Spit helpful messages about the libraries preserved by preserve_old_lib. |
1580 | preserve_old_lib_notify() { |
1626 | preserve_old_lib_notify() { |
1581 | if [[ ${EBUILD_PHASE} != "postinst" ]] ; then |
1627 | if [[ ${EBUILD_PHASE} != "postinst" ]] ; then |
1582 | eerror "preserve_old_lib_notify() must be called from pkg_postinst() only" |
1628 | eerror "preserve_old_lib_notify() must be called from pkg_postinst() only" |
1583 | die "Invalid preserve_old_lib_notify() usage" |
1629 | die "Invalid preserve_old_lib_notify() usage" |
1584 | fi |
1630 | fi |
|
|
1631 | |
|
|
1632 | # let portage worry about it |
|
|
1633 | has preserve-libs ${FEATURES} && return 0 |
1585 | |
1634 | |
1586 | local lib notice=0 |
1635 | local lib notice=0 |
1587 | for lib in "$@" ; do |
1636 | for lib in "$@" ; do |
1588 | [[ -e ${ROOT}/${lib} ]] || continue |
1637 | [[ -e ${ROOT}/${lib} ]] || continue |
1589 | if [[ ${notice} -eq 0 ]] ; then |
1638 | if [[ ${notice} -eq 0 ]] ; then |
… | |
… | |
1595 | ewarn "helper program, simply emerge the 'gentoolkit' package." |
1644 | ewarn "helper program, simply emerge the 'gentoolkit' package." |
1596 | ewarn |
1645 | ewarn |
1597 | fi |
1646 | fi |
1598 | ewarn " # revdep-rebuild --library ${lib##*/}" |
1647 | ewarn " # revdep-rebuild --library ${lib##*/}" |
1599 | done |
1648 | done |
|
|
1649 | if [[ ${notice} -eq 1 ]] ; then |
|
|
1650 | ewarn |
|
|
1651 | ewarn "Once you've finished running revdep-rebuild, it should be safe to" |
|
|
1652 | ewarn "delete the old libraries. Here is a copy & paste for the lazy:" |
|
|
1653 | for lib in "$@" ; do |
|
|
1654 | ewarn " # rm '${lib}'" |
|
|
1655 | done |
|
|
1656 | fi |
1600 | } |
1657 | } |
1601 | |
1658 | |
1602 | # Hack for people to figure out if a package was built with |
1659 | # @FUNCTION: built_with_use |
1603 | # certain USE flags |
|
|
1604 | # |
|
|
1605 | # Usage: built_with_use [--missing <action>] [-a|-o] <DEPEND ATOM> <List of USE flags> |
1660 | # @USAGE: [--hidden] [--missing <action>] [-a|-o] <DEPEND ATOM> <List of USE flags> |
1606 | # ex: built_with_use xchat gtk2 |
1661 | # @DESCRIPTION: |
|
|
1662 | # A temporary hack until portage properly supports DEPENDing on USE |
|
|
1663 | # flags being enabled in packages. This will check to see if the specified |
|
|
1664 | # DEPEND atom was built with the specified list of USE flags. The |
|
|
1665 | # --missing option controls the behavior if called on a package that does |
|
|
1666 | # not actually support the defined USE flags (aka listed in IUSE). |
|
|
1667 | # The default is to abort (call die). The -a and -o flags control |
|
|
1668 | # the requirements of the USE flags. They correspond to "and" and "or" |
|
|
1669 | # logic. So the -a flag means all listed USE flags must be enabled |
|
|
1670 | # while the -o flag means at least one of the listed IUSE flags must be |
|
|
1671 | # enabled. The --hidden option is really for internal use only as it |
|
|
1672 | # means the USE flag we're checking is hidden expanded, so it won't be found |
|
|
1673 | # in IUSE like normal USE flags. |
1607 | # |
1674 | # |
1608 | # Flags: -a all USE flags should be utilized |
1675 | # Remember that this function isn't terribly intelligent so order of optional |
1609 | # -o at least one USE flag should be utilized |
1676 | # flags matter. |
1610 | # --missing peform the specified action if the flag is not in IUSE (true/false/die) |
|
|
1611 | # --hidden USE flag we're checking is hidden expanded so it isnt in IUSE |
|
|
1612 | # Note: the default flag is '-a' |
|
|
1613 | built_with_use() { |
1677 | built_with_use() { |
1614 | local hidden="no" |
1678 | local hidden="no" |
1615 | if [[ $1 == "--hidden" ]] ; then |
1679 | if [[ $1 == "--hidden" ]] ; then |
1616 | hidden="yes" |
1680 | hidden="yes" |
1617 | shift |
1681 | shift |
… | |
… | |
1646 | die) die "Unable to determine what USE flags $PKG was built with";; |
1710 | die) die "Unable to determine what USE flags $PKG was built with";; |
1647 | esac |
1711 | esac |
1648 | fi |
1712 | fi |
1649 | |
1713 | |
1650 | if [[ ${hidden} == "no" ]] ; then |
1714 | if [[ ${hidden} == "no" ]] ; then |
1651 | local IUSE_BUILT=$(<${IUSEFILE}) |
1715 | local IUSE_BUILT=( $(<"${IUSEFILE}") ) |
1652 | # Don't check USE_EXPAND #147237 |
1716 | # Don't check USE_EXPAND #147237 |
1653 | local expand |
1717 | local expand |
1654 | for expand in $(echo ${USE_EXPAND} | tr '[:upper:]' '[:lower:]') ; do |
1718 | for expand in $(echo ${USE_EXPAND} | tr '[:upper:]' '[:lower:]') ; do |
1655 | if [[ $1 == ${expand}_* ]] ; then |
1719 | if [[ $1 == ${expand}_* ]] ; then |
1656 | expand="" |
1720 | expand="" |
1657 | break |
1721 | break |
1658 | fi |
1722 | fi |
1659 | done |
1723 | done |
1660 | if [[ -n ${expand} ]] ; then |
1724 | if [[ -n ${expand} ]] ; then |
1661 | if ! has $1 ${IUSE_BUILT} ; then |
1725 | if ! has $1 ${IUSE_BUILT[@]#[-+]} ; then |
1662 | case ${missing_action} in |
1726 | case ${missing_action} in |
1663 | true) return 0;; |
1727 | true) return 0;; |
1664 | false) return 1;; |
1728 | false) return 1;; |
1665 | die) die "$PKG does not actually support the $1 USE flag!";; |
1729 | die) die "$PKG does not actually support the $1 USE flag!";; |
1666 | esac |
1730 | esac |
… | |
… | |
1678 | shift |
1742 | shift |
1679 | done |
1743 | done |
1680 | [[ ${opt} = "-a" ]] |
1744 | [[ ${opt} = "-a" ]] |
1681 | } |
1745 | } |
1682 | |
1746 | |
|
|
1747 | # @FUNCTION: epunt_cxx |
|
|
1748 | # @USAGE: [dir to scan] |
|
|
1749 | # @DESCRIPTION: |
1683 | # Many configure scripts wrongly bail when a C++ compiler |
1750 | # Many configure scripts wrongly bail when a C++ compiler could not be |
1684 | # could not be detected. #73450 |
1751 | # detected. If dir is not specified, then it defaults to ${S}. |
|
|
1752 | # |
|
|
1753 | # http://bugs.gentoo.org/73450 |
1685 | epunt_cxx() { |
1754 | epunt_cxx() { |
1686 | local dir=$1 |
1755 | local dir=$1 |
1687 | [[ -z ${dir} ]] && dir=${S} |
1756 | [[ -z ${dir} ]] && dir=${S} |
1688 | ebegin "Removing useless C++ checks" |
1757 | ebegin "Removing useless C++ checks" |
1689 | local f |
1758 | local f |
1690 | for f in $(find ${dir} -name configure) ; do |
1759 | find "${dir}" -name configure | while read f ; do |
1691 | patch -p0 "${f}" "${PORTDIR}/eclass/ELT-patches/nocxx/nocxx.patch" > /dev/null |
1760 | patch --no-backup-if-mismatch -p0 "${f}" "${PORTDIR}/eclass/ELT-patches/nocxx/nocxx.patch" > /dev/null |
1692 | done |
1761 | done |
1693 | eend 0 |
1762 | eend 0 |
1694 | } |
1763 | } |
1695 | |
1764 | |
1696 | # make a wrapper script ... |
1765 | # @FUNCTION: make_wrapper |
1697 | # NOTE: this was originally games_make_wrapper, but I noticed other places where |
1766 | # @USAGE: <wrapper> <target> [chdir] [libpaths] [installpath] |
1698 | # this could be used, so I have moved it here and made it not games-specific |
1767 | # @DESCRIPTION: |
1699 | # -- wolf31o2 |
1768 | # Create a shell wrapper script named wrapper in installpath |
1700 | # $1 == wrapper name |
1769 | # (defaults to the bindir) to execute target (default of wrapper) by |
1701 | # $2 == binary to run |
1770 | # first optionally setting LD_LIBRARY_PATH to the colon-delimited |
1702 | # $3 == directory to chdir before running binary |
1771 | # libpaths followed by optionally changing directory to chdir. |
1703 | # $4 == extra LD_LIBRARY_PATH's (make it : delimited) |
|
|
1704 | # $5 == path for wrapper |
|
|
1705 | make_wrapper() { |
1772 | make_wrapper() { |
1706 | local wrapper=$1 bin=$2 chdir=$3 libdir=$4 path=$5 |
1773 | local wrapper=$1 bin=$2 chdir=$3 libdir=$4 path=$5 |
1707 | local tmpwrapper=$(emktemp) |
1774 | local tmpwrapper=$(emktemp) |
1708 | # We don't want to quote ${bin} so that people can pass complex |
1775 | # We don't want to quote ${bin} so that people can pass complex |
1709 | # things as $bin ... "./someprog --args" |
1776 | # things as $bin ... "./someprog --args" |
… | |
… | |
1719 | fi |
1786 | fi |
1720 | exec ${bin} "\$@" |
1787 | exec ${bin} "\$@" |
1721 | EOF |
1788 | EOF |
1722 | chmod go+rx "${tmpwrapper}" |
1789 | chmod go+rx "${tmpwrapper}" |
1723 | if [[ -n ${path} ]] ; then |
1790 | if [[ -n ${path} ]] ; then |
|
|
1791 | ( |
1724 | exeinto "${path}" |
1792 | exeinto "${path}" |
1725 | newexe "${tmpwrapper}" "${wrapper}" |
1793 | newexe "${tmpwrapper}" "${wrapper}" |
|
|
1794 | ) || die |
1726 | else |
1795 | else |
1727 | newbin "${tmpwrapper}" "${wrapper}" |
1796 | newbin "${tmpwrapper}" "${wrapper}" || die |
1728 | fi |
1797 | fi |
1729 | } |
1798 | } |