2008-12-05 12:04:53 -05:00
|
|
|
#
|
|
|
|
# /etc/profile: system-wide defaults for bash(1) login shells
|
|
|
|
#
|
2014-03-21 11:59:38 -04:00
|
|
|
export UNAME=`uname -s`
|
2008-12-05 12:04:53 -05:00
|
|
|
|
|
|
|
if [ "`id -u`" = "0" ]; then
|
2014-03-21 11:59:38 -04:00
|
|
|
if [ "${UNAME}" = "Linux" ]; then
|
|
|
|
export PATH="$PATH:/opt/bin:/usr/local/bin:/usr/local/sbin:/usr/local/freeswitch/bin"
|
|
|
|
export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/local/lib/pkgconfig
|
|
|
|
fi
|
|
|
|
if [ "${UNAME}" = "SunOS" ]; then
|
|
|
|
export PATH="$PATH:/opt/64/bin:/opt/bin:/usr/local/bin:/usr/local/sbin:/usr/local/freeswitch/bin"
|
|
|
|
export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/opt/64/lib/pkgconfig:/usr/lib/amd64/pkgconfig:/opt/lib/pkgconfig:/usr/lib/pkgconfig
|
|
|
|
fi
|
|
|
|
if [ "${UNAME}" = "OpenBSD" ]; then
|
|
|
|
export PATH="$PATH:/usr/local/freeswitch/bin"
|
|
|
|
export AUTOCONF_VERSION=2.69
|
|
|
|
export AUTOMAKE_VERSION=1.13
|
|
|
|
export LIBTOOL=/usr/local/bin/libtoolize
|
|
|
|
export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/usr/local/lib/pkgconfig:/usr/lib/pkgconfig
|
|
|
|
fi
|
|
|
|
if [ "${UNAME}" = "NetBSD" ]; then
|
|
|
|
export PATH="$PATH:/usr/local/freeswitch/bin"
|
|
|
|
export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/usr/lib/pkgconfig:/usr/pkg/lib/pkgconfig
|
|
|
|
export PKG_PATH=ftp://199.233.217.249/pub/pkgsrc/packages/NetBSD/amd64/6.1.3/All
|
|
|
|
fi
|
|
|
|
if [ "${UNAME}" = "FreeBSD" ]; then
|
|
|
|
export PATH="$PATH:/usr/local/freeswitch/bin"
|
|
|
|
export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/usr/lib/pkgconfig:/usr/pkg/lib/pkgconfig
|
|
|
|
fi
|
|
|
|
if [ "${UNAME}" = "DragonFly" ]; then
|
|
|
|
export PATH="$PATH:/usr/local/freeswitch/bin"
|
|
|
|
export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/usr/lib/pkgconfig:/usr/pkg/lib/pkgconfig
|
|
|
|
fi
|
2008-12-05 12:04:53 -05:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [ ! -f ~/.inputrc ]; then
|
|
|
|
export INPUTRC="/etc/inputrc"
|
|
|
|
fi
|
|
|
|
|
2010-02-01 13:28:08 -05:00
|
|
|
set -o emacs
|
|
|
|
|
2008-12-05 12:04:53 -05:00
|
|
|
export LESSCHARSET="latin1"
|
|
|
|
export LESS="-R"
|
|
|
|
export CHARSET="ISO-8859-1"
|
2009-02-17 13:43:54 -05:00
|
|
|
export PS1='\n\[\033[01;31m\]\u@\h\[\033[01;36m\] [\d \@] \[\033[01;33m\] \w\n\[\033[00m\]<\#>:'
|
2008-12-05 12:04:53 -05:00
|
|
|
export PS2="\[\033[1m\]> \[\033[0m\]"
|
|
|
|
export VISUAL=emacs
|
2012-02-01 19:37:23 -05:00
|
|
|
export GIT_SSL_NO_VERIFY=true
|
2008-12-05 12:04:53 -05:00
|
|
|
|
|
|
|
umask 022
|
2008-12-09 19:38:47 -05:00
|
|
|
alias e='emacs'
|
2014-02-18 21:49:00 -05:00
|
|
|
alias eamcs='emacs'
|
|
|
|
alias emcas='emacs'
|
|
|
|
alias meacs='emacs'
|
|
|
|
alias mecas='emacs'
|
2010-05-03 14:46:57 -04:00
|
|
|
alias bgit='git commit --author "Brian West <brian@freeswitch.org>"'
|
|
|
|
alias mgit='git commit --author "Mike Jerris <mike@freeswitch.org>"'
|
|
|
|
alias tgit='git commit --author "Anthony Minessale <anthm@freeswitch.org>"'
|
|
|
|
alias igit='git commit --author "Raymond Chandler <intralanman@freeswitch.org>"'
|
2008-12-09 19:38:47 -05:00
|
|
|
alias dp='emacs /usr/local/freeswitch/conf/dialplan/default.xml'
|
2014-03-06 11:51:01 -05:00
|
|
|
alias go='/usr/local/freeswitch/bin/freeswitch -nonat'
|
2010-01-13 13:02:42 -05:00
|
|
|
alias fstop='top -p `cat /usr/local/freeswitch/run/freeswitch.pid`'
|
|
|
|
alias fsgdb='gdb /usr/local/freeswitch/bin/freeswitch `cat /usr/local/freeswitch/run/freeswitch.pid`'
|
2009-02-13 16:25:35 -05:00
|
|
|
alias fscore='gdb /usr/local/freeswitch/bin/freeswitch `ls -rt core.* | tail -n1`'
|
2009-06-23 19:45:00 -04:00
|
|
|
alias emacs='emacs -nw'
|
2008-12-05 12:04:53 -05:00
|
|
|
# End of file
|