Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 10 Dec 2004 23:31:16 +0200
From:      Andrey Slusar <anray@inet.ua>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/74932: [MANTAINER] news/fidogate-ds: update to new version
Message-ID:  <E1CcsM8-0002pK-Vm@santinel.home.ua>
Resent-Message-ID: <200412102300.iBAN0meR037000@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         74932
>Category:       ports
>Synopsis:       [MANTAINER] news/fidogate-ds: update to new version
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Fri Dec 10 23:00:48 GMT 2004
>Closed-Date:
>Last-Modified:
>Originator:     Andrey Slusar
>Release:        FreeBSD 5.3-STABLE i386
>Organization:
Santinel
>Environment:
System: FreeBSD santinel.home.ua 5.3-STABLE FreeBSD 5.3-STABLE #0: Tue Nov 30 13:06:39 EET 2004 anray@santinel.home.ua:/usr/obj/usr/src/sys/ANRAY i386
>Description:
	Directory 'files' removed.
	
	Update from 5.1.1 to 5.1.2
>How-To-Repeat:
	
>Fix:

--- fidogate-ds.diff begins here ---
diff -ruN /usr/ports/news/fidogate-ds/Makefile fidogate-ds/Makefile
--- /usr/ports/news/fidogate-ds/Makefile	Sun Aug 22 07:13:17 2004
+++ fidogate-ds/Makefile	Fri Dec 10 23:23:18 2004
@@ -5,8 +5,7 @@
 #
 
 PORTNAME=		fidogate
-PORTVERSION=		5.1.1
-PORTREVISION=		1
+PORTVERSION=		5.1.2
 CATEGORIES=		news mail
 MASTER_SITES=		${MASTER_SITE_SOURCEFORGE}
 MASTER_SITE_SUBDIR=	rusfidogate
@@ -75,8 +74,9 @@
 			--with-btbasedir=${BTBASEDIR}
 CONFIGURE_TARGET=	--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
 
-DOCS=		doc/README.ru doc/README doc/FAQ.ru ChangeLog Changes.ru \
-		doc/old/FAQ_fidogate doc/old/FIDOGATE_ftrack doc/old/README.snp \
+DOCS=		doc/README.ru doc/README doc/FAQ.ru doc/FIDOGATE+tracker.ru \
+		ChangeLog Changes.ru doc/old/FAQ_fidogate \
+		doc/old/FIDOGATE_ftrack doc/old/README.snp \
 		doc/old/fidogate.txt doc/old/fidogate.texi doc/old/msgid.doc
 
 .if !defined(NOPORTDOCS)
