Commit f32800d7 authored by Christof Schulze's avatar Christof Schulze 😎 Committed by cschulze
Browse files

[+] added module for Oracle JRE 1.8.0-45

[+] added module for VMD 1.9.2
parent db9a2ed0
Loading
Loading
Loading
Loading

java/jre-1.8.0_45

0 → 100644
+24 −0
Original line number Diff line number Diff line
#%Module
#
# Oracle JRE 1.8.0-45
#
set     version      1.8.0-45

proc ModulesHelp { } {
	global version
        puts stderr "\tSets up the environment for Oracle JRE $version \n"
        puts stderr "\t- PATH"
}

module-whatis   "sets up the environment for Oracle $version"

set          pkghome          /usr/java/jre1.8.0_45


#prepend-path	LD_LIBRARY_PATH $pkghome/lib
#prepend-path	LD_RUN_PATH     $pkghome/lib
setenv		JAVA_BASE	$pkghome
prepend-path	PATH            $pkghome/bin

unset        pkghome

vmd/1.9.2

0 → 100644
+28 −0
Original line number Diff line number Diff line
#%Module 1.0
#
#  Visual Molecular Dynamics (VMD) module for use with 'environment-modules' package:
#
set     version      "1.9.2"

proc ModulesHelp { } {
        global version

        puts stderr "\tAdds 'VMD' to your PATH environment variable"
        puts stderr "\n\tDescription TODO"
        puts stderr "\n\tVersion $version\n"
}

module-whatis   "activates the Plugins for VMD $version (no optimization)"



conflict		vmd

set			pkghome		/opt/apps/vmd/1.9.2

#setenv			VMD_INC		"-I/$pkghome/include/"
setenv			VMD_BASE	$pkghome
prepend-path            PATH            "/opt/apps/vmd/bin"


unset			pkghome
 No newline at end of file