diff options
author | tv <tv@pkgsrc.org> | 2001-03-09 19:06:18 +0000 |
---|---|---|
committer | tv <tv@pkgsrc.org> | 2001-03-09 19:06:18 +0000 |
commit | ad61d36d42ff857caf85fd07ec452e03bb40ba41 (patch) | |
tree | 8ac1dbf0432dd27e07bd20f8a90f177ffc453c1b | |
parent | f4ed546ffd87a79227faa704bebc375db4df82f4 (diff) | |
download | pkgsrc-ad61d36d42ff857caf85fd07ec452e03bb40ba41.tar.gz |
Find archivers in $PATH, make areafix output more sane, and move areafix
modifiable config files into VARDIR.
-rw-r--r-- | comms/fidogate/files/patch-sum | 6 | ||||
-rw-r--r-- | comms/fidogate/patches/patch-ai | 14 | ||||
-rw-r--r-- | comms/fidogate/patches/patch-aj | 13 | ||||
-rw-r--r-- | comms/fidogate/patches/patch-ak | 22 |
4 files changed, 40 insertions, 15 deletions
diff --git a/comms/fidogate/files/patch-sum b/comms/fidogate/files/patch-sum index 4733cf9366d..c2363bc36d2 100644 --- a/comms/fidogate/files/patch-sum +++ b/comms/fidogate/files/patch-sum @@ -1,4 +1,4 @@ -$NetBSD: patch-sum,v 1.5 2001/02/22 15:28:57 tv Exp $ +$NetBSD: patch-sum,v 1.6 2001/03/09 19:06:18 tv Exp $ MD5 (patch-aa) = 9617cf7c1bb0f8817445043ea8d5bd36 MD5 (patch-ab) = cc96a047e67e88da5ff683515b77fc94 @@ -8,4 +8,6 @@ MD5 (patch-ae) = 84726b67dc58cbd2b1005c468f3fab48 MD5 (patch-af) = 29b3e4bed0ff4102c671648eae15d2fd MD5 (patch-ag) = 49cfced275abdaa905e0e86dcfaa532e MD5 (patch-ah) = 16a49bfc5b559da88ddb7fd18143fe7d -MD5 (patch-ai) = 27a5e1350a8584d67c4f25d3f4ebeb27 +MD5 (patch-ai) = 46e49fbac04f9785331b7d91b0e69272 +MD5 (patch-aj) = ed7d369bb59af31184db64fe751bced2 +MD5 (patch-ak) = 1e181fd993b4dc7f70518efcbf43d461 diff --git a/comms/fidogate/patches/patch-ai b/comms/fidogate/patches/patch-ai index bc210baec16..7c5762a7ec6 100644 --- a/comms/fidogate/patches/patch-ai +++ b/comms/fidogate/patches/patch-ai @@ -1,4 +1,4 @@ -$NetBSD: patch-ai,v 1.4 2001/02/22 15:28:57 tv Exp $ +$NetBSD: patch-ai,v 1.5 2001/03/09 19:06:19 tv Exp $ --- fidogate.conf.orig Thu Feb 22 09:58:02 2001 +++ fidogate.conf Thu Feb 22 09:58:13 2001 @@ -55,16 +55,4 @@ $NetBSD: patch-ai,v 1.4 2001/02/22 15:28:57 tv Exp $ # facility, level when using syslog support (LOGFILE = "syslog") # NOT YET SUPPORTED by FIDOGATE C programs (used by Perl scripts) -@@ -57,10 +57,10 @@ - - - # AREAS.BBS EchoMail distribution list --AreasBBS %V/areas.bbs -+AreasBBS %C/areas.bbs - - # FAREAS.BBS file distribution list --FAreasBBS %V/fareas.bbs -+FAreasBBS %C/fareas.bbs - - diff --git a/comms/fidogate/patches/patch-aj b/comms/fidogate/patches/patch-aj new file mode 100644 index 00000000000..70afde5c829 --- /dev/null +++ b/comms/fidogate/patches/patch-aj @@ -0,0 +1,13 @@ +$NetBSD: patch-aj,v 1.5 2001/03/09 19:06:19 tv Exp $ + +--- src/toss/rununpack.pl.orig Thu Feb 22 12:29:19 2001 ++++ src/toss/rununpack.pl Thu Feb 22 12:29:48 2001 +@@ -31,7 +31,7 @@ + my %arc_x; + # Archiver programs configuration + # %X is replaced with settings from toss.conf +-@arc_bindirs = ( "/bin", "/usr/bin", "/usr/local/bin", "%N"); ++@arc_bindirs = split(/:/, $ENV{'PATH'}); + # %a is replaced with archive file name + $arc_l{"ARJ"} = "unarj l %a"; + $arc_x{"ARJ"} = "unarj e %a"; diff --git a/comms/fidogate/patches/patch-ak b/comms/fidogate/patches/patch-ak new file mode 100644 index 00000000000..60bee16d2a9 --- /dev/null +++ b/comms/fidogate/patches/patch-ak @@ -0,0 +1,22 @@ +$NetBSD: patch-ak,v 1.4 2001/03/09 19:06:20 tv Exp $ + +--- src/areafix/areafix.c.orig Thu Feb 22 13:47:33 2001 ++++ src/areafix/areafix.c Thu Feb 22 13:47:46 2001 +@@ -770,7 +770,7 @@ + mark = (lon_search(l, node) ? "*" : " "); + + if(p->desc) +- areafix_printf("%s Z%-3d %-39s: %s", ++ areafix_printf("%s Z%-3d %-20s: %s", + mark, p->zone, p->area, p->desc); + else + areafix_printf("%s Z%-3d %s", +@@ -836,7 +836,7 @@ + + mark = (lon_search(l, node) ? "*" : " "); + if(p->desc) +- areafix_printf("%s %-39s: %s", mark, p->area, p->desc); ++ areafix_printf("%s %-20s: %s", mark, p->area, p->desc); + else + areafix_printf("%s %s", mark, p->area); + } |