diff -ruN /usr/ports/news/fidogate-ds/distinfo fidogate-ds/distinfo
--- /usr/ports/news/fidogate-ds/distinfo	Fri Jul  9 22:53:41 2004
+++ fidogate-ds/distinfo	Fri Dec 10 23:19:59 2004
@@ -1,2 +1,2 @@
-MD5 (fidogate5.1.1ds.tar.bz2) = 19945a10a9bd543a642c300fe1501441
-SIZE (fidogate5.1.1ds.tar.bz2) = 700765
+MD5 (fidogate5.1.2ds.tar.bz2) = aa25623409294450d8877a50f4b22a03
+SIZE (fidogate5.1.2ds.tar.bz2) = 693556
diff -ruN /usr/ports/news/fidogate-ds/files/patch-log.c fidogate-ds/files/patch-log.c
--- /usr/ports/news/fidogate-ds/files/patch-log.c	Sat Aug 21 18:03:54 2004
+++ fidogate-ds/files/patch-log.c	Thu Jan  1 03:00:00 1970
@@ -1,12 +0,0 @@
---- src/common/log.c.old	Sat Aug 21 17:21:16 2004
-+++ src/common/log.c	Sat Aug 21 17:21:24 2004
-@@ -276,9 +276,4 @@
-     char *p;
-     
-     BUF_COPY(logprog, name);
--
--    if( (p = getenv("LOGFILE")) )
--       log_file(p);
--    if( (p = getenv("FIDOGATE_LOGFILE")) )
--       log_file(p);
- }
diff -ruN /usr/ports/news/fidogate-ds/files/patch-ngoper.c fidogate-ds/files/patch-ngoper.c
--- /usr/ports/news/fidogate-ds/files/patch-ngoper.c	Thu Jul 15 06:11:40 2004
+++ fidogate-ds/files/patch-ngoper.c	Thu Jan  1 03:00:00 1970
@@ -1,40 +0,0 @@
---- src/toss/ngoper.c.old	Wed Jul 14 16:13:34 2004
-+++ src/toss/ngoper.c	Sat Jul 10 17:34:20 2004
-@@ -20,7 +20,7 @@
-   int   c;
-   int   option_index;
-   int   remove;
--  char *cmd_ng, *cmd_rn, *cmd_rm;
-+  char *cmd_ng, *cmd_rn = NULL, *cmd_rm;
-   char *c_flag=NULL;
-   char *p;
-   char  buf[BUFSIZ];
-@@ -106,12 +106,6 @@
-       debug(8, "config: AutoCreateRenumberCmd %s", p);
-       cmd_rn = p;
-     }
--  else
--    {
--      printf("config: parameter `AutoCreateRenumberCmd' not defined!\n");
--      exit_free();
--      exit(1);
--    }
- 
-   /* AutoCreateRmgroupCmd */
-   if (NULL != (p = cf_get_string("AutoCreateRmgroupCmd", TRUE)))
-@@ -136,9 +130,12 @@
-       if (0 != run_system(buf))
- 	return 1;
- 
--      str_printf(buf, sizeof(buf), cmd_rn, argv[optind+1]);
--      if (0 != run_system(buf))
--	return 1;
-+      if (cmd_rn)
-+      {
-+        str_printf(buf, sizeof(buf), cmd_rn, argv[optind+1]);
-+        if (0 != run_system(buf))
-+	    return 1;
-+      }
-     }
-   else
-     {
diff -ruN /usr/ports/news/fidogate-ds/files/patch-send-fidogate.in fidogate-ds/files/patch-send-fidogate.in
--- /usr/ports/news/fidogate-ds/files/patch-send-fidogate.in	Thu Jul 15 06:11:40 2004
+++ fidogate-ds/files/patch-send-fidogate.in	Thu Jan  1 03:00:00 1970
@@ -1,10 +0,0 @@
---- src/gate/send-fidogate.in.old	Wed Jul 14 16:10:57 2004
-+++ src/gate/send-fidogate.in	Wed Jul 14 16:11:10 2004
-@@ -10,7 +10,6 @@
- export FIDOGATE_LOGFILE
- 
- eval `<NEWSBINDIR>/innconfval -s`
--eval `<LIBEXECDIR>/confval`
- 
- RFC2FTN=<SEND_RFC2FTN>
- PROGNAME=`basename $0`
diff -ruN /usr/ports/news/fidogate-ds/pkg-plist fidogate-ds/pkg-plist
--- /usr/ports/news/fidogate-ds/pkg-plist	Mon Jul 12 21:53:44 2004
+++ fidogate-ds/pkg-plist	Fri Dec 10 23:24:25 2004
@@ -56,6 +56,7 @@
 etc/fido/gate/routing.sample
 etc/fido/gate/spyes.sample
 etc/fido/gate/uplinks.sample
+libexec/fidogate/charsetc
 libexec/fidogate/charset.bin
 libexec/fidogate/confval
 libexec/fidogate/ftn2ftn
@@ -79,6 +80,7 @@
 var/fidogate/fareas.bbs.sample
 %%PORTDOCS%%%%DOCSDIR%%/README.ru
 %%PORTDOCS%%%%DOCSDIR%%/FAQ.ru
+%%PORTDOCS%%%%DOCSDIR%%/FIDOGATE+tracker.ru
 %%PORTDOCS%%%%DOCSDIR%%/README
 %%PORTDOCS%%%%DOCSDIR%%/Changes.ru
 %%PORTDOCS%%%%DOCSDIR%%/ChangeLog
--- fidogate-ds.diff ends here ---


>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?E1CcsM8-0002pK-Vm>