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