30f9923cc4
PR pkg/21341. From "NEWS": Changes in 1.6.2 ================ * FIX: atalkd: Fixes for reading long configuration file lines. [Dan Wilga] * FIX: afpd: CNID id allocation in a multiuser environment. * FIX: papd: Fix PSSP support when PAM is enabled. * FIX: macusers: Can now cope with IP addresses as well as host names. * FIX: etc2ps.sh: Install correctly.
30 lines
663 B
Text
30 lines
663 B
Text
$NetBSD: patch-af,v 1.6 2003/04/28 04:07:46 fredb Exp $
|
|
|
|
--- etc/psf/etc2ps.sh.orig Sun Apr 27 15:00:44 2003
|
|
+++ etc/psf/etc2ps.sh Sun Apr 27 19:51:31 2003
|
|
@@ -9,15 +9,12 @@
|
|
# tag in the case.
|
|
#
|
|
|
|
-DVIPSPATH=/usr/local/tex/bin
|
|
DVIPS=/usr/local/tex/bin/dvips
|
|
DVIPSARGS="-f -q"
|
|
|
|
-TROFF2PS=/usr/local/psroff/troff2/troff2ps
|
|
+TROFF2PS="groff -Tps"
|
|
TROFF2PSARGS="-Z -O-.10"
|
|
|
|
-PATH=/usr/bin:$DVIPSPATH; export PATH
|
|
-
|
|
case $1 in
|
|
|
|
#
|
|
@@ -39,7 +36,7 @@
|
|
# troff2ps is from psroff by Chris Lewis.
|
|
#
|
|
tf*)
|
|
- if [ -x "$TROFF2PS" ]; then
|
|
+ if [ -x "/usr/bin/groff" ]; then
|
|
exec $TROFF2PS $TROFF2PSARGS
|
|
else
|
|
echo "$0: filter troff2ps uninstalled" 1>&2
|