1 # zsh configuration file for Gromacs
2 # First we remove old gromacs stuff from the paths
3 # by selecting everything else.
4 # This is not 100% necessary, but very useful when we
5 # repeatedly switch between gmx versions in a shell.
7 # First remove gromacs part of ld_library_path
9 for i
in `echo $LD_LIBRARY_PATH | sed "s/:/ /g"`; do
10 if test "$i" != "$GMXLDLIB"; then
14 LD_LIBRARY_PATH
=$tmppath
16 # remove gromacs part of path
18 for i
in `echo $PATH | sed "s/:/ /g"`; do
19 if test "$i" != "$GMXBIN"; then
25 # and remove the gmx part of manpath
27 for i
in `echo $MANPATH | sed "s/:/ /g"`; do
28 if test "$i" != "$GMXMAN"; then
34 ##########################################################
35 # This is the real configuration part. We save the Gromacs
36 # things in separate vars, so we can remove them later.
37 # If you move gromacs, change the next four line.
38 ##########################################################
39 export GMXBIN
=@bindir@
40 export GMXLDLIB
=@libdir@
41 export GMXMAN
=@mandir@
42 export GMXDATA
=@datadir@
44 # NB: The variables already begin with ':' now, or are empty
45 export LD_LIBRARY_PATH
=${GMXLDLIB}${LD_LIBRARY_PATH}
46 export PATH
=${GMXBIN}${PATH}
47 export MANPATH
=${GMXMAN}${MANPATH}
49 # read zsh completions if understand how to use them
50 if compctl
>& /dev
/null
; then
51 if [ -f $GMXBIN/completion.zsh
]; then
52 source $GMXBIN/completion.zsh
;