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