mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-30 21:49:25 +00:00
ec8cc749ab
This is master port of hlatexp-pkfonts<dpi>.
15 lines
275 B
Bash
15 lines
275 B
Bash
#!/bin/sh
|
|
#
|
|
# hLaTeXp running script
|
|
#
|
|
# Modified by CHOI Junho <cjh@FreeBSD.org>
|
|
# Original from http://knot.kaist.ac.kr/htex/install-unix.htm
|
|
#
|
|
# if hTeXp is available, run htexpini
|
|
#
|
|
if test -x %%PATH_VIRTEX%%; then
|
|
virtex "&hlatex" $1;
|
|
else
|
|
htexpini "&hlatex" $1;
|
|
fi
|