summaryrefslogblamecommitdiff
path: root/japanese/ptex-common/pkg-req
blob: a9a628f3c815f354e4501667a193b2fb9bf4dd45 (plain) (tree)
1
         































                                                                                                                   

        
#!/bin/sh

if [ $2 != INSTALL ]; then exit 0; fi

BINDIR=${PKG_PREFIX}/bin
for f in ${BINDIR}/MakeTeXMF ${BINDIR}/MakeTeXPK ${BINDIR}/MakeTeXTFM ${PKG_PREFIX}/share/texmf/web2c/texmf.cnf; do
  if [ -f $f ]; then files_exist="${files_exist} $f"; fi
done

if [ -z "${files_exist}" ]; then exit 0; fi

echo '************************************************************************'
echo
if [ "x$3" = "xBATCH" ]; then
  echo 'Following files will be renamed to *.old:'
 else
  echo 'Files listed below already exist on this system:'
fi
echo
for f in ${files_exist}; do echo $f; done
echo
if [ "x$3" != "xBATCH" ]; then
  echo 'If you proceed, these files will be renamed to *.old and new files'
  echo 'will be installed.'
  read  -p 'Would you like to proceed? (y/N)> ' ans
  case x$ans in
    xy*|xY*) for f in ${files_exist} ;do mv -f $f ${f}.old; done; exit 0
  esac

  echo 'Aborting the installation.'
  exit 1
 else
  for f in ${files_exist}; do mv -f $f ${f}.old; done
  exit 0
fi