diff options
Diffstat (limited to 'net-nds/jxplorer/files/jxplorer-3-pre')
-rw-r--r-- | net-nds/jxplorer/files/jxplorer-3-pre | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/net-nds/jxplorer/files/jxplorer-3-pre b/net-nds/jxplorer/files/jxplorer-3-pre new file mode 100644 index 000000000000..5fe640c7328a --- /dev/null +++ b/net-nds/jxplorer/files/jxplorer-3-pre @@ -0,0 +1,26 @@ +jxplorer_home=@GENTOO_PORTAGE_EPREFIX@/usr/share/jxplorer/ + +home="${HOME}/.jxplorer" + +if [ ! -d "${home}" ]; then + mkdir -v "${home}" +fi + +try_create() { + [[ ! -f "${1}" ]] && touch "${1}" +} + +if [ -d ${HOME}/.jxplorer ]; then + for file in search_filters.txt bookmarks.txt quicksearch.txt ; do + try_create "${home}/${file}" + done + for file in security.default csvconfig.txt.default ; do + [[ ! -e "${home}/${file}" ]] && \ + ln -vs "${jxplorer_home}/${file}" "${home}/${subdir}" + done + for subdir in htmldocs icons images templates plugins language ; do + [[ ! -e "${home}/${subdir}" ]] && \ + ln -vs "${jxplorer_home}/${subdir}" "${home}/${subdir}" + done +fi + |