Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 127493 | Differences between
and this patch

Collapse All | Expand All

(-)annie4.1/msg/wdimex.sh (-3 / +6 lines)
Lines 18-24 Link Here
18
18
19
# pathnames and directories
19
# pathnames and directories
20
  WrdA=/usr/opt/wrdapp
20
  WrdA=/usr/opt/wrdapp
21
  WrdA=/usr
21
  Libr=$WrdA/libanne4.0
22
  Libr=$WrdA/libanne4.0
23
  Libr=$WrdA
22
24
23
#*******************************************************************
25
#*******************************************************************
24
#***** You should not need to modify anything below this line. *****
26
#***** You should not need to modify anything below this line. *****
Lines 67-78 Link Here
67
     done
69
     done
68
     for Seq in $SeqLib ; do
70
     for Seq in $SeqLib ; do
69
        echo I >> $Name.in
71
        echo I >> $Name.in
70
        echo $Libr/msg/$Seq.seq >> $Name.in
72
        echo $Seq.seq >> $Name.in
71
     done
73
     done
72
     echo R >> $Name.in
74
     echo R >> $Name.in
73
75
74
#    get message file shell
76
#    get message file shell
75
     cp $Libr/lib_data/message.wdm $Name.wdm
77
     cp $Libr/share/libanne/message.wdm $Name.wdm
78
     cp $Libr/share/libanne/message.wdm message.wdm
76
79
77
#    build message file
80
#    build message file
78
     $Libr/bin/wdimex < $Name.in
81
     $Libr/bin/wdimex < $Name.in
Lines 102-108 Link Here
102
     echo $Name.wdm > $Name.in
105
     echo $Name.wdm > $Name.in
103
     echo C >> $Name.in
106
     echo C >> $Name.in
104
     echo N >> $Name.in
107
     echo N >> $Name.in
105
     echo $Libr/lib_data/message.wdm >> $Name.in
108
     echo message.wdm >> $Name.in
106
     for Seq in $SeqDat ; do
109
     for Seq in $SeqDat ; do
107
        echo I >> $Name.in
110
        echo I >> $Name.in
108
        echo $Seq >> $Name.in
111
        echo $Seq >> $Name.in
(-)annie4.1/src/Makefile (-10 / +10 lines)
Lines 11-26 Link Here
11
#           99/07/30 kmflynn
11
#           99/07/30 kmflynn
12
12
13
# pathnames
13
# pathnames
14
WrdA = /usr/opt/wrdapp
14
WrdA = /usr
15
Libr = $(WrdA)/libanne4.0
15
Libr = $(WrdA)
16
16
17
FFVrsn = $(FFUnix)          # Version FF[Unix, AIX]
17
FFVrsn = $(FFUnix)          # Version FF[Unix, AIX]
18
FFLAGS = $(OptM) $(FFVrsn)  # compile options [OptM or DbgF] + FFVrsn
18
FFLAGS = $(OptM) $(FFVrsn)  # compile options [OptM or DbgF] + FFVrsn
19
FC     = f77                # Compiler name
19
FC     = g77                # Compiler name
20
LGks   = $(GliGks_S)        # Graph lib [Gli, X, Prior]Gks_[S, D]
20
LGks   = $(GliGks_D)        # Graph lib [Gli, X, Prior]Gks_[S, D]
21
LdA    = $(LdSunA)          # Ld[Unix, Sun]A
21
LdA    = $(LdUnixA)          # Ld[Unix, Sun]A
22
LdB    = $(LdSunB)          # Ld[Unix, Sun]B
22
LdB    = $(LdUnixB)          # Ld[Unix, Sun]B
23
LdC    = $(LdSunC)          # Ld[Unix, Sun]C
23
LdC    = $(LdUnixC)          # Ld[Unix, Sun]C
24
Strip  = $(Strip_Y)         # strip [Strip_Y or Strip_N]
24
Strip  = $(Strip_Y)         # strip [Strip_Y or Strip_N]
25
25
26
#*******************************************************************
26
#*******************************************************************
Lines 85-92 Link Here
85
#*******************************************************************
85
#*******************************************************************
86
86
87
# library directories
87
# library directories
88
libwdm  = $(Libr)/lib_data
88
libwdm  = $(Libr)/share/libanne
89
libmsg  = $(Libr)/msg
89
libmsg  = $(Libr)/share/libanne/msg
90
LibBin  = $(Libr)/bin
90
LibBin  = $(Libr)/bin
91
LibDir  = $(Libr)/lib
91
LibDir  = $(Libr)/lib
92
92
Lines 118-124 Link Here
118
msgMake = $(binData)/$(msgFile)
118
msgMake = $(binData)/$(msgFile)
119
119
120
# Rules
120
# Rules
121
all:  first $(binMake) $(binRX) $(msgMake) $(wdmTest) install
121
all:  first $(binMake) $(binRX) $(msgMake) $(wdmTest) 
122
	@echo "***"
122
	@echo "***"
123
	@echo "*** Done making all for $(program), files are now up-to-date."
123
	@echo "*** Done making all for $(program), files are now up-to-date."
124
	@echo "***"
124
	@echo "***"
(-)annie4.1/src/fanmes.inc (+1 lines)
Lines 16-18 Link Here
16
      WNDNAM= 'ANNIE 4.1'
16
      WNDNAM= 'ANNIE 4.1'
17
      APPNAM= 'ANNIE   '
17
      APPNAM= 'ANNIE   '
18
      FNAME = '/usr/opt/wrdapp/annie4.1/bin_data/anmess.wdm'
18
      FNAME = '/usr/opt/wrdapp/annie4.1/bin_data/anmess.wdm'
19
      FNAME = '/usr/share/libanne/anmess.wdm'

Return to bug 127493