diff options
author | fredb <fredb> | 2003-04-28 04:07:45 +0000 |
---|---|---|
committer | fredb <fredb> | 2003-04-28 04:07:45 +0000 |
commit | 2478e2d864a83566189e24534d543c218aee547e (patch) | |
tree | fbb77fd6de446fe041a38fad27bbf11d3f66991f /net/netatalk/patches | |
parent | fada75b72a98612b06ead67a904c3caf8bff4d26 (diff) | |
download | pkgsrc-2478e2d864a83566189e24534d543c218aee547e.tar.gz |
Update to netatalk-1.6.2, uses patches contributed by Toru TAKAMIZU in
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.
Diffstat (limited to 'net/netatalk/patches')
-rw-r--r-- | net/netatalk/patches/patch-af | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/net/netatalk/patches/patch-af b/net/netatalk/patches/patch-af new file mode 100644 index 00000000000..74630a0402f --- /dev/null +++ b/net/netatalk/patches/patch-af @@ -0,0 +1,30 @@ +$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 |