diff options
-rw-r--r-- | MANIFEST.in | 1 | ||||
-rw-r--r-- | setup.py | 2 | ||||
-rw-r--r-- | src/env | 12 |
3 files changed, 14 insertions, 1 deletions
diff --git a/MANIFEST.in b/MANIFEST.in index e910148..243b009 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,3 +1,4 @@ recursive-include man/ * recursive-include config/ * +include src/env @@ -24,7 +24,7 @@ setup ( ('share/java-config/config', ["config/jdk-defaults.conf"]), ('/etc/java-config/', ["config/jdk.conf"]), ('/etc/env.d/',["config/20java-config"]), - ('share/java-config/', ["config/symlink-tools"]) + ('share/java-config/', ["config/symlink-tools", "src/env"]) ] ) @@ -0,0 +1,12 @@ +#!/bin/bash +#Too be sourced + +if [[ -n ${GENTOO_VM} ]]; then + vmpath=/usr/share/java-config/vms/${GENTOO_VM}/ +elif [[ -h ${HOME}/.gentoo/user-vm ]]; then + vmpath=${HOME}/.gentoo/user-vm/ +else + vmpath=/usr/share/java-config/vms/system-vm/ +fi + +source ${vmpath}/env |