summaryrefslogtreecommitdiff
path: root/print/xdvi/pkg-install
blob: 0f2935bad65dccbb309c31db2ac9e004037d1aa2 (plain) (blame)
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

prefix=/usr/local

if [ "$2" = "POST-INSTALL" ]; then
  exit 0
fi

if [ -f $prefix/bin/MakeTeXPK ]; then
  echo "**WARNING** MakeTeXPK already exists in $prefix/bin"
  echo "**WARNING** This file will be replaced during install."
  echo
  echo -n "do you want to continue ? [y] "
  read answ; if [ "$answ" = "" ]; then answ=y; fi
  case $answ in
    y*|Y*) break;;
    *) exit 1;;
  esac
fi

cat << END

This package has been compiled with some defaults:
1 fonts will be created in $prefix/lib/texmf/fonts/pk and this
  directory will be made world writable

2 300 dpi fonts will be created with MODE=imagen
  200 dpi fonts will be created with MODE=FAX
  360 dpi fonts will be created with MODE=nextII
  400 dpi fonts will be created with MODE=nexthi
   72 dpi fonts will be created with MODE=nextscreen

If you are not satisfied with 1, you need to recompile xdvi
If you are not satisfied with 2, you will need to edit $prefix/MakeTeXPK

END

echo -n "do you want to install the package ? [y] "
read answ; if [ "$answ" = "" ]; then answ=y; fi
case $answ in
  y*|Y*) break;;
  *) exit 1;;
esac

mkdir -p $prefix/lib/texmf/fonts/pk; chmod 1777 $prefix/lib/texmf/fonts/pk

exit 0