Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 2 Jul 2008 09:20:07 GMT
From:      Boris Kovalenko <boris@tagnet.ru>
To:        freebsd-ports-bugs@FreeBSD.org
Subject:   Re: ports/125145: new version of mail/tpop3d available
Message-ID:  <200807020920.m629K7T8022753@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR ports/125145; it has been noted by GNATS.

From: Boris Kovalenko <boris@tagnet.ru>
To: bug-followup@FreeBSD.org, bartlomiej.syryjczyk@expro.pl
Cc:  
Subject: Re: ports/125145: new version of mail/tpop3d available
Date: Wed, 02 Jul 2008 14:58:39 +0600

 This is a multi-part message in MIME format.
 --------------020506040409040800040008
 Content-Type: text/plain; charset=KOI8-R; format=flowed
 Content-Transfer-Encoding: 7bit
 
 Hello!
 
 Submitter's patch is very simple. Right patch attached.
 
 
 Regards,
     Boris
 
 
 --------------020506040409040800040008
 Content-Type: text/plain;
  name="tpop3d.diff"
 Content-Transfer-Encoding: 7bit
 Content-Disposition: inline;
  filename="tpop3d.diff"
 
 ===> Generating patch
 ===> Viewing diff with more
 diff -ruN --exclude=CVS /usr/ports/mail/tpop3d.orig/Makefile /usr/ports/mail/tpop3d/Makefile
 --- /usr/ports/mail/tpop3d.orig/Makefile	2007-04-25 09:06:14.000000000 +0600
 +++ /usr/ports/mail/tpop3d/Makefile	2008-07-02 14:52:33.000000000 +0600
 @@ -6,10 +6,10 @@
  #
  
  PORTNAME=	tpop3d
 -PORTVERSION=	1.5.3
 -PORTREVISION=	6
 +PORTVERSION=	1.5.4
  CATEGORIES=	mail
 -MASTER_SITES=	http://www.ex-parrot.com/~chris/tpop3d/
 +MASTER_SITES=	${MASTER_SITE_SAVANNAH}
 +MASTER_SITE_SUBDIR=	tpop3d
  
  MAINTAINER=	boris@tagnet.ru
  COMMENT=	Virtual-domain capable POP3 server supporting MySQL, PgSQL etc auth
 @@ -28,6 +28,7 @@
  		PERLAUTH	"Use Perl authentication"			off \
  		PASSWDAUTH	"Use /etc/passwd authentication"		off \
  		FLATAUTH	"Use /etc/passwd-style flat file authentication"	off \
 +		GDBMAUTH	"Use authentication against GNU dbm files"	off \
  		MAILDIR		"Compile Maildir support"			on \
  		MBOXINDICES	"Save Mbox indices"				off \
  		DRAC		"Enable DRAC RFC for POP-before-SMTP relaying"	off \
 @@ -69,6 +70,11 @@
  CONFIGURE_ARGS+=	--enable-auth-flatfile
  .endif
  
 +.if defined(WITH_GDBMAUTH)
 +LIB_DEPENDS=		gdbm:${PORTSDIR}/databases/gdbm
 +CONFIGURE_ARGS+=	--enable-auth-gdbm
 +.endif
 +
  .if defined(WITH_PASSWDAUTH)
  CONFIGURE_ARGS+=	--enable-auth-passwd
  .endif
 diff -ruN --exclude=CVS /usr/ports/mail/tpop3d.orig/distinfo /usr/ports/mail/tpop3d/distinfo
 --- /usr/ports/mail/tpop3d.orig/distinfo	2006-01-22 17:50:52.000000000 +0500
 +++ /usr/ports/mail/tpop3d/distinfo	2008-07-02 14:32:33.000000000 +0600
 @@ -1,3 +1,3 @@
 -MD5 (tpop3d-1.5.3.tar.gz) = dd920c49f4e5879eb3caf7ea047622e9
 -SHA256 (tpop3d-1.5.3.tar.gz) = 48625d1cd65de3ff76eaca7f6bca08984bb84d3823ecfc3e4531db1a5a932bd8
 -SIZE (tpop3d-1.5.3.tar.gz) = 242294
 +MD5 (tpop3d-1.5.4.tar.gz) = 2d96aad121fa5e3ab4c3c1fec0d64ab0
 +SHA256 (tpop3d-1.5.4.tar.gz) = 5ce3650b6f48565d671f4fe8a62e6915d03dc2971bc5e5b2620d8a48e96f3482
 +SIZE (tpop3d-1.5.4.tar.gz) = 283888
 diff -ruN --exclude=CVS /usr/ports/mail/tpop3d.orig/files/patch-Makefile.in /usr/ports/mail/tpop3d/files/patch-Makefile.in
 --- /usr/ports/mail/tpop3d.orig/files/patch-Makefile.in	1970-01-01 05:00:00.000000000 +0500
 +++ /usr/ports/mail/tpop3d/files/patch-Makefile.in	2008-07-02 14:40:40.000000000 +0600
 @@ -0,0 +1,12 @@
 +--- Makefile.in.orig	2008-04-03 00:23:24.000000000 +0600
 ++++ Makefile.in	2008-07-02 14:40:28.000000000 +0600
 +@@ -133,8 +133,7 @@
 + AWK = @AWK@
 + CC = @CC@
 + CCDEPMODE = @CCDEPMODE@
 +-CFLAGS = @CFLAGS@ -Wall -g -O2 -DCONFIG_DIR='"@sysconfdir@"' # \
 +-	-Wstrict-prototypes
 ++CFLAGS = @CFLAGS@ -Wall -g -O2 -DCONFIG_DIR='"@sysconfdir@"'
 + CPP = @CPP@
 + CPPFLAGS = @CPPFLAGS@
 + CYGPATH_W = @CYGPATH_W@
 diff -ruN --exclude=CVS /usr/ports/mail/tpop3d.orig/files/patch-maildir.c /usr/ports/mail/tpop3d/files/patch-maildir.c
 --- /usr/ports/mail/tpop3d.orig/files/patch-maildir.c	2005-04-03 11:42:25.000000000 +0600
 +++ /usr/ports/mail/tpop3d/files/patch-maildir.c	1970-01-01 05:00:00.000000000 +0500
 @@ -1,11 +0,0 @@
 ---- maildir.c.orig	Tue Nov 25 01:23:20 2003
 -+++ maildir.c	Sun Apr  3 09:44:25 2005
 -@@ -205,7 +205,7 @@
 -     mailbox M, failM = NULL;
 -     struct timeval tv1, tv2;
 -     float f;
 --    int locked;
 -+    int locked = 0;
 -  
 -     alloc_struct(_mailbox, M);
 -     
 ===> Done
 
 --------------020506040409040800040008--



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200807020920.m629K7T8022753>