summarylogtreecommitdiffstats
path: root/geant4.install
blob: 970c6c17090f0144a7eac67bbf1b08ece31e8f4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/bin/sh

_init() {
  variables=("G4LEDATA" \
    "G4LEVELGAMMADATA" \
    "G4NEUTRONHPDATA" \
    "G4NEUTRONXSDATA" \
    "G4PIIDATA" \
    "G4RADIOACTIVEDATA" \
    "G4REALSURFACEDATA" \
    "G4SAIDXSDATA" \
    "G4ABLADATA" )

shell=("sh" "csh")

existing="existing"
path="/etc/profile.d"
}
_clean(){
    for _ext in ${shell[*]}
    do
        rm -f $existing.${_ext}
    done
}
_read() {
    _init
    for _varname in ${variables[*]}
    do
        for _ext in ${shell[*]}
        do
            sed -n /${_varname}/p ${path}/geant4.${_ext} >> $existing.${_ext}
	done
    done
}
_keep() {
    _init
    for _ext in ${shell[*]}
    do
        cat $existing.${_ext} >> ${path}/geant4.${_ext}
    done
    _clean
}

pre_upgrade() {
    _read
}
post_upgrade() {
    _keep
}