From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 12 05:50:08 2005 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 92FA216A4CE for ; Sat, 12 Mar 2005 05:50:08 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 47DCB43D46 for ; Sat, 12 Mar 2005 05:50:08 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j2C5o8Pc039864 for ; Sat, 12 Mar 2005 05:50:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j2C5o8Ps039862; Sat, 12 Mar 2005 05:50:08 GMT (envelope-from gnats) Date: Sat, 12 Mar 2005 05:50:08 GMT Message-Id: <200503120550.j2C5o8Ps039862@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Boris Kovalenko Subject: Re: ports/78723: [NON MAINTAINER UPDATE] mail/tpop3d: [SUMMARIZE CHANGES] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Boris Kovalenko List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 12 Mar 2005 05:50:08 -0000 The following reply was made to PR ports/78723; it has been noted by GNATS. From: Boris Kovalenko To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: Re: ports/78723: [NON MAINTAINER UPDATE] mail/tpop3d: [SUMMARIZE CHANGES] Date: Sat, 12 Mar 2005 10:48:49 +0500 This is a multi-part message in MIME format. --------------060107000801080402090906 Content-Type: text/plain; charset=KOI8-R; format=flowed Content-Transfer-Encoding: 7bit Hello! Found serious OPTIONS interaction errors. Fixed. With respect, Boris --------------060107000801080402090906 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/Makefile /usr/ports/mail/tpop3d.new/Makefile --- /usr/ports/mail/tpop3d/Makefile Sat Mar 12 10:12:40 2005 +++ /usr/ports/mail/tpop3d.new/Makefile Sat Mar 12 10:44:09 2005 @@ -14,6 +14,7 @@ MAINTAINER= chris@shagged.org COMMENT= Virtual-domain capable POP3 server supporting MySQL,PgSQL etc auth +IS_INTERACTIVE= yes USE_OPENSSL= yes USE_REINPLACE= yes GNU_CONFIGURE= yes @@ -30,8 +31,13 @@ FLATAUTH "Enable /etc/passwd-style authentication" off \ MAILDIR "Compile Maildir support" on +.include + # MySQL authentication .if defined(WITH_MYSQL) && !defined(WITHOUT_MYSQL) +.if defined(WITH_PGSQL) && !defined(WITHOUT_PGSQL) +IGNORE= MySQL and PgSQL authentication can not be build together +.endif USE_MYSQL= yes DEFAULT_MYSQL_VER= 41 CONFIGURE_ARGS+= --enable-auth-mysql \ @@ -93,4 +99,4 @@ cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR} .endif -.include +.include diff -ruN --exclude=CVS /usr/ports/mail/tpop3d/files/tpop3d.sh.in /usr/ports/mail/tpop3d.new/files/tpop3d.sh.in --- /usr/ports/mail/tpop3d/files/tpop3d.sh.in Sat Mar 12 03:08:12 2005 +++ /usr/ports/mail/tpop3d.new/files/tpop3d.sh.in Sat Mar 12 10:25:57 2005 @@ -33,7 +33,7 @@ load_rc_config $name command=%%PREFIX%%/sbin/tpop3d -required_files=%%PREFIX%%/tpop3d.conf +required_files=%%PREFIX%%/etc/tpop3d.conf pidfile=/var/run/tpop3d.pid tpop3d_flags="${tpop3d_flags} -f ${required_files} -p ${pidfile}" diff -ruN --exclude=CVS /usr/ports/mail/tpop3d/tpop3d.diff /usr/ports/mail/tpop3d.new/tpop3d.diff --- /usr/ports/mail/tpop3d/tpop3d.diff Thu Jan 1 05:00:00 1970 +++ /usr/ports/mail/tpop3d.new/tpop3d.diff Sat Mar 12 10:46:08 2005 @@ -0,0 +1 @@ +===> Generating patch ===> Done --------------060107000801080402090906--