aboutsummaryrefslogtreecommitdiff
path: root/print/xdvi/pkg-install
diff options
context:
space:
mode:
authorAntoine Brodin <antoine@FreeBSD.org>2014-08-20 06:30:29 +0000
committerAntoine Brodin <antoine@FreeBSD.org>2014-08-20 06:30:29 +0000
commit3e0a67c81ee27df3242442a704601e9e5a162bb2 (patch)
tree54700cfe839bee06134931408c57a05b69d1c684 /print/xdvi/pkg-install
parent0cc734c4abf48d7169e661d4fae5d1b0a80e8ca7 (diff)
Notes
Diffstat (limited to 'print/xdvi/pkg-install')
-rw-r--r--print/xdvi/pkg-install50
1 files changed, 0 insertions, 50 deletions
diff --git a/print/xdvi/pkg-install b/print/xdvi/pkg-install
deleted file mode 100644
index 921a48c38a42..000000000000
--- a/print/xdvi/pkg-install
+++ /dev/null
@@ -1,50 +0,0 @@
-#!/bin/sh
-
-prefix=%%PREFIX%%
-localbase=%%LOCALBASE%%
-
-if [ "$2" != "PRE-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 ${localbase}/share/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/bin/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 ${localbase}/share/texmf/fonts/pk; chmod 1777 ${localbase}/share/texmf/fonts/pk
-
-exit 0
-
-