etc/commonshrc

66 lines
1.5 KiB
Plaintext
Raw Normal View History

2011-04-30 20:21:21 +02:00
# Copyright (C) 2011 Gabriel Ebner
# vim:fdm=marker ft=sh:
. /etc/profile
export USER=`whoami`
# $MYPREFIX {{{1
add_to() {
if [ -n "`eval echo \$\{$1\}`" ]; then
export $1="$2:`eval echo \$\{$1\}`"
else
export $1="$2"
fi
}
add_myprefix_to() {
add_to "$1" "$MYPREFIX/$2"
}
2011-07-07 13:12:19 +02:00
export MYPREFIX=~/build/myprefix
2011-04-30 20:21:21 +02:00
add_myprefix_to PATH bin
add_myprefix_to PATH sbin
add_to PATH /sbin
add_to PATH /usr/sbin
add_to PATH /usr/local/sbin
add_to PATH ~/.cabal/bin
add_myprefix_to LD_LIBRARY_PATH lib
add_myprefix_to LD_LIBRARY_PATH lib64
2011-05-02 17:53:34 +02:00
add_to MANPATH :
2011-04-30 23:09:09 +02:00
add_myprefix_to MANPATH share/man
2011-04-30 20:21:21 +02:00
add_myprefix_to PKG_CONFIG_PATH lib/pkgconfig
add_myprefix_to PYTHONPATH lib/python2.6/site-packages
add_myprefix_to PYTHONPATH lib/python/site-packages
add_myprefix_to PYTHONPATH lib/python
add_myprefix_to RUBYLIB lib/ruby/site_ruby/1.8
2011-07-07 13:12:48 +02:00
add_myprefix_to RUBYLIB lib/ruby/site_ruby/1.9.1
add_to PATH ~/.gem/ruby/1.8/bin
add_to PATH ~/.gem/ruby/1.9.1/bin
2011-04-30 20:21:21 +02:00
if [ -x /usr/bin/perl ]; then
2011-07-07 13:13:02 +02:00
PERLVERSION="`perl -e 'printf"%vd\n",$^V'`"
add_myprefix_to PERL5LIB lib/perl/$PERLVERSION
add_myprefix_to PERL5LIB share/perl/$PERLVERSION
2011-04-30 20:21:21 +02:00
fi
add_myprefix_to R_LIBS lib/R:/usr/lib/R/site-library
add_to PATH ~/build/android-sdk-linux_86/platform-tools:~/build/android-sdk-linux_86/tools
# Customisation of Programs {{{1
alias ls='ls --color=auto'
2011-05-20 03:23:55 +02:00
export EMAIL='gebner@2b7e.org'
2011-04-30 20:21:21 +02:00
test -x /usr/bin/lesspipe && eval `lesspipe`
test -x /usr/bin/vim && export EDITOR=/usr/bin/vim
export MPD_HOST=127.0.0.1 MPD_PORT=6600