diff options
Diffstat (limited to 'math/mprime/files')
-rw-r--r-- | math/mprime/files/pkg-message.in | 10 | ||||
-rw-r--r-- | math/mprime/files/wrapper.sh.in | 23 |
2 files changed, 0 insertions, 33 deletions
diff --git a/math/mprime/files/pkg-message.in b/math/mprime/files/pkg-message.in deleted file mode 100644 index 46a39c0949cd..000000000000 --- a/math/mprime/files/pkg-message.in +++ /dev/null @@ -1,10 +0,0 @@ - ATTENTIONATTENTION: - -Please, make sure that you read -%%DOCSDIR%%/license.txt -and agree to the licensing terms before running this application. - -Furthermore, read -%%DOCSDIR%%/readme.txt -It contains important information about both configuring and running -mprime. You will have problems running it if you do not read it. diff --git a/math/mprime/files/wrapper.sh.in b/math/mprime/files/wrapper.sh.in deleted file mode 100644 index 3276091dc060..000000000000 --- a/math/mprime/files/wrapper.sh.in +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh - -PREFIX="%%PREFIX%%" -PROGRAM="${0}" -DIRNAME=${HOME}/.mprime - -if [ ! -d ${DIRNAME} ] -then - mkdir -p ${DIRNAME} -fi - -if [ ! -h ${DIRNAME}/${PROGRAM##*/} ] -then - ln -sf ${PREFIX}/bin/${PROGRAM##*/}-real ${DIRNAME}/${PROGRAM##*/} -fi - -echo " ${*} " | grep " \-createdironly " || -{ - cd ${DIRNAME} && - echo Running under ${DIRNAME} && - exec ./${PROGRAM##*/} "${@}" || - echo PROBLEM. Cannot create directory ${DIRNAME}, make sure you have the proper permissions to create it and try again -} |