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