1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
|
#!/bin/bash
# Copyright (C) 2007-2010 PlayOnLinux Team
# Copyright (C) 2011 Pâris Quentin
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
##
# This is just a copy of function in playonlinux, but we need it earlier
[ "$POL_OS" = "Mac" ] && export LANG="$RLANG"
POL_Config_pRead (){ cat "$POL_USER_ROOT/playonlinux.cfg" 2> /dev/null | grep "^$1" | cut -d\= -f2; }
### Follow symlinks for find
alias find="find -H"
### Security feature
[ "$(which sudo)" ] && sudo -k
### Terminal
export POL_TERM="Default"
### Desktop
[ "$(which xdg-user-dir)" ] && export DESKTOP="$(xdg-user-dir DESKTOP)" || export DESKTOP="$HOME/Desktop"
### Override ~/.wgetrc
export WGETRC="$POL_USER_ROOT/configurations/wgetrc"
### Language
if [ ! "$NOGETTEXT" = "TRUE" ] || [ "$(POL_Config_pRead NOGETTEXT)" = "TRUE" ]
then
export TEXTDOMAIN="pol"
. gettext.sh
eval_gettext > /dev/null || eval_gettext() { printf "$@"; }
else
eval_gettext() { printf "$@"; }
fi
which shasum > /dev/null 2> /dev/null || shasum () { sha1sum "$@"; }
if [ "$POL_OS" == "Linux" ]
then
export POL_LANG="$(echo "$LANG" | cut -d\_ -f 1)"
export MD5_COMMAND="md5sum"
fi
if [ "$POL_OS" == "Mac" ]
then
export POL_LANG="$(echo "$RLANG" | cut -d _ -f1)"
export MD5_COMMAND="md5"
fi
#Codes de sorties
EXIT_MISSING=2
EXIT_ERROR=255
EXIT_SUCCES=0
# Default architecture
export POL_ARCH="x86"
# Divers trucs
export IGNORE_ICON_DIR="false"
export GNUPGHOME="$REPERTOIRE/gpg"
# Drivers problem
[ "$(POL_Config_pRead FIX_DRI_PATH)" = "TRUE" ] && [ "$POL_OS" = "Linux" ] && export LIBGL_DRIVERS_PATH="/usr/lib/dri/:/usr/lib64/dri/:/usr/lib32/dri/"
unset WINEARCH
|