Changeset 6421 for trunk/gsdl3


Ignore:
Timestamp:
2004-01-09T18:04:51+13:00 (20 years ago)
Author:
kjdon
Message:

fixed a bug, added a message

Location:
trunk/gsdl3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl3/configure.in

    r5951 r6421  
    159159      Makefile $srclist)
    160160
     161echo "-------------------------------------"
     162echo "Greenstone 3 successfully configured."
     163echo ""
     164echo "Continue your installation with:"
     165echo "  make install"
  • trunk/gsdl3/packages/configure

    r5820 r6421  
    101101
    102102# configure the wvWare Word document converter
    103 echo ""
    104 echo "Configuring wvWare"
    105 echo ""
    106103
    107 cd "$PACKAGES/wv"
    108 gzip -dc wv-0.7.1-gs.tar.gz | tar -xf -
    109 cd wv-gs
    110 # datadir is for default location of wvHtml.xml config file
    111 ./configure $CACHE_FILE --prefix=$PACKAGES/wv --bindir="$bindir" --datadir="$prefix/etc/packages" $HOSTTARGETFLAGS
     104if test -e "$PACKAGES/wv"; then
     105  echo ""
     106  echo "Configuring wvWare"
     107  echo ""
     108
     109  cd "$PACKAGES/wv"
     110  gzip -dc wv-0.7.1-gs.tar.gz | tar -xf -
     111  cd wv-gs
     112  # datadir is for default location of wvHtml.xml config file
     113  ./configure $CACHE_FILE --prefix=$PACKAGES/wv --bindir="$bindir" --datadir="$prefix/etc/packages" $HOSTTARGETFLAGS
     114fi
    112115
    113116# configure the pdftohtml converter
    114 echo ""
    115 echo "Configuring pdftohtml"
    116 echo ""
     117if test -e "$PACKAGES/pdftohtml"; then
     118  echo ""
     119  echo "Configuring pdftohtml"
     120  echo ""
    117121
    118 cd "$PACKAGES/pdftohtml"
    119 gzip -dc pdftohtml_0_34.tar.gz | tar -xf -
    120 cd pdftohtml_0_34
    121 ./configure $CACHE_FILE --prefix="$prefix" --bindir="$bindir" $HOSTTARGETFLAGS
     122  cd "$PACKAGES/pdftohtml"
     123  gzip -dc pdftohtml_0_34.tar.gz | tar -xf -
     124  cd pdftohtml_0_34
     125  ./configure $CACHE_FILE --prefix="$prefix" --bindir="$bindir" $HOSTTARGETFLAGS
     126fi
    122127
    123128# rtftohtml converter
    124 echo ""
    125 echo "Configuring rtftohtml"
    126 echo ""
     129if test -e "$PACKAGES/rtftohtml"; then
     130  echo ""
     131  echo "Configuring rtftohtml"http://kanuka.cs.waikato.ac.nz:8070/gsdl3
     132  echo ""
    127133
    128 cd "$PACKAGES/rtftohtml"
    129 gzip -dc rtftohtml-gs.tar.gz | tar -xf -
    130 cd rtftohtml_src
    131 ./configure $CACHE_FILE --prefix="$prefix" --bindir="$bindir" $HOSTTARGETFLAGS
    132 
     134  cd "$PACKAGES/rtftohtml"
     135  gzip -dc rtftohtml-gs.tar.gz | tar -xf -
     136  cd rtftohtml_src
     137  ./configure $CACHE_FILE --prefix="$prefix" --bindir="$bindir" $HOSTTARGETFLAGS
     138fi
    133139
    134140# configure wget
    135 echo ""
    136 echo "Configuring wget"
    137 echo ""
    138 cd "$PACKAGES/wget"
    139 gzip -dc wget.tar.gz | tar -xf -
    140 cd "$PACKAGES/wget/wget-1.5.3"
    141 ./configure $CACHE_FILE --prefix=$PACKAGES/wget --bindir="$bindir" $HOSTTARGETFLAGS
     141if test -e "$PACKAGES/wget"; then
     142  echo ""
     143  echo "Configuring wget"
     144  echo ""
     145  cd "$PACKAGES/wget"
     146  gzip -dc wget.tar.gz | tar -xf -
     147  cd "$PACKAGES/wget/wget-1.5.3"
     148  ./configure $CACHE_FILE --prefix=$PACKAGES/wget --bindir="$bindir" $HOSTTARGETFLAGS
     149fi
    142150
    143151# configure powerpoint converter
    144 echo ""
    145 echo "Configuring xlhtml (powerpoint & excel converter)"
    146 echo ""
    147 cd "$PACKAGES/xlhtml"
    148 gzip -dc xlhtml-0.4.9.0-gs.tar.gz | tar -xf -
    149 cd xlhtml-0.4.9.0
    150 ./configure $CACHE_FILE --prefix="$prefix" --bindir="$bindir" $HOSTTARGETFLAGS
    151 
     152if test -e "$PACKAGES/xlhtml"; then
     153  echo ""
     154  echo "Configuring xlhtml (powerpoint & excel converter)"
     155  echo ""
     156  cd "$PACKAGES/xlhtml"
     157  gzip -dc xlhtml-0.4.9.0-gs.tar.gz | tar -xf -
     158  cd xlhtml-0.4.9.0
     159  ./configure $CACHE_FILE --prefix="$prefix" --bindir="$bindir" $HOSTTARGETFLAGS
     160fi
Note: See TracChangeset for help on using the changeset viewer.