| 1 |
vapier |
1.90 |
# Copyright 1999-2004 Gentoo Foundation |
| 2 |
azarah |
1.1 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 |
chriswhite |
1.144 |
# $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.143 2005/01/26 16:19:12 ka0ttic Exp $ |
| 4 |
vapier |
1.18 |
# |
| 5 |
azarah |
1.1 |
# Author: Martin Schlemmer <azarah@gentoo.org> |
| 6 |
vapier |
1.18 |
# |
| 7 |
azarah |
1.1 |
# This eclass is for general purpose functions that most ebuilds |
| 8 |
vapier |
1.7 |
# have to implement themselves. |
| 9 |
azarah |
1.1 |
# |
| 10 |
|
|
# NB: If you add anything, please comment it! |
| 11 |
|
|
|
| 12 |
eradicator |
1.141 |
inherit multilib |
| 13 |
azarah |
1.1 |
ECLASS=eutils |
| 14 |
|
|
INHERITED="$INHERITED $ECLASS" |
| 15 |
|
|
|
| 16 |
vapier |
1.83 |
DEPEND="!bootstrap? ( sys-devel/patch )" |
| 17 |
azarah |
1.1 |
|
| 18 |
vapier |
1.22 |
DESCRIPTION="Based on the ${ECLASS} eclass" |
| 19 |
azarah |
1.1 |
|
| 20 |
chriswhite |
1.144 |
# ecpu_check |
| 21 |
|
|
# Usage: |
| 22 |
|
|
# |
| 23 |
|
|
# ecpu_check array_of_cpu_flags |
| 24 |
|
|
# |
| 25 |
|
|
# array_of_cpu_flags - An array of cpu flags to check against USE flags |
| 26 |
|
|
# |
| 27 |
|
|
# Checks user USE related cpu flags against /proc/cpuinfo. If user enables a |
| 28 |
|
|
# cpu flag that is not supported in their processor flags, it will warn the |
| 29 |
|
|
# user if CROSSCOMPILE is not set to 1 ( because cross compile users are |
| 30 |
|
|
# obviously using different cpu flags than their own cpu ). Examples: |
| 31 |
|
|
# |
| 32 |
|
|
# CPU_FLAGS=(mmx mmx2 sse sse2) |
| 33 |
|
|
# ecpu_check CPU_FLAGS |
| 34 |
|
|
# Chris White <chriswhite@gentoo.org> (03 Feb 2005) |
| 35 |
|
|
|
| 36 |
|
|
ecpu_check() { |
| 37 |
|
|
CPU_FLAGS=$1 |
| 38 |
|
|
USER_CPU=`grep "flags" /proc/cpuinfo` |
| 39 |
|
|
|
| 40 |
|
|
for flags in `seq 1 ${#CPU_FLAGS[@]}` |
| 41 |
|
|
do |
| 42 |
|
|
if has ${CPU_FLAGS[$flags - 1]} $USER_CPU && ! has ${CPU_FLAGS[$flags - 1]} $USE |
| 43 |
|
|
then |
| 44 |
|
|
ewarn "Your system is ${CPU_FLAGS[$flags - 1]} capable but you don't have it enabled!" |
| 45 |
|
|
ewarn "You might be cross compiling (in this case set CROSSCOMPILE to 1 to disable this warning." |
| 46 |
|
|
fi |
| 47 |
|
|
|
| 48 |
|
|
if ! has ${CPU_FLAGS[$flags - 1]} $USER_CPU && has ${CPU_FLAGS[$flags -1]} $USE |
| 49 |
|
|
then |
| 50 |
|
|
ewarn "You have ${CPU_FLAGS[$flags - 1]} support enabled but your processor doesn't" |
| 51 |
|
|
ewarn "Seem to support it! You might be cross compiling or do not have /proc filesystem" |
| 52 |
|
|
ewarn "enabled. If either is the case, set CROSSCOMPILE to 1 to disable this warning." |
| 53 |
|
|
fi |
| 54 |
|
|
done |
| 55 |
|
|
} |
| 56 |
|
|
|
| 57 |
ciaranm |
1.98 |
# Wait for the supplied number of seconds. If no argument is supplied, defaults |
| 58 |
|
|
# to five seconds. If the EPAUSE_IGNORE env var is set, don't wait. If we're not |
| 59 |
|
|
# outputting to a terminal, don't wait. For compatability purposes, the argument |
| 60 |
|
|
# must be an integer greater than zero. |
| 61 |
|
|
# Bug 62950, Ciaran McCreesh <ciaranm@gentoo.org> (05 Sep 2004) |
| 62 |
|
|
epause() { |
| 63 |
|
|
if [ -z "$EPAUSE_IGNORE" ] && [ -t 1 ] ; then |
| 64 |
|
|
sleep ${1:-5} |
| 65 |
|
|
fi |
| 66 |
|
|
} |
| 67 |
|
|
|
| 68 |
|
|
# Beep the specified number of times (defaults to five). If our output |
| 69 |
|
|
# is not a terminal, don't beep. If the EBEEP_IGNORE env var is set, |
| 70 |
|
|
# don't beep. |
| 71 |
|
|
# Bug 62950, Ciaran McCreesh <ciaranm@gentoo.org> (05 Sep 2004) |
| 72 |
|
|
ebeep() { |
| 73 |
|
|
local n |
| 74 |
|
|
if [ -z "$EBEEP_IGNORE" ] && [ -t 1 ] ; then |
| 75 |
|
|
for ((n=1 ; n <= ${1:-5} ; n++)) ; do |
| 76 |
|
|
echo -ne "\a" |
| 77 |
|
|
sleep 0.1 &>/dev/null ; sleep 0,1 &>/dev/null |
| 78 |
|
|
echo -ne "\a" |
| 79 |
|
|
sleep 1 |
| 80 |
|
|
done |
| 81 |
|
|
fi |
| 82 |
|
|
} |
| 83 |
|
|
|
| 84 |
azarah |
1.1 |
# This function generate linker scripts in /usr/lib for dynamic |
| 85 |
|
|
# libs in /lib. This is to fix linking problems when you have |
| 86 |
|
|
# the .so in /lib, and the .a in /usr/lib. What happens is that |
| 87 |
|
|
# in some cases when linking dynamic, the .a in /usr/lib is used |
| 88 |
|
|
# instead of the .so in /lib due to gcc/libtool tweaking ld's |
| 89 |
|
|
# library search path. This cause many builds to fail. |
| 90 |
|
|
# See bug #4411 for more info. |
| 91 |
|
|
# |
| 92 |
|
|
# To use, simply call: |
| 93 |
|
|
# |
| 94 |
|
|
# gen_usr_ldscript libfoo.so |
| 95 |
|
|
# |
| 96 |
|
|
# Note that you should in general use the unversioned name of |
| 97 |
|
|
# the library, as ldconfig should usually update it correctly |
| 98 |
|
|
# to point to the latest version of the library present. |
| 99 |
|
|
# |
| 100 |
|
|
# <azarah@gentoo.org> (26 Oct 2002) |
| 101 |
|
|
# |
| 102 |
|
|
gen_usr_ldscript() { |
| 103 |
vapier |
1.109 |
local libdir="$(get_libdir)" |
| 104 |
azarah |
1.1 |
# Just make sure it exists |
| 105 |
vapier |
1.109 |
dodir /usr/${libdir} |
| 106 |
danarmak |
1.32 |
|
| 107 |
vapier |
1.109 |
cat > "${D}/usr/${libdir}/${1}" << END_LDSCRIPT |
| 108 |
azarah |
1.1 |
/* GNU ld script |
| 109 |
|
|
Because Gentoo have critical dynamic libraries |
| 110 |
|
|
in /lib, and the static versions in /usr/lib, we |
| 111 |
|
|
need to have a "fake" dynamic lib in /usr/lib, |
| 112 |
|
|
otherwise we run into linking problems. |
| 113 |
|
|
See bug #4411 on http://bugs.gentoo.org/ for |
| 114 |
|
|
more info. */ |
| 115 |
vapier |
1.109 |
GROUP ( /${libdir}/${1} ) |
| 116 |
azarah |
1.1 |
END_LDSCRIPT |
| 117 |
vapier |
1.109 |
fperms a+x "/usr/${libdir}/${1}" |
| 118 |
azarah |
1.2 |
} |
| 119 |
|
|
|
| 120 |
azarah |
1.5 |
# Simple function to draw a line consisting of '=' the same length as $* |
| 121 |
|
|
# |
| 122 |
|
|
# <azarah@gentoo.org> (11 Nov 2002) |
| 123 |
|
|
# |
| 124 |
|
|
draw_line() { |
| 125 |
|
|
local i=0 |
| 126 |
|
|
local str_length="" |
| 127 |
|
|
|
| 128 |
|
|
# Handle calls that do not have args, or wc not being installed ... |
| 129 |
|
|
if [ -z "$1" -o ! -x "$(which wc 2>/dev/null)" ] |
| 130 |
|
|
then |
| 131 |
|
|
echo "===============================================================" |
| 132 |
|
|
return 0 |
| 133 |
|
|
fi |
| 134 |
|
|
|
| 135 |
|
|
# Get the length of $* |
| 136 |
|
|
str_length="$(echo -n "$*" | wc -m)" |
| 137 |
danarmak |
1.32 |
|
| 138 |
azarah |
1.5 |
while [ "$i" -lt "${str_length}" ] |
| 139 |
|
|
do |
| 140 |
|
|
echo -n "=" |
| 141 |
danarmak |
1.32 |
|
| 142 |
azarah |
1.5 |
i=$((i + 1)) |
| 143 |
|
|
done |
| 144 |
|
|
|
| 145 |
|
|
echo |
| 146 |
|
|
|
| 147 |
|
|
return 0 |
| 148 |
|
|
} |
| 149 |
azarah |
1.2 |
|
| 150 |
|
|
# Default directory where patches are located |
| 151 |
|
|
EPATCH_SOURCE="${WORKDIR}/patch" |
| 152 |
|
|
# Default extension for patches |
| 153 |
|
|
EPATCH_SUFFIX="patch.bz2" |
| 154 |
|
|
# Default options for patch |
| 155 |
solar |
1.55 |
# Set -g0 to keep RCS, ClearCase, Perforce and SCCS happy. Bug #24571 |
| 156 |
|
|
EPATCH_OPTS="-g0" |
| 157 |
azarah |
1.6 |
# List of patches not to apply. Not this is only file names, |
| 158 |
|
|
# and not the full path .. |
| 159 |
|
|
EPATCH_EXCLUDE="" |
| 160 |
azarah |
1.9 |
# Change the printed message for a single patch. |
| 161 |
|
|
EPATCH_SINGLE_MSG="" |
| 162 |
azarah |
1.29 |
# Force applying bulk patches even if not following the style: |
| 163 |
|
|
# |
| 164 |
|
|
# ??_${ARCH}_foo.${EPATCH_SUFFIX} |
| 165 |
|
|
# |
| 166 |
|
|
EPATCH_FORCE="no" |
| 167 |
azarah |
1.2 |
|
| 168 |
|
|
# This function is for bulk patching, or in theory for just one |
| 169 |
|
|
# or two patches. |
| 170 |
|
|
# |
| 171 |
|
|
# It should work with .bz2, .gz, .zip and plain text patches. |
| 172 |
|
|
# Currently all patches should be the same format. |
| 173 |
|
|
# |
| 174 |
|
|
# You do not have to specify '-p' option to patch, as it will |
| 175 |
|
|
# try with -p0 to -p5 until it succeed, or fail at -p5. |
| 176 |
|
|
# |
| 177 |
|
|
# Above EPATCH_* variables can be used to control various defaults, |
| 178 |
|
|
# bug they should be left as is to ensure an ebuild can rely on |
| 179 |
|
|
# them for. |
| 180 |
|
|
# |
| 181 |
azarah |
1.3 |
# Patches are applied in current directory. |
| 182 |
|
|
# |
| 183 |
|
|
# Bulk Patches should preferibly have the form of: |
| 184 |
azarah |
1.2 |
# |
| 185 |
|
|
# ??_${ARCH}_foo.${EPATCH_SUFFIX} |
| 186 |
|
|
# |
| 187 |
|
|
# For example: |
| 188 |
|
|
# |
| 189 |
|
|
# 01_all_misc-fix.patch.bz2 |
| 190 |
|
|
# 02_sparc_another-fix.patch.bz2 |
| 191 |
|
|
# |
| 192 |
|
|
# This ensures that there are a set order, and you can have ARCH |
| 193 |
|
|
# specific patches. |
| 194 |
|
|
# |
| 195 |
azarah |
1.3 |
# If you however give an argument to epatch(), it will treat it as a |
| 196 |
|
|
# single patch that need to be applied if its a file. If on the other |
| 197 |
|
|
# hand its a directory, it will set EPATCH_SOURCE to this. |
| 198 |
|
|
# |
| 199 |
azarah |
1.2 |
# <azarah@gentoo.org> (10 Nov 2002) |
| 200 |
|
|
# |
| 201 |
|
|
epatch() { |
| 202 |
|
|
local PIPE_CMD="" |
| 203 |
|
|
local STDERR_TARGET="${T}/$$.out" |
| 204 |
azarah |
1.8 |
local PATCH_TARGET="${T}/$$.patch" |
| 205 |
|
|
local PATCH_SUFFIX="" |
| 206 |
azarah |
1.3 |
local SINGLE_PATCH="no" |
| 207 |
azarah |
1.4 |
local x="" |
| 208 |
azarah |
1.3 |
|
| 209 |
|
|
if [ "$#" -gt 1 ] |
| 210 |
|
|
then |
| 211 |
vapier |
1.94 |
local m="" |
| 212 |
vapier |
1.121 |
einfo "${#} patches to apply ..." |
| 213 |
vapier |
1.94 |
for m in "$@" ; do |
| 214 |
|
|
epatch "${m}" |
| 215 |
|
|
done |
| 216 |
|
|
return 0 |
| 217 |
azarah |
1.3 |
fi |
| 218 |
|
|
|
| 219 |
|
|
if [ -n "$1" -a -f "$1" ] |
| 220 |
|
|
then |
| 221 |
|
|
SINGLE_PATCH="yes" |
| 222 |
danarmak |
1.32 |
|
| 223 |
azarah |
1.4 |
local EPATCH_SOURCE="$1" |
| 224 |
|
|
local EPATCH_SUFFIX="${1##*\.}" |
| 225 |
danarmak |
1.32 |
|
| 226 |
azarah |
1.3 |
elif [ -n "$1" -a -d "$1" ] |
| 227 |
|
|
then |
| 228 |
azarah |
1.29 |
# Allow no extension if EPATCH_FORCE=yes ... used by vim for example ... |
| 229 |
|
|
if [ "${EPATCH_FORCE}" = "yes" ] && [ -z "${EPATCH_SUFFIX}" ] |
| 230 |
|
|
then |
| 231 |
|
|
local EPATCH_SOURCE="$1/*" |
| 232 |
|
|
else |
| 233 |
|
|
local EPATCH_SOURCE="$1/*.${EPATCH_SUFFIX}" |
| 234 |
|
|
fi |
| 235 |
azarah |
1.3 |
else |
| 236 |
vapier |
1.123 |
if [ ! -d ${EPATCH_SOURCE} ] || [ -n "$1" ] |
| 237 |
azarah |
1.8 |
then |
| 238 |
azarah |
1.19 |
if [ -n "$1" -a "${EPATCH_SOURCE}" = "${WORKDIR}/patch" ] |
| 239 |
|
|
then |
| 240 |
|
|
EPATCH_SOURCE="$1" |
| 241 |
|
|
fi |
| 242 |
|
|
|
| 243 |
azarah |
1.8 |
echo |
| 244 |
azarah |
1.11 |
eerror "Cannot find \$EPATCH_SOURCE! Value for \$EPATCH_SOURCE is:" |
| 245 |
|
|
eerror |
| 246 |
|
|
eerror " ${EPATCH_SOURCE}" |
| 247 |
vapier |
1.139 |
eerror " ( ${EPATCH_SOURCE##*/} )" |
| 248 |
azarah |
1.8 |
echo |
| 249 |
|
|
die "Cannot find \$EPATCH_SOURCE!" |
| 250 |
|
|
fi |
| 251 |
danarmak |
1.32 |
|
| 252 |
azarah |
1.4 |
local EPATCH_SOURCE="${EPATCH_SOURCE}/*.${EPATCH_SUFFIX}" |
| 253 |
azarah |
1.3 |
fi |
| 254 |
azarah |
1.2 |
|
| 255 |
|
|
case ${EPATCH_SUFFIX##*\.} in |
| 256 |
|
|
bz2) |
| 257 |
|
|
PIPE_CMD="bzip2 -dc" |
| 258 |
azarah |
1.8 |
PATCH_SUFFIX="bz2" |
| 259 |
azarah |
1.2 |
;; |
| 260 |
azarah |
1.6 |
gz|Z|z) |
| 261 |
azarah |
1.2 |
PIPE_CMD="gzip -dc" |
| 262 |
azarah |
1.8 |
PATCH_SUFFIX="gz" |
| 263 |
azarah |
1.2 |
;; |
| 264 |
azarah |
1.6 |
ZIP|zip) |
| 265 |
azarah |
1.2 |
PIPE_CMD="unzip -p" |
| 266 |
azarah |
1.8 |
PATCH_SUFFIX="zip" |
| 267 |
azarah |
1.2 |
;; |
| 268 |
|
|
*) |
| 269 |
|
|
PIPE_CMD="cat" |
| 270 |
azarah |
1.8 |
PATCH_SUFFIX="patch" |
| 271 |
azarah |
1.2 |
;; |
| 272 |
|
|
esac |
| 273 |
|
|
|
| 274 |
azarah |
1.3 |
if [ "${SINGLE_PATCH}" = "no" ] |
| 275 |
|
|
then |
| 276 |
vapier |
1.121 |
einfo "Applying various patches (bugfixes/updates) ..." |
| 277 |
azarah |
1.3 |
fi |
| 278 |
|
|
for x in ${EPATCH_SOURCE} |
| 279 |
azarah |
1.2 |
do |
| 280 |
vapier |
1.121 |
# New ARCH dependant patch naming scheme ... |
| 281 |
azarah |
1.2 |
# |
| 282 |
|
|
# ???_arch_foo.patch |
| 283 |
|
|
# |
| 284 |
|
|
if [ -f ${x} ] && \ |
| 285 |
azarah |
1.29 |
([ "${SINGLE_PATCH}" = "yes" -o "${x/_all_}" != "${x}" -o "`eval echo \$\{x/_${ARCH}_\}`" != "${x}" ] || \ |
| 286 |
|
|
[ "${EPATCH_FORCE}" = "yes" ]) |
| 287 |
azarah |
1.2 |
then |
| 288 |
|
|
local count=0 |
| 289 |
|
|
local popts="${EPATCH_OPTS}" |
| 290 |
azarah |
1.6 |
|
| 291 |
|
|
if [ -n "${EPATCH_EXCLUDE}" ] |
| 292 |
|
|
then |
| 293 |
azarah |
1.9 |
if [ "`eval echo \$\{EPATCH_EXCLUDE/${x##*/}\}`" != "${EPATCH_EXCLUDE}" ] |
| 294 |
azarah |
1.6 |
then |
| 295 |
|
|
continue |
| 296 |
|
|
fi |
| 297 |
|
|
fi |
| 298 |
danarmak |
1.32 |
|
| 299 |
azarah |
1.3 |
if [ "${SINGLE_PATCH}" = "yes" ] |
| 300 |
|
|
then |
| 301 |
azarah |
1.9 |
if [ -n "${EPATCH_SINGLE_MSG}" ] |
| 302 |
|
|
then |
| 303 |
|
|
einfo "${EPATCH_SINGLE_MSG}" |
| 304 |
|
|
else |
| 305 |
vapier |
1.121 |
einfo "Applying ${x##*/} ..." |
| 306 |
azarah |
1.9 |
fi |
| 307 |
azarah |
1.3 |
else |
| 308 |
vapier |
1.121 |
einfo " ${x##*/} ..." |
| 309 |
azarah |
1.3 |
fi |
| 310 |
azarah |
1.2 |
|
| 311 |
azarah |
1.8 |
echo "***** ${x##*/} *****" > ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
| 312 |
|
|
echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
| 313 |
azarah |
1.2 |
|
| 314 |
|
|
# Allow for prefix to differ ... im lazy, so shoot me :/ |
| 315 |
|
|
while [ "${count}" -lt 5 ] |
| 316 |
|
|
do |
| 317 |
azarah |
1.5 |
# Generate some useful debug info ... |
| 318 |
azarah |
1.8 |
draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
| 319 |
|
|
echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
| 320 |
|
|
|
| 321 |
|
|
if [ "${PATCH_SUFFIX}" != "patch" ] |
| 322 |
|
|
then |
| 323 |
|
|
echo -n "PIPE_COMMAND: " >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
| 324 |
|
|
echo "${PIPE_CMD} ${x} > ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
| 325 |
|
|
else |
| 326 |
|
|
PATCH_TARGET="${x}" |
| 327 |
|
|
fi |
| 328 |
danarmak |
1.32 |
|
| 329 |
azarah |
1.8 |
echo -n "PATCH COMMAND: " >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
| 330 |
vapier |
1.88 |
echo "patch -p${count} ${popts} < ${PATCH_TARGET}" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
| 331 |
danarmak |
1.32 |
|
| 332 |
azarah |
1.8 |
echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
| 333 |
|
|
draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
| 334 |
|
|
|
| 335 |
|
|
if [ "${PATCH_SUFFIX}" != "patch" ] |
| 336 |
|
|
then |
| 337 |
|
|
if ! (${PIPE_CMD} ${x} > ${PATCH_TARGET}) >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} 2>&1 |
| 338 |
|
|
then |
| 339 |
|
|
echo |
| 340 |
|
|
eerror "Could not extract patch!" |
| 341 |
|
|
#die "Could not extract patch!" |
| 342 |
|
|
count=5 |
| 343 |
|
|
break |
| 344 |
|
|
fi |
| 345 |
|
|
fi |
| 346 |
danarmak |
1.32 |
|
| 347 |
vapier |
1.88 |
if (cat ${PATCH_TARGET} | patch -p${count} ${popts} --dry-run -f) >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} 2>&1 |
| 348 |
azarah |
1.2 |
then |
| 349 |
azarah |
1.8 |
draw_line "***** ${x##*/} *****" > ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
| 350 |
|
|
echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
| 351 |
vapier |
1.121 |
echo "ACTUALLY APPLYING ${x##*/} ..." >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
| 352 |
azarah |
1.8 |
echo >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
| 353 |
|
|
draw_line "***** ${x##*/} *****" >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
| 354 |
|
|
|
| 355 |
vapier |
1.88 |
cat ${PATCH_TARGET} | patch -p${count} ${popts} >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real 2>&1 |
| 356 |
azarah |
1.8 |
|
| 357 |
|
|
if [ "$?" -ne 0 ] |
| 358 |
|
|
then |
| 359 |
|
|
cat ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real >> ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
| 360 |
|
|
echo |
| 361 |
|
|
eerror "A dry-run of patch command succeeded, but actually" |
| 362 |
|
|
eerror "applying the patch failed!" |
| 363 |
|
|
#die "Real world sux compared to the dreamworld!" |
| 364 |
|
|
count=5 |
| 365 |
|
|
fi |
| 366 |
|
|
|
| 367 |
|
|
rm -f ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}.real |
| 368 |
danarmak |
1.32 |
|
| 369 |
azarah |
1.2 |
break |
| 370 |
|
|
fi |
| 371 |
|
|
|
| 372 |
|
|
count=$((count + 1)) |
| 373 |
|
|
done |
| 374 |
|
|
|
| 375 |
azarah |
1.8 |
if [ "${PATCH_SUFFIX}" != "patch" ] |
| 376 |
|
|
then |
| 377 |
|
|
rm -f ${PATCH_TARGET} |
| 378 |
|
|
fi |
| 379 |
|
|
|
| 380 |
azarah |
1.2 |
if [ "${count}" -eq 5 ] |
| 381 |
|
|
then |
| 382 |
azarah |
1.8 |
echo |
| 383 |
azarah |
1.2 |
eerror "Failed Patch: ${x##*/}!" |
| 384 |
|
|
eerror |
| 385 |
|
|
eerror "Include in your bugreport the contents of:" |
| 386 |
|
|
eerror |
| 387 |
azarah |
1.8 |
eerror " ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/}" |
| 388 |
|
|
echo |
| 389 |
azarah |
1.2 |
die "Failed Patch: ${x##*/}!" |
| 390 |
|
|
fi |
| 391 |
azarah |
1.8 |
|
| 392 |
|
|
rm -f ${STDERR_TARGET%/*}/${x##*/}-${STDERR_TARGET##*/} |
| 393 |
azarah |
1.3 |
|
| 394 |
|
|
eend 0 |
| 395 |
azarah |
1.2 |
fi |
| 396 |
|
|
done |
| 397 |
azarah |
1.3 |
if [ "${SINGLE_PATCH}" = "no" ] |
| 398 |
|
|
then |
| 399 |
|
|
einfo "Done with patching" |
| 400 |
azarah |
1.10 |
fi |
| 401 |
azarah |
1.26 |
} |
| 402 |
|
|
|
| 403 |
|
|
# This function return true if we are using the NPTL pthreads |
| 404 |
|
|
# implementation. |
| 405 |
|
|
# |
| 406 |
|
|
# <azarah@gentoo.org> (06 March 2003) |
| 407 |
|
|
# |
| 408 |
|
|
have_NPTL() { |
| 409 |
|
|
cat > ${T}/test-nptl.c <<-"END" |
| 410 |
|
|
#define _XOPEN_SOURCE |
| 411 |
|
|
#include <unistd.h> |
| 412 |
|
|
#include <stdio.h> |
| 413 |
|
|
|
| 414 |
|
|
int main() |
| 415 |
|
|
{ |
| 416 |
|
|
char buf[255]; |
| 417 |
|
|
char *str = buf; |
| 418 |
|
|
|
| 419 |
|
|
confstr(_CS_GNU_LIBPTHREAD_VERSION, str, 255); |
| 420 |
|
|
if (NULL != str) { |
| 421 |
|
|
printf("%s\n", str); |
| 422 |
|
|
if (NULL != strstr(str, "NPTL")) |
| 423 |
|
|
return 0; |
| 424 |
|
|
} |
| 425 |
|
|
|
| 426 |
|
|
return 1; |
| 427 |
|
|
} |
| 428 |
|
|
END |
| 429 |
|
|
|
| 430 |
vapier |
1.121 |
einfon "Checking for _CS_GNU_LIBPTHREAD_VERSION support in glibc ..." |
| 431 |
azarah |
1.26 |
if gcc -o ${T}/nptl ${T}/test-nptl.c &> /dev/null |
| 432 |
|
|
then |
| 433 |
|
|
echo "yes" |
| 434 |
vapier |
1.121 |
einfon "Checking what PTHREADS implementation we have ..." |
| 435 |
azarah |
1.26 |
if ${T}/nptl |
| 436 |
|
|
then |
| 437 |
|
|
return 0 |
| 438 |
|
|
else |
| 439 |
|
|
return 1 |
| 440 |
|
|
fi |
| 441 |
|
|
else |
| 442 |
|
|
echo "no" |
| 443 |
|
|
fi |
| 444 |
|
|
|
| 445 |
|
|
return 1 |
| 446 |
azarah |
1.10 |
} |
| 447 |
|
|
|
| 448 |
|
|
# This function check how many cpu's are present, and then set |
| 449 |
|
|
# -j in MAKEOPTS accordingly. |
| 450 |
|
|
# |
| 451 |
|
|
# Thanks to nall <nall@gentoo.org> for this. |
| 452 |
|
|
# |
| 453 |
|
|
get_number_of_jobs() { |
| 454 |
azarah |
1.13 |
local jobs=0 |
| 455 |
|
|
|
| 456 |
azarah |
1.10 |
if [ ! -r /proc/cpuinfo ] |
| 457 |
|
|
then |
| 458 |
|
|
return 1 |
| 459 |
|
|
fi |
| 460 |
|
|
|
| 461 |
azarah |
1.14 |
# This bit is from H?kan Wessberg <nacka-gentoo@refug.org>, bug #13565. |
| 462 |
|
|
if [ "`egrep "^[[:space:]]*MAKEOPTS=" /etc/make.conf | wc -l`" -gt 0 ] |
| 463 |
|
|
then |
| 464 |
|
|
ADMINOPTS="`egrep "^[[:space:]]*MAKEOPTS=" /etc/make.conf | cut -d= -f2 | sed 's/\"//g'`" |
| 465 |
azarah |
1.17 |
ADMINPARAM="`echo ${ADMINOPTS} | gawk '{match($0, /-j *[0-9]*/, opt); print opt[0]}'`" |
| 466 |
|
|
ADMINPARAM="${ADMINPARAM/-j}" |
| 467 |
azarah |
1.14 |
fi |
| 468 |
|
|
|
| 469 |
azarah |
1.17 |
export MAKEOPTS="`echo ${MAKEOPTS} | sed -e 's:-j *[0-9]*::g'`" |
| 470 |
danarmak |
1.32 |
|
| 471 |
drobbins |
1.35 |
if [ "${ARCH}" = "amd64" -o "${ARCH}" = "x86" -o "${ARCH}" = "hppa" -o \ |
| 472 |
avenj |
1.54 |
"${ARCH}" = "arm" -o "${ARCH}" = "mips" -o "${ARCH}" = "ia64" ] |
| 473 |
azarah |
1.10 |
then |
| 474 |
zwelch |
1.21 |
# these archs will always have "[Pp]rocessor" |
| 475 |
|
|
jobs="$((`grep -c ^[Pp]rocessor /proc/cpuinfo` * 2))" |
| 476 |
danarmak |
1.32 |
|
| 477 |
azarah |
1.10 |
elif [ "${ARCH}" = "sparc" -o "${ARCH}" = "sparc64" ] |
| 478 |
|
|
then |
| 479 |
|
|
# sparc always has "ncpus active" |
| 480 |
azarah |
1.13 |
jobs="$((`grep "^ncpus active" /proc/cpuinfo | sed -e "s/^.*: //"` * 2))" |
| 481 |
danarmak |
1.32 |
|
| 482 |
azarah |
1.10 |
elif [ "${ARCH}" = "alpha" ] |
| 483 |
|
|
then |
| 484 |
|
|
# alpha has "cpus active", but only when compiled with SMP |
| 485 |
azarah |
1.13 |
if [ "`grep -c "^cpus active" /proc/cpuinfo`" -eq 1 ] |
| 486 |
azarah |
1.10 |
then |
| 487 |
azarah |
1.13 |
jobs="$((`grep "^cpus active" /proc/cpuinfo | sed -e "s/^.*: //"` * 2))" |
| 488 |
azarah |
1.10 |
else |
| 489 |
azarah |
1.13 |
jobs=2 |
| 490 |
azarah |
1.10 |
fi |
| 491 |
danarmak |
1.32 |
|
| 492 |
brad_mssw |
1.78 |
elif [ "${ARCH}" = "ppc" -o "${ARCH}" = "ppc64" ] |
| 493 |
azarah |
1.10 |
then |
| 494 |
|
|
# ppc has "processor", but only when compiled with SMP |
| 495 |
azarah |
1.13 |
if [ "`grep -c "^processor" /proc/cpuinfo`" -eq 1 ] |
| 496 |
azarah |
1.10 |
then |
| 497 |
azarah |
1.13 |
jobs="$((`grep -c ^processor /proc/cpuinfo` * 2))" |
| 498 |
azarah |
1.10 |
else |
| 499 |
azarah |
1.13 |
jobs=2 |
| 500 |
azarah |
1.10 |
fi |
| 501 |
iggy |
1.87 |
elif [ "${ARCH}" = "s390" ] |
| 502 |
|
|
then |
| 503 |
|
|
# s390 has "# processors : " |
| 504 |
|
|
jobs="$((`grep "^\# processors" /proc/cpuinfo | sed -e "s/^.*: //"` * 2))" |
| 505 |
azarah |
1.10 |
else |
| 506 |
azarah |
1.13 |
jobs="$((`grep -c ^cpu /proc/cpuinfo` * 2))" |
| 507 |
azarah |
1.10 |
die "Unknown ARCH -- ${ARCH}!" |
| 508 |
azarah |
1.3 |
fi |
| 509 |
azarah |
1.13 |
|
| 510 |
|
|
# Make sure the number is valid ... |
| 511 |
|
|
if [ "${jobs}" -lt 1 ] |
| 512 |
|
|
then |
| 513 |
|
|
jobs=1 |
| 514 |
|
|
fi |
| 515 |
danarmak |
1.32 |
|
| 516 |
azarah |
1.15 |
if [ -n "${ADMINPARAM}" ] |
| 517 |
azarah |
1.14 |
then |
| 518 |
azarah |
1.15 |
if [ "${jobs}" -gt "${ADMINPARAM}" ] |
| 519 |
|
|
then |
| 520 |
vapier |
1.121 |
einfo "Setting make jobs to \"-j${ADMINPARAM}\" to ensure successful merge ..." |
| 521 |
azarah |
1.15 |
export MAKEOPTS="${MAKEOPTS} -j${ADMINPARAM}" |
| 522 |
|
|
else |
| 523 |
vapier |
1.121 |
einfo "Setting make jobs to \"-j${jobs}\" to ensure successful merge ..." |
| 524 |
azarah |
1.15 |
export MAKEOPTS="${MAKEOPTS} -j${jobs}" |
| 525 |
|
|
fi |
| 526 |
azarah |
1.14 |
fi |
| 527 |
azarah |
1.1 |
} |
| 528 |
|
|
|
| 529 |
vapier |
1.52 |
# Cheap replacement for when debianutils (and thus mktemp) |
| 530 |
vapier |
1.80 |
# does not exist on the users system |
| 531 |
vapier |
1.52 |
# vapier@gentoo.org |
| 532 |
|
|
# |
| 533 |
vapier |
1.117 |
# Takes just 1 optional parameter (the directory to create tmpfile in) |
| 534 |
|
|
emktemp() { |
| 535 |
vapier |
1.119 |
local exe="touch" |
| 536 |
|
|
[ "$1" == "-d" ] && exe="mkdir" && shift |
| 537 |
azarah |
1.59 |
local topdir="$1" |
| 538 |
mr_bones_ |
1.100 |
|
| 539 |
vapier |
1.117 |
if [ -z "${topdir}" ] |
| 540 |
azarah |
1.59 |
then |
| 541 |
vapier |
1.117 |
[ -z "${T}" ] \ |
| 542 |
|
|
&& topdir="/tmp" \ |
| 543 |
|
|
|| topdir="${T}" |
| 544 |
|
|
fi |
| 545 |
|
|
|
| 546 |
|
|
if [ -z "$(type -p mktemp)" ] |
| 547 |
|
|
then |
| 548 |
|
|
local tmp=/ |
| 549 |
|
|
while [ -e "${tmp}" ] ; do |
| 550 |
|
|
tmp="${topdir}/tmp.${RANDOM}.${RANDOM}.${RANDOM}" |
| 551 |
|
|
done |
| 552 |
vapier |
1.119 |
${exe} "${tmp}" |
| 553 |
vapier |
1.117 |
echo "${tmp}" |
| 554 |
vapier |
1.52 |
else |
| 555 |
vapier |
1.119 |
[ "${exe}" == "touch" ] \ |
| 556 |
|
|
&& exe="-p" \ |
| 557 |
|
|
|| exe="-d" |
| 558 |
|
|
mktemp ${exe} "${topdir}" |
| 559 |
vapier |
1.52 |
fi |
| 560 |
|
|
} |
| 561 |
|
|
|
| 562 |
ka0ttic |
1.108 |
# Small wrapper for getent (Linux), nidump (Mac OS X), |
| 563 |
|
|
# and pw (FreeBSD) used in enewuser()/enewgroup() |
| 564 |
usata |
1.91 |
# Joe Jezak <josejx@gmail.com> and usata@gentoo.org |
| 565 |
ka0ttic |
1.108 |
# FBSD stuff: Aaron Walker <ka0ttic@gentoo.org> |
| 566 |
usata |
1.91 |
# |
| 567 |
|
|
# egetent(database, key) |
| 568 |
|
|
egetent() { |
| 569 |
usata |
1.124 |
if useq ppc-macos ; then |
| 570 |
usata |
1.91 |
case "$2" in |
| 571 |
|
|
*[!0-9]*) # Non numeric |
| 572 |
|
|
nidump $1 . | awk -F":" "{ if (\$1 ~ /^$2$/) {print \$0;exit;} }" |
| 573 |
|
|
;; |
| 574 |
|
|
*) # Numeric |
| 575 |
|
|
nidump $1 . | awk -F":" "{ if (\$3 == $2) {print \$0;exit;} }" |
| 576 |
|
|
;; |
| 577 |
|
|
esac |
| 578 |
ka0ttic |
1.108 |
elif useq x86-fbsd ; then |
| 579 |
|
|
local action |
| 580 |
|
|
if [ "$1" == "passwd" ] |
| 581 |
|
|
then |
| 582 |
|
|
action="user" |
| 583 |
|
|
else |
| 584 |
|
|
action="group" |
| 585 |
|
|
fi |
| 586 |
|
|
pw show "${action}" "$2" -q |
| 587 |
usata |
1.91 |
else |
| 588 |
vapier |
1.113 |
which nscd >& /dev/null && nscd -i "$1" |
| 589 |
vapier |
1.107 |
getent "$1" "$2" |
| 590 |
usata |
1.91 |
fi |
| 591 |
|
|
} |
| 592 |
|
|
|
| 593 |
vapier |
1.23 |
# Simplify/standardize adding users to the system |
| 594 |
|
|
# vapier@gentoo.org |
| 595 |
|
|
# |
| 596 |
|
|
# enewuser(username, uid, shell, homedir, groups, extra options) |
| 597 |
|
|
# |
| 598 |
|
|
# Default values if you do not specify any: |
| 599 |
|
|
# username: REQUIRED ! |
| 600 |
|
|
# uid: next available (see useradd(8)) |
| 601 |
vapier |
1.27 |
# note: pass -1 to get default behavior |
| 602 |
vapier |
1.23 |
# shell: /bin/false |
| 603 |
|
|
# homedir: /dev/null |
| 604 |
|
|
# groups: none |
| 605 |
|
|
# extra: comment of 'added by portage for ${PN}' |
| 606 |
|
|
enewuser() { |
| 607 |
|
|
# get the username |
| 608 |
|
|
local euser="$1"; shift |
| 609 |
azarah |
1.59 |
if [ -z "${euser}" ] |
| 610 |
|
|
then |
| 611 |
vapier |
1.23 |
eerror "No username specified !" |
| 612 |
|
|
die "Cannot call enewuser without a username" |
| 613 |
|
|
fi |
| 614 |
|
|
|
| 615 |
vapier |
1.84 |
# lets see if the username already exists |
| 616 |
usata |
1.91 |
if [ "${euser}" == "`egetent passwd \"${euser}\" | cut -d: -f1`" ] |
| 617 |
azarah |
1.59 |
then |
| 618 |
vapier |
1.23 |
return 0 |
| 619 |
|
|
fi |
| 620 |
wolf31o2 |
1.44 |
einfo "Adding user '${euser}' to your system ..." |
| 621 |
vapier |
1.23 |
|
| 622 |
|
|
# options to pass to useradd |
| 623 |
azarah |
1.59 |
local opts= |
| 624 |
vapier |
1.23 |
|
| 625 |
|
|
# handle uid |
| 626 |
|
|
local euid="$1"; shift |
| 627 |
azarah |
1.59 |
if [ ! -z "${euid}" ] && [ "${euid}" != "-1" ] |
| 628 |
|
|
then |
| 629 |
|
|
if [ "${euid}" -gt 0 ] |
| 630 |
|
|
then |
| 631 |
usata |
1.91 |
if [ ! -z "`egetent passwd ${euid}`" ] |
| 632 |
vapier |
1.82 |
then |
| 633 |
vapier |
1.84 |
euid="next" |
| 634 |
vapier |
1.82 |
fi |
| 635 |
vapier |
1.23 |
else |
| 636 |
|
|
eerror "Userid given but is not greater than 0 !" |
| 637 |
|
|
die "${euid} is not a valid UID" |
| 638 |
|
|
fi |
| 639 |
|
|
else |
| 640 |
vapier |
1.84 |
euid="next" |
| 641 |
|
|
fi |
| 642 |
|
|
if [ "${euid}" == "next" ] |
| 643 |
|
|
then |
| 644 |
usata |
1.91 |
local pwrange |
| 645 |
usata |
1.114 |
if [ "${USERLAND}" == "BSD" ] ; then |
| 646 |
usata |
1.91 |
pwrange="`jot 898 101`" |
| 647 |
|
|
else |
| 648 |
|
|
pwrange="`seq 101 999`" |
| 649 |
|
|
fi |
| 650 |
|
|
for euid in ${pwrange} ; do |
| 651 |
|
|
[ -z "`egetent passwd ${euid}`" ] && break |
| 652 |
vapier |
1.84 |
done |
| 653 |
vapier |
1.23 |
fi |
| 654 |
vapier |
1.84 |
opts="${opts} -u ${euid}" |
| 655 |
vapier |
1.23 |
einfo " - Userid: ${euid}" |
| 656 |
|
|
|
| 657 |
|
|
# handle shell |
| 658 |
|
|
local eshell="$1"; shift |
| 659 |
vapier |
1.67 |
if [ ! -z "${eshell}" ] && [ "${eshell}" != "-1" ] |
| 660 |
azarah |
1.59 |
then |
| 661 |
|
|
if [ ! -e "${eshell}" ] |
| 662 |
|
|
then |
| 663 |
vapier |
1.23 |
eerror "A shell was specified but it does not exist !" |
| 664 |
|
|
die "${eshell} does not exist" |
| 665 |
|
|
fi |
| 666 |
|
|
else |
| 667 |
ka0ttic |
1.108 |
if [ "${USERLAND}" == "BSD" ] |
| 668 |
|
|
then |
| 669 |
|
|
eshell="/usr/bin/false" |
| 670 |
|
|
else |
| 671 |
|
|
eshell="/bin/false" |
| 672 |
|
|
fi |
| 673 |
vapier |
1.23 |
fi |
| 674 |
|
|
einfo " - Shell: ${eshell}" |
| 675 |
|
|
opts="${opts} -s ${eshell}" |
| 676 |
|
|
|
| 677 |
|
|
# handle homedir |
| 678 |
|
|
local ehome="$1"; shift |
| 679 |
vapier |
1.67 |
if [ -z "${ehome}" ] && [ "${eshell}" != "-1" ] |
| 680 |
azarah |
1.59 |
then |
| 681 |
|
|
ehome="/dev/null" |
| 682 |
vapier |
1.23 |
fi |
| 683 |
|
|
einfo " - Home: ${ehome}" |
| 684 |
|
|
opts="${opts} -d ${ehome}" |
| 685 |
|
|
|
| 686 |
|
|
# handle groups |
| 687 |
|
|
local egroups="$1"; shift |
| 688 |
azarah |
1.59 |
if [ ! -z "${egroups}" ] |
| 689 |
|
|
then |
| 690 |
vapier |
1.23 |
local oldifs="${IFS}" |
| 691 |
vapier |
1.107 |
local defgroup="" exgroups="" |
| 692 |
|
|
|
| 693 |
vapier |
1.23 |
export IFS="," |
| 694 |
azarah |
1.59 |
for g in ${egroups} |
| 695 |
|
|
do |
| 696 |
usata |
1.115 |
export IFS="${oldifs}" |
| 697 |
usata |
1.91 |
if [ -z "`egetent group \"${g}\"`" ] |
| 698 |
azarah |
1.59 |
then |
| 699 |
vapier |
1.85 |
eerror "You must add group ${g} to the system first" |
| 700 |
vapier |
1.23 |
die "${g} is not a valid GID" |
| 701 |
|
|
fi |
| 702 |
vapier |
1.107 |
if [ -z "${defgroup}" ] |
| 703 |
|
|
then |
| 704 |
|
|
defgroup="${g}" |
| 705 |
|
|
else |
| 706 |
|
|
exgroups="${exgroups},${g}" |
| 707 |
|
|
fi |
| 708 |
usata |
1.115 |
export IFS="," |
| 709 |
vapier |
1.23 |
done |
| 710 |
|
|
export IFS="${oldifs}" |
| 711 |
vapier |
1.107 |
|
| 712 |
|
|
opts="${opts} -g ${defgroup}" |
| 713 |
|
|
if [ ! -z "${exgroups}" ] |
| 714 |
|
|
then |
| 715 |
|
|
opts="${opts} -G ${exgroups:1}" |
| 716 |
|
|
fi |
| 717 |
vapier |
1.23 |
else |
| 718 |
|
|
egroups="(none)" |
| 719 |
|
|
fi |
| 720 |
|
|
einfo " - Groups: ${egroups}" |
| 721 |
|
|
|
| 722 |
|
|
# handle extra and add the user |
| 723 |
|
|
local eextra="$@" |
| 724 |
azarah |
1.59 |
local oldsandbox="${SANDBOX_ON}" |
| 725 |
vapier |
1.23 |
export SANDBOX_ON="0" |
| 726 |
usata |
1.124 |
if useq ppc-macos |
| 727 |
azarah |
1.59 |
then |
| 728 |
usata |
1.91 |
### Make the user |
| 729 |
|
|
if [ -z "${eextra}" ] |
| 730 |
|
|
then |
| 731 |
|
|
dscl . create /users/${euser} uid ${euid} |
| 732 |
|
|
dscl . create /users/${euser} shell ${eshell} |
| 733 |
|
|
dscl . create /users/${euser} home ${ehome} |
| 734 |
|
|
dscl . create /users/${euser} realname "added by portage for ${PN}" |
| 735 |
|
|
### Add the user to the groups specified |
| 736 |
usata |
1.115 |
local oldifs="${IFS}" |
| 737 |
|
|
export IFS="," |
| 738 |
usata |
1.91 |
for g in ${egroups} |
| 739 |
|
|
do |
| 740 |
|
|
dscl . merge /groups/${g} users ${euser} |
| 741 |
|
|
done |
| 742 |
usata |
1.115 |
export IFS="${oldifs}" |
| 743 |
usata |
1.91 |
else |
| 744 |
|
|
einfo "Extra options are not supported on macos yet" |
| 745 |
|
|
einfo "Please report the ebuild along with the info below" |
| 746 |
|
|
einfo "eextra: ${eextra}" |
| 747 |
|
|
die "Required function missing" |
| 748 |
|
|
fi |
| 749 |
ka0ttic |
1.108 |
elif use x86-fbsd ; then |
| 750 |
|
|
if [ -z "${eextra}" ] |
| 751 |
|
|
then |
| 752 |
|
|
pw useradd ${euser} ${opts} \ |
| 753 |
|
|
-c "added by portage for ${PN}" \ |
| 754 |
|
|
die "enewuser failed" |
| 755 |
|
|
else |
| 756 |
|
|
einfo " - Extra: ${eextra}" |
| 757 |
|
|
pw useradd ${euser} ${opts} \ |
| 758 |
|
|
-c ${eextra} || die "enewuser failed" |
| 759 |
|
|
fi |
| 760 |
vapier |
1.23 |
else |
| 761 |
usata |
1.91 |
if [ -z "${eextra}" ] |
| 762 |
|
|
then |
| 763 |
|
|
useradd ${opts} ${euser} \ |
| 764 |
|
|
-c "added by portage for ${PN}" \ |
| 765 |
|
|
|| die "enewuser failed" |
| 766 |
|
|
else |
| 767 |
|
|
einfo " - Extra: ${eextra}" |
| 768 |
|
|
useradd ${opts} ${euser} ${eextra} \ |
| 769 |
|
|
|| die "enewuser failed" |
| 770 |
|
|
fi |
| 771 |
vapier |
1.23 |
fi |
| 772 |
|
|
export SANDBOX_ON="${oldsandbox}" |
| 773 |
|
|
|
| 774 |
azarah |
1.59 |
if [ ! -e "${ehome}" ] && [ ! -e "${D}/${ehome}" ] |
| 775 |
|
|
then |
| 776 |
vapier |
1.23 |
einfo " - Creating ${ehome} in ${D}" |
| 777 |
|
|
dodir ${ehome} |
| 778 |
vapier |
1.37 |
fowners ${euser} ${ehome} |
| 779 |
vapier |
1.38 |
fperms 755 ${ehome} |
| 780 |
vapier |
1.23 |
fi |
| 781 |
|
|
} |
| 782 |
|
|
|
| 783 |
|
|
# Simplify/standardize adding groups to the system |
| 784 |
|
|
# vapier@gentoo.org |
| 785 |
|
|
# |
| 786 |
|
|
# enewgroup(group, gid) |
| 787 |
|
|
# |
| 788 |
|
|
# Default values if you do not specify any: |
| 789 |
|
|
# groupname: REQUIRED ! |
| 790 |
|
|
# gid: next available (see groupadd(8)) |
| 791 |
|
|
# extra: none |
| 792 |
|
|
enewgroup() { |
| 793 |
|
|
# get the group |
| 794 |
|
|
local egroup="$1"; shift |
| 795 |
azarah |
1.59 |
if [ -z "${egroup}" ] |
| 796 |
|
|
then |
| 797 |
vapier |
1.23 |
eerror "No group specified !" |
| 798 |
|
|
die "Cannot call enewgroup without a group" |
| 799 |
|
|
fi |
| 800 |
|
|
|
| 801 |
|
|
# see if group already exists |
| 802 |
usata |
1.91 |
if [ "${egroup}" == "`egetent group \"${egroup}\" | cut -d: -f1`" ] |
| 803 |
azarah |
1.59 |
then |
| 804 |
vapier |
1.23 |
return 0 |
| 805 |
|
|
fi |
| 806 |
wolf31o2 |
1.44 |
einfo "Adding group '${egroup}' to your system ..." |
| 807 |
vapier |
1.23 |
|
| 808 |
|
|
# options to pass to useradd |
| 809 |
azarah |
1.59 |
local opts= |
| 810 |
vapier |
1.23 |
|
| 811 |
|
|
# handle gid |
| 812 |
|
|
local egid="$1"; shift |
| 813 |
azarah |
1.59 |
if [ ! -z "${egid}" ] |
| 814 |
|
|
then |
| 815 |
|
|
if [ "${egid}" -gt 0 ] |
| 816 |
|
|
then |
| 817 |
usata |
1.91 |
if [ -z "`egetent group ${egid}`" ] |
| 818 |
vapier |
1.83 |
then |
| 819 |
usata |
1.124 |
if useq ppc-macos ; then |
| 820 |
usata |
1.91 |
opts="${opts} ${egid}" |
| 821 |
|
|
else |
| 822 |
|
|
opts="${opts} -g ${egid}" |
| 823 |
|
|
fi |
| 824 |
vapier |
1.83 |
else |
| 825 |
vapier |
1.84 |
egid="next available; requested gid taken" |
| 826 |
vapier |
1.83 |
fi |
| 827 |
vapier |
1.23 |
else |
| 828 |
|
|
eerror "Groupid given but is not greater than 0 !" |
| 829 |
|
|
die "${egid} is not a valid GID" |
| 830 |
|
|
fi |
| 831 |
|
|
else |
| 832 |
|
|
egid="next available" |
| 833 |
|
|
fi |
| 834 |
|
|
einfo " - Groupid: ${egid}" |
| 835 |
|
|
|
| 836 |
|
|
# handle extra |
| 837 |
|
|
local eextra="$@" |
| 838 |
|
|
opts="${opts} ${eextra}" |
| 839 |
|
|
|
| 840 |
|
|
# add the group |
| 841 |
azarah |
1.59 |
local oldsandbox="${SANDBOX_ON}" |
| 842 |
vapier |
1.23 |
export SANDBOX_ON="0" |
| 843 |
usata |
1.124 |
if useq ppc-macos ; then |
| 844 |
usata |
1.91 |
if [ ! -z "${eextra}" ]; |
| 845 |
|
|
then |
| 846 |
|
|
einfo "Extra options are not supported on macos yet" |
| 847 |
|
|
einfo "Please report the ebuild along with the info below" |
| 848 |
|
|
einfo "eextra: ${eextra}" |
| 849 |
|
|
die "Required function missing" |
| 850 |
|
|
fi |
| 851 |
mr_bones_ |
1.100 |
|
| 852 |
usata |
1.91 |
# If we need the next available |
| 853 |
|
|
case ${egid} in |
| 854 |
|
|
*[!0-9]*) # Non numeric |
| 855 |
|
|
for egid in `jot 898 101`; do |
| 856 |
|
|
[ -z "`egetent group ${egid}`" ] && break |
| 857 |
|
|
done |
| 858 |
|
|
esac |
| 859 |
|
|
dscl . create /groups/${egroup} gid ${egid} |
| 860 |
mr_bones_ |
1.100 |
dscl . create /groups/${egroup} passwd '*' |
| 861 |
ka0ttic |
1.108 |
elif use x86-fbsd ; then |
| 862 |
|
|
case ${egid} in |
| 863 |
|
|
*[!0-9]*) # Non numeric |
| 864 |
|
|
for egid in `jot 898 101`; do |
| 865 |
|
|
[ -z "`egetent group ${egid}`" ] && break |
| 866 |
|
|
done |
| 867 |
|
|
esac |
| 868 |
|
|
pw groupadd ${egroup} -g ${egid} || die "enewgroup failed" |
| 869 |
usata |
1.91 |
else |
| 870 |
|
|
groupadd ${opts} ${egroup} || die "enewgroup failed" |
| 871 |
|
|
fi |
| 872 |
vapier |
1.23 |
export SANDBOX_ON="${oldsandbox}" |
| 873 |
vapier |
1.24 |
} |
| 874 |
|
|
|
| 875 |
|
|
# Simple script to replace 'dos2unix' binaries |
| 876 |
|
|
# vapier@gentoo.org |
| 877 |
|
|
# |
| 878 |
vapier |
1.121 |
# edos2unix(file, <more files> ...) |
| 879 |
vapier |
1.24 |
edos2unix() { |
| 880 |
vapier |
1.61 |
for f in "$@" |
| 881 |
azarah |
1.59 |
do |
| 882 |
vapier |
1.61 |
cp "${f}" ${T}/edos2unix |
| 883 |
|
|
sed 's/\r$//' ${T}/edos2unix > "${f}" |
| 884 |
vapier |
1.24 |
done |
| 885 |
vapier |
1.39 |
} |
| 886 |
|
|
|
| 887 |
lanius |
1.133 |
|
| 888 |
|
|
############################################################## |
| 889 |
|
|
# START: Handle .desktop files and menu entries # |
| 890 |
|
|
# maybe this should be separated into a new eclass some time # |
| 891 |
|
|
# lanius@gentoo.org # |
| 892 |
|
|
############################################################## |
| 893 |
|
|
|
| 894 |
vapier |
1.39 |
# Make a desktop file ! |
| 895 |
|
|
# Great for making those icons in kde/gnome startmenu ! |
| 896 |
|
|
# Amaze your friends ! Get the women ! Join today ! |
| 897 |
|
|
# |
| 898 |
|
|
# make_desktop_entry(<binary>, [name], [icon], [type], [path]) |
| 899 |
|
|
# |
| 900 |
|
|
# binary: what binary does the app run with ? |
| 901 |
|
|
# name: the name that will show up in the menu |
| 902 |
|
|
# icon: give your little like a pretty little icon ... |
| 903 |
vapier |
1.118 |
# this can be relative (to /usr/share/pixmaps) or |
| 904 |
|
|
# a full path to an icon |
| 905 |
vapier |
1.39 |
# type: what kind of application is this ? for categories: |
| 906 |
vapier |
1.118 |
# http://www.freedesktop.org/standards/menu-spec/ |
| 907 |
vapier |
1.39 |
# path: if your app needs to startup in a specific dir |
| 908 |
|
|
make_desktop_entry() { |
| 909 |
vapier |
1.118 |
[ -z "$1" ] && eerror "make_desktop_entry: You must specify the executable" && return 1 |
| 910 |
vapier |
1.39 |
|
| 911 |
azarah |
1.59 |
local exec="${1}" |
| 912 |
|
|
local name="${2:-${PN}}" |
| 913 |
|
|
local icon="${3:-${PN}.png}" |
| 914 |
|
|
local type="${4}" |
| 915 |
vapier |
1.81 |
local subdir="${6}" |
| 916 |
mr_bones_ |
1.100 |
local path="${5:-${GAMES_BINDIR}}" |
| 917 |
azarah |
1.59 |
if [ -z "${type}" ] |
| 918 |
|
|
then |
| 919 |
vapier |
1.39 |
case ${CATEGORY} in |
| 920 |
azarah |
1.59 |
"app-emulation") |
| 921 |
|
|
type=Emulator |
| 922 |
vapier |
1.86 |
subdir="Emulation" |
| 923 |
azarah |
1.59 |
;; |
| 924 |
|
|
"games-"*) |
| 925 |
|
|
type=Game |
| 926 |
vapier |
1.81 |
subdir="Games" |
| 927 |
wolf31o2 |
1.65 |
;; |
| 928 |
|
|
"net-"*) |
| 929 |
vapier |
1.81 |
type=Network |
| 930 |
|
|
subdir="${type}" |
| 931 |
azarah |
1.59 |
;; |
| 932 |
|
|
*) |
| 933 |
|
|
type= |
| 934 |
vapier |
1.81 |
subdir= |
| 935 |
azarah |
1.59 |
;; |
| 936 |
vapier |
1.39 |
esac |
| 937 |
|
|
fi |
| 938 |
azarah |
1.59 |
local desktop="${T}/${exec}.desktop" |
| 939 |
vapier |
1.39 |
|
| 940 |
|
|
echo "[Desktop Entry] |
| 941 |
|
|
Encoding=UTF-8 |
| 942 |
|
|
Version=0.9.2 |
| 943 |
|
|
Name=${name} |
| 944 |
|
|
Type=Application |
| 945 |
|
|
Comment=${DESCRIPTION} |
| 946 |
|
|
Exec=${exec} |
| 947 |
|
|
Path=${path} |
| 948 |
|
|
Icon=${icon} |
| 949 |
vapier |
1.99 |
Categories=Application;${type};" > "${desktop}" |
| 950 |
vapier |
1.39 |
|
| 951 |
vapier |
1.118 |
insinto /usr/share/applications |
| 952 |
|
|
doins "${desktop}" |
| 953 |
vapier |
1.39 |
|
| 954 |
|
|
return 0 |
| 955 |
danarmak |
1.32 |
} |
| 956 |
|
|
|
| 957 |
lanius |
1.133 |
# Make a GDM/KDM Session file |
| 958 |
|
|
# |
| 959 |
|
|
# make_desktop_entry(<title>, <command>) |
| 960 |
|
|
# title: File to execute to start the Window Manager |
| 961 |
|
|
# command: Name of the Window Manager |
| 962 |
|
|
|
| 963 |
|
|
make_session_desktop() { |
| 964 |
|
|
|
| 965 |
|
|
[ -z "$1" ] && eerror "make_session_desktop: You must specify the title" && return 1 |
| 966 |
|
|
[ -z "$2" ] && eerror "make_session_desktop: You must specify the command" && return 1 |
| 967 |
|
|
|
| 968 |
|
|
local title="${1}" |
| 969 |
|
|
local command="${2}" |
| 970 |
|
|
local desktop="${T}/${wm}.desktop" |
| 971 |
|
|
|
| 972 |
|
|
echo "[Desktop Entry] |
| 973 |
|
|
Encoding=UTF-8 |
| 974 |
|
|
Name=${title} |
| 975 |
|
|
Comment=This session logs you into ${title} |
| 976 |
|
|
Exec=${command} |
| 977 |
|
|
TryExec=${command} |
| 978 |
|
|
Type=Application" > "${desktop}" |
| 979 |
|
|
|
| 980 |
|
|
insinto /usr/share/xsessions |
| 981 |
|
|
doins "${desktop}" |
| 982 |
|
|
|
| 983 |
|
|
return 0 |
| 984 |
|
|
} |
| 985 |
|
|
|
| 986 |
|
|
domenu() { |
| 987 |
|
|
local i |
| 988 |
|
|
local j |
| 989 |
|
|
insinto /usr/share/applications |
| 990 |
|
|
for i in ${@} |
| 991 |
|
|
do |
| 992 |
|
|
if [ -f "${i}" ]; |
| 993 |
|
|
then |
| 994 |
|
|
doins ${i} |
| 995 |
|
|
elif [ -d "${i}" ]; |
| 996 |
|
|
then |
| 997 |
|
|
for j in ${i}/*.desktop |
| 998 |
|
|
do |
| 999 |
|
|
doins ${j} |
| 1000 |
|
|
done |
| 1001 |
|
|
fi |
| 1002 |
|
|
done |
| 1003 |
|
|
} |
| 1004 |
|
|
|
| 1005 |
|
|
doicon() { |
| 1006 |
|
|
local i |
| 1007 |
|
|
local j |
| 1008 |
|
|
insinto /usr/share/pixmaps |
| 1009 |
|
|
for i in ${@} |
| 1010 |
|
|
do |
| 1011 |
|
|
if [ -f "${i}" ]; |
| 1012 |
|
|
then |
| 1013 |
|
|
doins ${i} |
| 1014 |
|
|
elif [ -d "${i}" ]; |
| 1015 |
|
|
then |
| 1016 |
|
|
for j in ${i}/*.png |
| 1017 |
|
|
do |
| 1018 |
|
|
doins ${j} |
| 1019 |
|
|
done |
| 1020 |
|
|
fi |
| 1021 |
|
|
done |
| 1022 |
|
|
} |
| 1023 |
|
|
|
| 1024 |
|
|
############################################################## |
| 1025 |
|
|
# END: Handle .desktop files and menu entries # |
| 1026 |
|
|
############################################################## |
| 1027 |
|
|
|
| 1028 |
|
|
|
| 1029 |
vapier |
1.70 |
# for internal use only (unpack_pdv and unpack_makeself) |
| 1030 |
|
|
find_unpackable_file() { |
| 1031 |
azarah |
1.59 |
local src="$1" |
| 1032 |
|
|
if [ -z "${src}" ] |
| 1033 |
|
|
then |
| 1034 |
vapier |
1.50 |
src="${DISTDIR}/${A}" |
| 1035 |
|
|
else |
| 1036 |
azarah |
1.59 |
if [ -e "${DISTDIR}/${src}" ] |
| 1037 |
|
|
then |
| 1038 |
vapier |
1.50 |
src="${DISTDIR}/${src}" |
| 1039 |
azarah |
1.59 |
elif [ -e "${PWD}/${src}" ] |
| 1040 |
|
|
then |
| 1041 |
vapier |
1.50 |
src="${PWD}/${src}" |
| 1042 |
azarah |
1.59 |
elif [ -e "${src}" ] |
| 1043 |
|
|
then |
| 1044 |
vapier |
1.50 |
src="${src}" |
| 1045 |
|
|
fi |
| 1046 |
|
|
fi |
| 1047 |
vapier |
1.70 |
[ ! -e "${src}" ] && die "Could not find requested archive ${src}" |
| 1048 |
|
|
echo "${src}" |
| 1049 |
|
|
} |
| 1050 |
|
|
|
| 1051 |
|
|
# Unpack those pesky pdv generated files ... |
| 1052 |
|
|
# They're self-unpacking programs with the binary package stuffed in |
| 1053 |
|
|
# the middle of the archive. Valve seems to use it a lot ... too bad |
| 1054 |
|
|
# it seems to like to segfault a lot :(. So lets take it apart ourselves. |
| 1055 |
|
|
# |
| 1056 |
|
|
# Usage: unpack_pdv [file to unpack] [size of off_t] |
| 1057 |
|
|
# - you have to specify the off_t size ... i have no idea how to extract that |
| 1058 |
|
|
# information out of the binary executable myself. basically you pass in |
| 1059 |
|
|
# the size of the off_t type (in bytes) on the machine that built the pdv |
| 1060 |
|
|
# archive. one way to determine this is by running the following commands: |
| 1061 |
|
|
# strings <pdv archive> | grep lseek |
| 1062 |
|
|
# strace -elseek <pdv archive> |
| 1063 |
|
|
# basically look for the first lseek command (we do the strings/grep because |
| 1064 |
|
|
# sometimes the function call is _llseek or something) and steal the 2nd |
| 1065 |
|
|
# parameter. here is an example: |
| 1066 |
|
|
# root@vapier 0 pdv_unpack # strings hldsupdatetool.bin | grep lseek |
| 1067 |
|
|
# lseek |
| 1068 |
|
|
# root@vapier 0 pdv_unpack # strace -elseek ./hldsupdatetool.bin |
| 1069 |
|
|
# lseek(3, -4, SEEK_END) = 2981250 |
| 1070 |
|
|
# thus we would pass in the value of '4' as the second parameter. |
| 1071 |
|
|
unpack_pdv() { |
| 1072 |
|
|
local src="`find_unpackable_file $1`" |
| 1073 |
|
|
local sizeoff_t="$2" |
| 1074 |
|
|
|
| 1075 |
|
|
[ -z "${sizeoff_t}" ] && die "No idea what off_t size was used for this pdv :(" |
| 1076 |
|
|
|
| 1077 |
|
|
local shrtsrc="`basename ${src}`" |
| 1078 |
|
|
echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
| 1079 |
|
|
local metaskip=`tail -c ${sizeoff_t} ${src} | hexdump -e \"%i\"` |
| 1080 |
|
|
local tailskip=`tail -c $((${sizeoff_t}*2)) ${src} | head -c ${sizeoff_t} | hexdump -e \"%i\"` |
| 1081 |
|
|
|
| 1082 |
|
|
# grab metadata for debug reasons |
| 1083 |
vapier |
1.117 |
local metafile="$(emktemp)" |
| 1084 |
vapier |
1.70 |
tail -c +$((${metaskip}+1)) ${src} > ${metafile} |
| 1085 |
|
|
|
| 1086 |
|
|
# rip out the final file name from the metadata |
| 1087 |
|
|
local datafile="`tail -c +$((${metaskip}+1)) ${src} | strings | head -n 1`" |
| 1088 |
|
|
datafile="`basename ${datafile}`" |
| 1089 |
|
|
|
| 1090 |
vapier |
1.71 |
# now lets uncompress/untar the file if need be |
| 1091 |
vapier |
1.117 |
local tmpfile="$(emktemp)" |
| 1092 |
vapier |
1.70 |
tail -c +$((${tailskip}+1)) ${src} 2>/dev/null | head -c 512 > ${tmpfile} |
| 1093 |
vapier |
1.71 |
|
| 1094 |
|
|
local iscompressed="`file -b ${tmpfile}`" |
| 1095 |
|
|
if [ "${iscompressed:0:8}" == "compress" ] ; then |
| 1096 |
|
|
iscompressed=1 |
| 1097 |
|
|
mv ${tmpfile}{,.Z} |
| 1098 |
|
|
gunzip ${tmpfile} |
| 1099 |
|
|
else |
| 1100 |
|
|
iscompressed=0 |
| 1101 |
|
|
fi |
| 1102 |
|
|
local istar="`file -b ${tmpfile}`" |
| 1103 |
|
|
if [ "${istar:0:9}" == "POSIX tar" ] ; then |
| 1104 |
|
|
istar=1 |
| 1105 |
|
|
else |
| 1106 |
|
|
istar=0 |
| 1107 |
|
|
fi |
| 1108 |
|
|
|
| 1109 |
|
|
#for some reason gzip dies with this ... dd cant provide buffer fast enough ? |
| 1110 |
|
|
#dd if=${src} ibs=${metaskip} count=1 \ |
| 1111 |
|
|
# | dd ibs=${tailskip} skip=1 \ |
| 1112 |
|
|
# | gzip -dc \ |
| 1113 |
|
|
# > ${datafile} |
| 1114 |
|
|
if [ ${iscompressed} -eq 1 ] ; then |
| 1115 |
|
|
if [ ${istar} -eq 1 ] ; then |
| 1116 |
|
|
tail -c +$((${tailskip}+1)) ${src} 2>/dev/null \ |
| 1117 |
|
|
| head -c $((${metaskip}-${tailskip})) \ |
| 1118 |
|
|
| tar -xzf - |
| 1119 |
|
|
else |
| 1120 |
vapier |
1.70 |
tail -c +$((${tailskip}+1)) ${src} 2>/dev/null \ |
| 1121 |
|
|
| head -c $((${metaskip}-${tailskip})) \ |
| 1122 |
|
|
| gzip -dc \ |
| 1123 |
|
|
> ${datafile} |
| 1124 |
vapier |
1.71 |
fi |
| 1125 |
|
|
else |
| 1126 |
|
|
if [ ${istar} -eq 1 ] ; then |
| 1127 |
|
|
tail -c +$((${tailskip}+1)) ${src} 2>/dev/null \ |
| 1128 |
|
|
| head -c $((${metaskip}-${tailskip})) \ |
| 1129 |
vapier |
1.73 |
| tar --no-same-owner -xf - |
| 1130 |
vapier |
1.71 |
else |
| 1131 |
vapier |
1.70 |
tail -c +$((${tailskip}+1)) ${src} 2>/dev/null \ |
| 1132 |
|
|
| head -c $((${metaskip}-${tailskip})) \ |
| 1133 |
|
|
> ${datafile} |
| 1134 |
vapier |
1.71 |
fi |
| 1135 |
|
|
fi |
| 1136 |
|
|
true |
| 1137 |
|
|
#[ -s "${datafile}" ] || die "failure unpacking pdv ('${metaskip}' '${tailskip}' '${datafile}')" |
| 1138 |
vapier |
1.70 |
#assert "failure unpacking pdv ('${metaskip}' '${tailskip}' '${datafile}')" |
| 1139 |
|
|
} |
| 1140 |
|
|
|
| 1141 |
|
|
# Unpack those pesky makeself generated files ... |
| 1142 |
|
|
# They're shell scripts with the binary package tagged onto |
| 1143 |
|
|
# the end of the archive. Loki utilized the format as does |
| 1144 |
|
|
# many other game companies. |
| 1145 |
|
|
# |
| 1146 |
vapier |
1.112 |
# Usage: unpack_makeself [file to unpack] [offset] [tail|dd] |
| 1147 |
vapier |
1.70 |
# - If the file is not specified then unpack will utilize ${A}. |
| 1148 |
|
|
# - If the offset is not specified then we will attempt to extract |
| 1149 |
|
|
# the proper offset from the script itself. |
| 1150 |
|
|
unpack_makeself() { |
| 1151 |
vapier |
1.112 |
local src="$(find_unpackable_file "$1")" |
| 1152 |
vapier |
1.70 |
local skip="$2" |
| 1153 |
vapier |
1.112 |
local exe="$3" |
| 1154 |
vapier |
1.50 |
|
| 1155 |
vapier |
1.112 |
local shrtsrc="$(basename "${src}")" |
| 1156 |
vapier |
1.41 |
echo ">>> Unpacking ${shrtsrc} to ${PWD}" |
| 1157 |
azarah |
1.59 |
if [ -z "${skip}" ] |
| 1158 |
|
|
then |
| 1159 |
vapier |
1.41 |
local ver="`grep -a '#.*Makeself' ${src} | awk '{print $NF}'`" |
| 1160 |
|
|
local skip=0 |
| 1161 |
vapier |
1.112 |
exe=tail |
| 1162 |
vapier |
1.41 |
case ${ver} in |
| 1163 |
|
|
1.5.*) # tested 1.5.{3,4,5} ... guessing 1.5.x series is same |
| 1164 |
vapier |
1.112 |
skip=$(grep -a ^skip= "${src}" | cut -d= -f2) |
| 1165 |
vapier |
1.41 |
;; |
| 1166 |
|
|
2.0|2.0.1) |
| 1167 |
vapier |
1.112 |
skip=$(grep -a ^$'\t'tail "${src}" | awk '{print $2}' | cut -b2-) |
| 1168 |
vapier |
1.41 |
;; |
| 1169 |
wolf31o2 |
1.48 |
2.1.1) |
| 1170 |
vapier |
1.112 |
skip=$(grep -a ^offset= "${src}" | awk '{print $2}' | cut -b2-) |
| 1171 |
wolf31o2 |
1.48 |
let skip="skip + 1" |
| 1172 |
|
|
;; |
| 1173 |
vapier |
1.49 |
2.1.2) |
| 1174 |
vapier |
1.112 |
skip=$(grep -a ^offset= "${src}" | awk '{print $3}' | head -n 1) |
| 1175 |
vapier |
1.49 |
let skip="skip + 1" |
| 1176 |
|
|
;; |
| 1177 |
wolf31o2 |
1.48 |
2.1.3) |
| 1178 |
vapier |
1.112 |
skip=`grep -a ^offset= "${src}" | awk '{print $3}'` |
| 1179 |
vapier |
1.41 |
let skip="skip + 1" |
| 1180 |
|
|
;; |
| 1181 |
vapier |
1.112 |
2.1.4) |
| 1182 |
|
|
skip=$(grep -a offset=.*head.*wc "${src}" | awk '{print $3}' | head -n 1) |
| 1183 |
|
|
skip=$(head -n ${skip} "${src}" | wc -c) |
| 1184 |
|
|
exe="dd" |
| 1185 |
|
|
;; |
| 1186 |
vapier |
1.41 |
*) |
| 1187 |
|
|
eerror "I'm sorry, but I was unable to support the Makeself file." |
| 1188 |
|
|
eerror "The version I detected was '${ver}'." |
| 1189 |
|
|
eerror "Please file a bug about the file ${shrtsrc} at" |
| 1190 |
|
|
eerror "http://bugs.gentoo.org/ so that support can be added." |
| 1191 |
|
|
die "makeself version '${ver}' not supported" |
| 1192 |
|
|
;; |
| 1193 |
|
|
esac |
| 1194 |
|
|
debug-print "Detected Makeself version ${ver} ... using ${skip} as offset" |
| 1195 |
|
|
fi |
| 1196 |
vapier |
1.112 |
case ${exe} in |
| 1197 |
|
|
tail) exe="tail -n +${skip} '${src}'";; |
| 1198 |
|
|
dd) exe="dd ibs=${skip} skip=1 obs=1024 conv=sync if='${src}'";; |
| 1199 |
|
|
*) die "makeself cant handle exe '${exe}'" |
| 1200 |
|
|
esac |
| 1201 |
vapier |
1.41 |
|
| 1202 |
vapier |
1.68 |
# lets grab the first few bytes of the file to figure out what kind of archive it is |
| 1203 |
vapier |
1.117 |
local tmpfile="$(emktemp)" |
| 1204 |
vapier |
1.112 |
eval ${exe} 2>/dev/null | head -c 512 > "${tmpfile}" |
| 1205 |
|
|
local filetype="$(file -b "${tmpfile}")" |
| 1206 |
vapier |
1.68 |
case ${filetype} in |
| 1207 |
|
|
*tar\ archive) |
| 1208 |
vapier |
1.112 |
eval ${exe} | tar --no-same-owner -xf - |
| 1209 |
vapier |
1.68 |
;; |
| 1210 |
|
|
bzip2*) |
| 1211 |
vapier |
1.112 |
eval ${exe} | bzip2 -dc | tar --no-same-owner -xf - |
| 1212 |
mr_bones_ |
1.69 |
;; |
| 1213 |
vapier |
1.68 |
gzip*) |
| 1214 |
vapier |
1.112 |
eval ${exe} | tar --no-same-owner -xzf - |
| 1215 |
vapier |
1.68 |
;; |
| 1216 |
vapier |
1.93 |
compress*) |
| 1217 |
vapier |
1.112 |
eval ${exe} | gunzip | tar --no-same-owner -xf - |
| 1218 |
vapier |
1.93 |
;; |
| 1219 |
vapier |
1.68 |
*) |
| 1220 |
vapier |
1.93 |
eerror "Unknown filetype \"${filetype}\" ?" |
| 1221 |
vapier |
1.68 |
false |
| 1222 |
|
|
;; |
| 1223 |
|
|
esac |
| 1224 |
|
|
assert "failure unpacking (${filetype}) makeself ${shrtsrc} ('${ver}' +${skip})" |
| 1225 |
wolf31o2 |
1.56 |
} |
| 1226 |
|
|
|
| 1227 |
|
|
# Display a license for user to accept. |
| 1228 |
|
|
# |
| 1229 |
|
|
# Usage: check_license [license] |
| 1230 |
|
|
# - If the file is not specified then ${LICENSE} is used. |
| 1231 |
|
|
check_license() { |
| 1232 |
vapier |
1.60 |
local lic=$1 |
| 1233 |
|
|
if [ -z "${lic}" ] ; then |
| 1234 |
|
|
lic="${PORTDIR}/licenses/${LICENSE}" |
| 1235 |
wolf31o2 |
1.56 |
else |
| 1236 |
vapier |
1.60 |
if [ -e "${PORTDIR}/licenses/${src}" ] ; then |
| 1237 |
|
|
lic="${PORTDIR}/licenses/${src}" |
| 1238 |
|
|
elif [ -e "${PWD}/${src}" ] ; then |
| 1239 |
|
|
lic="${PWD}/${src}" |
| 1240 |
|
|
elif [ -e "${src}" ] ; then |
| 1241 |
|
|
lic="${src}" |
| 1242 |
wolf31o2 |
1.56 |
fi |
| 1243 |
|
|
fi |
| 1244 |
vapier |
1.60 |
[ ! -f "${lic}" ] && die "Could not find requested license ${src}" |
| 1245 |
vapier |
1.64 |
local l="`basename ${lic}`" |
| 1246 |
wolf31o2 |
1.56 |
|
| 1247 |
vapier |
1.60 |
# here is where we check for the licenses the user already |
| 1248 |
|
|
# accepted ... if we don't find a match, we make the user accept |
| 1249 |
wolf31o2 |
1.106 |
local shopts=$- |
| 1250 |
vapier |
1.60 |
local alic |
| 1251 |
wolf31o2 |
1.106 |
set -o noglob #so that bash doesn't expand "*" |
| 1252 |
wolf31o2 |
1.104 |
for alic in ${ACCEPT_LICENSE} ; do |
| 1253 |
wolf31o2 |
1.106 |
if [[ ${alic} == * || ${alic} == ${l} ]]; then |
| 1254 |
|
|
set +o noglob; set -${shopts} #reset old shell opts |
| 1255 |
|
|
return 0 |
| 1256 |
|
|
fi |
| 1257 |
vapier |
1.60 |
done |
| 1258 |
wolf31o2 |
1.106 |
set +o noglob; set -$shopts #reset old shell opts |
| 1259 |
vapier |
1.60 |
|
| 1260 |
vapier |
1.117 |
local licmsg="$(emktemp)" |
| 1261 |
vapier |
1.60 |
cat << EOF > ${licmsg} |
| 1262 |
|
|
********************************************************** |
| 1263 |
|
|
The following license outlines the terms of use of this |
| 1264 |
|
|
package. You MUST accept this license for installation to |
| 1265 |
|
|
continue. When you are done viewing, hit 'q'. If you |
| 1266 |
|
|
CTRL+C out of this, the install will not run! |
| 1267 |
|
|
********************************************************** |
| 1268 |
|
|
|
| 1269 |
|
|
EOF |
| 1270 |
|
|
cat ${lic} >> ${licmsg} |
| 1271 |
|
|
${PAGER:-less} ${licmsg} || die "Could not execute pager (${PAGER}) to accept ${lic}" |
| 1272 |
vapier |
1.64 |
einfon "Do you accept the terms of this license (${l})? [yes/no] " |
| 1273 |
vapier |
1.60 |
read alic |
| 1274 |
|
|
case ${alic} in |
| 1275 |
|
|
yes|Yes|y|Y) |
| 1276 |
|
|
return 0 |
| 1277 |
|
|
;; |
| 1278 |
|
|
*) |
| 1279 |
|
|
echo;echo;echo |
| 1280 |
|
|
eerror "You MUST accept the license to continue! Exiting!" |
| 1281 |
|
|
die "Failed to accept license" |
| 1282 |
|
|
;; |
| 1283 |
|
|
esac |
| 1284 |
vapier |
1.23 |
} |
| 1285 |
vapier |
1.75 |
|
| 1286 |
|
|
# Aquire cd(s) for those lovely cd-based emerges. Yes, this violates |
| 1287 |
|
|
# the whole 'non-interactive' policy, but damnit I want CD support ! |
| 1288 |
|
|
# |
| 1289 |
|
|
# with these cdrom functions we handle all the user interaction and |
| 1290 |
|
|
# standardize everything. all you have to do is call cdrom_get_cds() |
| 1291 |
|
|
# and when the function returns, you can assume that the cd has been |
| 1292 |
|
|
# found at CDROM_ROOT. |
| 1293 |
|
|
# |
| 1294 |
|
|
# normally the cdrom functions will refer to the cds as 'cd #1', 'cd #2', |
| 1295 |
|
|
# etc... if you want to give the cds better names, then just export |
| 1296 |
|
|
# the CDROM_NAME_X variables before calling cdrom_get_cds(). |
| 1297 |
|
|
# |
| 1298 |
|
|
# for those multi cd ebuilds, see the cdrom_load_next_cd() below. |
| 1299 |
|
|
# |
| 1300 |
|
|
# Usage: cdrom_get_cds <file on cd1> [file on cd2] [file on cd3] [...] |
| 1301 |
|
|
# - this will attempt to locate a cd based upon a file that is on |
| 1302 |
|
|
# the cd ... the more files you give this function, the more cds |
| 1303 |
|
|
# the cdrom functions will handle |
| 1304 |
|
|
cdrom_get_cds() { |
| 1305 |
|
|
# first we figure out how many cds we're dealing with by |
| 1306 |
|
|
# the # of files they gave us |
| 1307 |
|
|
local cdcnt=0 |
| 1308 |
|
|
local f= |
| 1309 |
|
|
for f in "$@" ; do |
| 1310 |
|
|
cdcnt=$((cdcnt + 1)) |
| 1311 |
|
|
export CDROM_CHECK_${cdcnt}="$f" |
| 1312 |
|
|
done |
| 1313 |
|
|
export CDROM_TOTAL_CDS=${cdcnt} |
| 1314 |
|
|
export CDROM_CURRENT_CD=1 |
| 1315 |
|
|
|
| 1316 |
|
|
# now we see if the user gave use CD_ROOT ... |
| 1317 |
|
|
# if they did, let's just believe them that it's correct |
| 1318 |
vapier |
1.131 |
if [[ ! -z ${CD_ROOT} ]] ; then |
| 1319 |
|
|
export CDROM_ROOT=${CD_ROOT} |
| 1320 |
vapier |
1.75 |
einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
| 1321 |
|
|
return |
| 1322 |
|
|
fi |
| 1323 |
|
|
# do the same for CD_ROOT_X |
| 1324 |
vapier |
1.131 |
if [[ ! -z ${CD_ROOT_1} ]] ; then |
| 1325 |
vapier |
1.75 |
local var= |
| 1326 |
|
|
cdcnt=0 |
| 1327 |
vapier |
1.131 |
while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
| 1328 |
vapier |
1.75 |
cdcnt=$((cdcnt + 1)) |
| 1329 |
|
|
var="CD_ROOT_${cdcnt}" |
| 1330 |
vapier |
1.131 |
if [[ -z ${!var} ]] ; then |
| 1331 |
vapier |
1.75 |
eerror "You must either use just the CD_ROOT" |
| 1332 |
|
|
eerror "or specify ALL the CD_ROOT_X variables." |
| 1333 |
|
|
eerror "In this case, you will need ${CDROM_TOTAL_CDS} CD_ROOT_X variables." |
| 1334 |
|
|
die "could not locate CD_ROOT_${cdcnt}" |
| 1335 |
|
|
fi |
| 1336 |
|
|
export CDROM_ROOTS_${cdcnt}="${!var}" |
| 1337 |
|
|
done |
| 1338 |
|
|
export CDROM_ROOT=${CDROM_ROOTS_1} |
| 1339 |
|
|
einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
| 1340 |
|
|
return |
| 1341 |
|
|
fi |
| 1342 |
|
|
|
| 1343 |
vapier |
1.131 |
if [[ ${CDROM_TOTAL_CDS} -eq 1 ]] ; then |
| 1344 |
vapier |
1.75 |
einfon "This ebuild will need the " |
| 1345 |
vapier |
1.131 |
if [[ -z ${CDROM_NAME} ]] ; then |
| 1346 |
vapier |
1.75 |
echo "cdrom for ${PN}." |
| 1347 |
|
|
else |
| 1348 |
|
|
echo "${CDROM_NAME}." |
| 1349 |
|
|
fi |
| 1350 |
|
|
echo |
| 1351 |
|
|
einfo "If you do not have the CD, but have the data files" |
| 1352 |
|
|
einfo "mounted somewhere on your filesystem, just export" |
| 1353 |
|
|
einfo "the variable CD_ROOT so that it points to the" |
| 1354 |
|
|
einfo "directory containing the files." |
| 1355 |
|
|
echo |
| 1356 |
vapier |
1.132 |
einfo "For example:" |
| 1357 |
|
|
einfo "export CD_ROOT=/mnt/cdrom" |
| 1358 |
|
|
echo |
| 1359 |
vapier |
1.75 |
else |
| 1360 |
|
|
einfo "This package will need access to ${CDROM_TOTAL_CDS} cds." |
| 1361 |
|
|
cdcnt=0 |
| 1362 |
vapier |
1.131 |
while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
| 1363 |
vapier |
1.75 |
cdcnt=$((cdcnt + 1)) |
| 1364 |
|
|
var="CDROM_NAME_${cdcnt}" |
| 1365 |
vapier |
1.131 |
[[ ! -z ${!var} ]] && einfo " CD ${cdcnt}: ${!var}" |
| 1366 |
vapier |
1.75 |
done |
| 1367 |
|
|
echo |
| 1368 |
|
|
einfo "If you do not have the CDs, but have the data files" |
| 1369 |
|
|
einfo "mounted somewhere on your filesystem, just export" |
| 1370 |
|
|
einfo "the following variables so they point to the right place:" |
| 1371 |
|
|
einfon "" |
| 1372 |
|
|
cdcnt=0 |
| 1373 |
vapier |
1.131 |
while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do |
| 1374 |
vapier |
1.75 |
cdcnt=$((cdcnt + 1)) |
| 1375 |
|
|
echo -n " CD_ROOT_${cdcnt}" |
| 1376 |
|
|
done |
| 1377 |
|
|
echo |
| 1378 |
|
|
einfo "Or, if you have all the files in the same place, or" |
| 1379 |
|
|
einfo "you only have one cdrom, you can export CD_ROOT" |
| 1380 |
|
|
einfo "and that place will be used as the same data source" |
| 1381 |
|
|
einfo "for all the CDs." |
| 1382 |
|
|
echo |
| 1383 |
vapier |
1.132 |
einfo "For example:" |
| 1384 |
|
|
einfo "export CD_ROOT_1=/mnt/cdrom" |
| 1385 |
|
|
echo |
| 1386 |
vapier |
1.75 |
fi |
| 1387 |
|
|
export CDROM_CURRENT_CD=0 |
| 1388 |
|
|
cdrom_load_next_cd |
| 1389 |
|
|
} |
| 1390 |
|
|
|
| 1391 |
|
|
# this is only used when you need access to more than one cd. |
| 1392 |
|
|
# when you have finished using the first cd, just call this function. |
| 1393 |
|
|
# when it returns, CDROM_ROOT will be pointing to the second cd. |
| 1394 |
|
|
# remember, you can only go forward in the cd chain, you can't go back. |
| 1395 |
|
|
cdrom_load_next_cd() { |
| 1396 |
|
|
export CDROM_CURRENT_CD=$((CDROM_CURRENT_CD + 1)) |
| 1397 |
|
|
local var= |
| 1398 |
|
|
|
| 1399 |
vapier |
1.131 |
if [[ ! -z ${CD_ROOT} ]] ; then |
| 1400 |
vapier |
1.79 |
einfo "Using same root as before for CD #${CDROM_CURRENT_CD}" |
| 1401 |
|
|
return |
| 1402 |
|
|
fi |
| 1403 |
|
|
|
| 1404 |
vapier |
1.75 |
unset CDROM_ROOT |
| 1405 |
|
|
var=CDROM_ROOTS_${CDROM_CURRENT_CD} |
| 1406 |
vapier |
1.131 |
if [[ -z ${!var} ]] ; then |
| 1407 |
vapier |
1.75 |
var="CDROM_CHECK_${CDROM_CURRENT_CD}" |
| 1408 |
|
|
cdrom_locate_file_on_cd ${!var} |
| 1409 |
|
|
else |
| 1410 |
vapier |
1.131 |
export CDROM_ROOT=${!var} |
| 1411 |
vapier |
1.75 |
fi |
| 1412 |
|
|
|
| 1413 |
|
|
einfo "Found CD #${CDROM_CURRENT_CD} root at ${CDROM_ROOT}" |
| 1414 |
|
|
} |
| 1415 |
|
|
|
| 1416 |
|
|
# this is used internally by the cdrom_get_cds() and cdrom_load_next_cd() |
| 1417 |
|
|
# functions. this should *never* be called from an ebuild. |
| 1418 |
|
|
# all it does is try to locate a give file on a cd ... if the cd isn't |
| 1419 |
|
|
# found, then a message asking for the user to insert the cdrom will be |
| 1420 |
|
|
# displayed and we'll hang out here until: |
| 1421 |
|
|
# (1) the file is found on a mounted cdrom |
| 1422 |
|
|
# (2) the user hits CTRL+C |
| 1423 |
|
|
cdrom_locate_file_on_cd() { |
| 1424 |
vapier |
1.131 |
while [[ -z ${CDROM_ROOT} ]] ; do |
| 1425 |
vapier |
1.75 |
local dir="$(dirname ${@})" |
| 1426 |
|
|
local file="$(basename ${@})" |
| 1427 |
|
|
local mline="" |
| 1428 |
|
|
local showedmsg=0 |
| 1429 |
|
|
|
| 1430 |
vapier |
1.131 |
for mline in $(mount | egrep -e '(iso|cdrom)' | awk '{print $3}') ; do |
| 1431 |
|
|
[[ -d ${mline}/${dir} ]] || continue |
| 1432 |
|
|
[[ ! -z $(find ${mline}/${dir} -iname ${file} -maxdepth 1) ]] \ |
| 1433 |
vapier |
1.75 |
&& export CDROM_ROOT=${mline} |
| 1434 |
|
|
done |
| 1435 |
|
|
|
| 1436 |
vapier |
1.131 |
if [[ -z ${CDROM_ROOT} ]] ; then |
| 1437 |
vapier |
1.75 |
echo |
| 1438 |
vapier |
1.131 |
if [[ ${showedmsg} -eq 0 ]] ; then |
| 1439 |
|
|
if [[ ${CDROM_TOTAL_CDS} -eq 1 ]] ; then |
| 1440 |
|
|
if [[ -z ${CDROM_NAME} ]] ; then |
| 1441 |
vapier |
1.75 |
einfo "Please insert the cdrom for ${PN} now !" |
| 1442 |
|
|
else |
| 1443 |
|
|
einfo "Please insert the ${CDROM_NAME} cdrom now !" |
| 1444 |
|
|
fi |
| 1445 |
|
|
else |
| 1446 |
vapier |
1.131 |
if [[ -z ${CDROM_NAME_1} ]] ; then |
| 1447 |
vapier |
1.75 |
einfo "Please insert cd #${CDROM_CURRENT_CD} for ${PN} now !" |
| 1448 |
|
|
else |
| 1449 |
|
|
local var="CDROM_NAME_${CDROM_CURRENT_CD}" |
| 1450 |
|
|
einfo "Please insert+mount the ${!var} cdrom now !" |
| 1451 |
|
|
fi |
| 1452 |
|
|
fi |
| 1453 |
|
|
showedmsg=1 |
| 1454 |
|
|
fi |
| 1455 |
|
|
einfo "Press return to scan for the cd again" |
| 1456 |
|
|
einfo "or hit CTRL+C to abort the emerge." |
| 1457 |
|
|
read |
| 1458 |
|
|
fi |
| 1459 |
|
|
done |
| 1460 |
|
|
} |
| 1461 |
vapier |
1.92 |
|
| 1462 |
mr_bones_ |
1.100 |
# Make sure that LINGUAS only contains languages that |
| 1463 |
vapier |
1.92 |
# a package can support |
| 1464 |
|
|
# |
| 1465 |
|
|
# usage: strip-linguas <allow LINGUAS> |
| 1466 |
|
|
# strip-linguas -i <directories of .po files> |
| 1467 |
|
|
# strip-linguas -u <directories of .po files> |
| 1468 |
|
|
# |
| 1469 |
|
|
# The first form allows you to specify a list of LINGUAS. |
| 1470 |
mr_bones_ |
1.100 |
# The -i builds a list of po files found in all the |
| 1471 |
vapier |
1.92 |
# directories and uses the intersection of the lists. |
| 1472 |
mr_bones_ |
1.100 |
# The -u builds a list of po files found in all the |
| 1473 |
vapier |
1.92 |
# directories and uses the union of the lists. |
| 1474 |
|
|
strip-linguas() { |
| 1475 |
|
|
local ls newls |
| 1476 |
|
|
if [ "$1" == "-i" ] || [ "$1" == "-u" ] ; then |
| 1477 |
|
|
local op="$1"; shift |
| 1478 |
|
|
ls=" $(find "$1" -name '*.po' -printf '%f ') "; shift |
| 1479 |
|
|
local d f |
| 1480 |
|
|
for d in "$@" ; do |
| 1481 |
|
|
if [ "${op}" == "-u" ] ; then |
| 1482 |
|
|
newls="${ls}" |
| 1483 |
|
|
else |
| 1484 |
|
|
newls="" |
| 1485 |
|
|
fi |
| 1486 |
|
|
for f in $(find "$d" -name '*.po' -printf '%f ') ; do |
| 1487 |
|
|
if [ "${op}" == "-i" ] ; then |
| 1488 |
|
|
[ "${ls/ ${f} /}" != "${ls}" ] && newls="${newls} ${f}" |
| 1489 |
|
|
else |
| 1490 |
|
|
[ "${ls/ ${f} /}" == "${ls}" ] && newls="${newls} ${f}" |
| 1491 |
|
|
fi |
| 1492 |
|
|
done |
| 1493 |
|
|
ls="${newls}" |
| 1494 |
|
|
done |
| 1495 |
|
|
ls="${ls//.po}" |
| 1496 |
|
|
else |
| 1497 |
|
|
ls="$@" |
| 1498 |
|
|
fi |
| 1499 |
|
|
|
| 1500 |
|
|
ls=" ${ls} " |
| 1501 |
|
|
newls="" |
| 1502 |
|
|
for f in ${LINGUAS} ; do |
| 1503 |
|
|
if [ "${ls/ ${f} /}" != "${ls}" ] ; then |
| 1504 |
vapier |
1.120 |
newls="${newls} ${f}" |
| 1505 |
vapier |
1.92 |
else |
| 1506 |
|
|
ewarn "Sorry, but ${PN} does not support the ${f} LINGUA" |
| 1507 |
|
|
fi |
| 1508 |
|
|
done |
| 1509 |
|
|
if [ -z "${newls}" ] ; then |
| 1510 |
|
|
unset LINGUAS |
| 1511 |
|
|
else |
| 1512 |
|
|
export LINGUAS="${newls}" |
| 1513 |
|
|
fi |
| 1514 |
|
|
} |
| 1515 |
iggy |
1.110 |
|
| 1516 |
|
|
# moved from kernel.eclass since they are generally useful outside of |
| 1517 |
|
|
# kernel.eclass -iggy (20041002) |
| 1518 |
|
|
|
| 1519 |
|
|
# the following functions are useful in kernel module ebuilds, etc. |
| 1520 |
|
|
# for an example see ivtv or drbd ebuilds |
| 1521 |
|
|
|
| 1522 |
|
|
# set's ARCH to match what the kernel expects |
| 1523 |
|
|
set_arch_to_kernel() { |
| 1524 |
vapier |
1.140 |
i=10 |
| 1525 |
|
|
while ((i--)) ; do |
| 1526 |
|
|
ewarn "PLEASE UPDATE TO YOUR PACKAGE TO USE linux-info.eclass" |
| 1527 |
|
|
done |
| 1528 |
iggy |
1.110 |
export EUTILS_ECLASS_PORTAGE_ARCH="${ARCH}" |
| 1529 |
|
|
case ${ARCH} in |
| 1530 |
|
|
x86) export ARCH="i386";; |
| 1531 |
|
|
amd64) export ARCH="x86_64";; |
| 1532 |
|
|
hppa) export ARCH="parisc";; |
| 1533 |
|
|
mips) export ARCH="mips";; |
| 1534 |
eradicator |
1.142 |
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! |
| 1535 |
iggy |
1.110 |
*) export ARCH="${ARCH}";; |
| 1536 |
|
|
esac |
| 1537 |
|
|
} |
| 1538 |
|
|
|
| 1539 |
|
|
# set's ARCH back to what portage expects |
| 1540 |
|
|
set_arch_to_portage() { |
| 1541 |
vapier |
1.140 |
i=10 |
| 1542 |
|
|
while ((i--)) ; do |
| 1543 |
|
|
ewarn "PLEASE UPDATE TO YOUR PACKAGE TO USE linux-info.eclass" |
| 1544 |
|
|
done |
| 1545 |
iggy |
1.110 |
export ARCH="${EUTILS_ECLASS_PORTAGE_ARCH}" |
| 1546 |
|
|
} |
| 1547 |
eradicator |
1.111 |
|
| 1548 |
|
|
# Jeremy Huddleston <eradicator@gentoo.org>: |
| 1549 |
|
|
# preserve_old_lib /path/to/libblah.so.0 |
| 1550 |
|
|
# preserve_old_lib_notify /path/to/libblah.so.0 |
| 1551 |
|
|
# |
| 1552 |
|
|
# These functions are useful when a lib in your package changes --soname. Such |
| 1553 |
|
|
# an example might be from libogg.so.0 to libogg.so.1. Removing libogg.so.0 |
| 1554 |
|
|
# would break packages that link against it. Most people get around this |
| 1555 |
|
|
# by using the portage SLOT mechanism, but that is not always a relevant |
| 1556 |
|
|
# solution, so instead you can add the following to your ebuilds: |
| 1557 |
|
|
# |
| 1558 |
|
|
# src_install() { |
| 1559 |
|
|
# ... |
| 1560 |
|
|
# preserve_old_lib /usr/$(get_libdir)/libogg.so.0 |
| 1561 |
|
|
# ... |
| 1562 |
|
|
# } |
| 1563 |
|
|
# |
| 1564 |
|
|
# pkg_postinst() { |
| 1565 |
|
|
# ... |
| 1566 |
|
|
# preserve_old_lib_notify /usr/$(get_libdir)/libogg.so.0 |
| 1567 |
|
|
# ... |
| 1568 |
|
|
# } |
| 1569 |
|
|
|
| 1570 |
|
|
preserve_old_lib() { |
| 1571 |
|
|
LIB=$1 |
| 1572 |
|
|
|
| 1573 |
|
|
if [ -n "${LIB}" -a -f "${ROOT}${LIB}" ]; then |
| 1574 |
|
|
SONAME=`basename ${LIB}` |
| 1575 |
|
|
DIRNAME=`dirname ${LIB}` |
| 1576 |
|
|
|
| 1577 |
|
|
dodir ${DIRNAME} |
| 1578 |
|
|
cp ${ROOT}${LIB} ${D}${DIRNAME} |
| 1579 |
|
|
touch ${D}${LIB} |
| 1580 |
|
|
fi |
| 1581 |
|
|
} |
| 1582 |
|
|
|
| 1583 |
|
|
preserve_old_lib_notify() { |
| 1584 |
seemant |
1.134 |
LIB=$1 |
| 1585 |
eradicator |
1.111 |
|
| 1586 |
seemant |
1.134 |
if [ -n "${LIB}" -a -f "${ROOT}${LIB}" ]; then |
| 1587 |
|
|
SONAME=`basename ${LIB}` |
| 1588 |
eradicator |
1.111 |
|
| 1589 |
|
|
einfo "An old version of an installed library was detected on your system." |
| 1590 |
|
|
einfo "In order to avoid breaking packages that link against is, this older version" |
| 1591 |
|
|
einfo "is not being removed. In order to make full use of this newer version," |
| 1592 |
|
|
einfo "you will need to execute the following command:" |
| 1593 |
|
|
einfo " revdep-rebuild --soname ${SONAME}" |
| 1594 |
|
|
einfo |
| 1595 |
|
|
einfo "After doing that, you can safely remove ${LIB}" |
| 1596 |
eradicator |
1.116 |
einfo "Note: 'emerge gentoolkit' to get revdep-rebuild" |
| 1597 |
seemant |
1.134 |
fi |
| 1598 |
eradicator |
1.111 |
} |
| 1599 |
vapier |
1.125 |
|
| 1600 |
ka0ttic |
1.143 |
# Hack for people to figure out if a package was built with |
| 1601 |
vapier |
1.125 |
# certain USE flags |
| 1602 |
|
|
# |
| 1603 |
vapier |
1.130 |
# Usage: built_with_use [-a|-o] <DEPEND ATOM> <List of USE flags> |
| 1604 |
vapier |
1.125 |
# ex: built_with_use xchat gtk2 |
| 1605 |
vapier |
1.130 |
# |
| 1606 |
|
|
# Flags: -a all USE flags should be utilized |
| 1607 |
|
|
# -o at least one USE flag should be utilized |
| 1608 |
|
|
# Note: the default flag is '-a' |
| 1609 |
vapier |
1.125 |
built_with_use() { |
| 1610 |
vapier |
1.130 |
local opt=$1 |
| 1611 |
|
|
[[ ${opt:0:1} = "-" ]] && shift || opt="-a" |
| 1612 |
|
|
|
| 1613 |
|
|
local PKG=$(best_version $1) |
| 1614 |
|
|
shift |
| 1615 |
|
|
|
| 1616 |
vapier |
1.125 |
local USEFILE="${ROOT}/var/db/pkg/${PKG}/USE" |
| 1617 |
|
|
[[ ! -e ${USEFILE} ]] && return 1 |
| 1618 |
|
|
|
| 1619 |
|
|
local USE_BUILT=$(<${USEFILE}) |
| 1620 |
vapier |
1.130 |
while [[ $# -gt 0 ]] ; do |
| 1621 |
|
|
if [[ ${opt} = "-o" ]] ; then |
| 1622 |
|
|
has $1 ${USE_BUILT} && return 0 |
| 1623 |
|
|
else |
| 1624 |
|
|
has $1 ${USE_BUILT} || return 1 |
| 1625 |
|
|
fi |
| 1626 |
vapier |
1.125 |
shift |
| 1627 |
|
|
done |
| 1628 |
vapier |
1.130 |
[[ ${opt} = "-a" ]] |
| 1629 |
vapier |
1.125 |
} |
| 1630 |
vapier |
1.126 |
|
| 1631 |
ka0ttic |
1.143 |
# Many configure scripts wrongly bail when a C++ compiler |
| 1632 |
vapier |
1.126 |
# could not be detected. #73450 |
| 1633 |
|
|
epunt_cxx() { |
| 1634 |
vapier |
1.127 |
local dir=$1 |
| 1635 |
|
|
[[ -z ${dir} ]] && dir=${S} |
| 1636 |
|
|
ebegin "Removing useless C++ checks" |
| 1637 |
|
|
local f |
| 1638 |
|
|
for f in $(find ${dir} -name configure) ; do |
| 1639 |
|
|
patch -p0 "${f}" "${PORTDIR}/eclass/ELT-patches/nocxx/nocxx.patch" > /dev/null |
| 1640 |
|
|
done |
| 1641 |
|
|
eend 0 |
| 1642 |
vapier |
1.126 |
} |
| 1643 |
ka0ttic |
1.143 |
|
| 1644 |
|
|
# dopamd [ file ] [ new file ] |
| 1645 |
|
|
# |
| 1646 |
|
|
# Install pam auth config file in /etc/pam.d |
| 1647 |
|
|
# |
| 1648 |
|
|
# The first argument, 'file' is required. Install as 'new file', if |
| 1649 |
|
|
# specified. |
| 1650 |
|
|
|
| 1651 |
|
|
dopamd() { |
| 1652 |
|
|
local pamd="$1" newpamd="${2:-$1}" |
| 1653 |
|
|
[[ -z "$1" ]] && die "dopamd requires at least one argument." |
| 1654 |
|
|
|
| 1655 |
|
|
use pam || return 0 |
| 1656 |
|
|
|
| 1657 |
|
|
insinto /etc/pam.d |
| 1658 |
|
|
# these are the default doins options, but be explicit just in case |
| 1659 |
|
|
insopts -m 0644 -o root -g root |
| 1660 |
|
|
newins ${pamd} ${newpamd} || die "failed to install ${newpamd}" |
| 1661 |
|
|
} |