From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 27 11:10:28 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org 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 CC6AA16A401 for ; Tue, 27 Jun 2006 11:10:28 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 800D643D62 for ; Tue, 27 Jun 2006 11:10:28 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k5RBAS2c059845 for ; Tue, 27 Jun 2006 11:10:28 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k5RBASGE059844; Tue, 27 Jun 2006 11:10:28 GMT (envelope-from gnats) Date: Tue, 27 Jun 2006 11:10:28 GMT Message-Id: <200606271110.k5RBASGE059844@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Boris Kovalenko Cc: Subject: Re: ports/99537: [MAINTAINER UPDATE] mail/tpop3d: [SUMMARIZE CHANGES] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 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: Tue, 27 Jun 2006 11:10:28 -0000 The following reply was made to PR ports/99537; it has been noted by GNATS. From: Boris Kovalenko To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: Re: ports/99537: [MAINTAINER UPDATE] mail/tpop3d: [SUMMARIZE CHANGES] Date: Tue, 27 Jun 2006 17:08:12 +0600 This is a multi-part message in MIME format. --------------040609060905030506040903 Content-Type: text/plain; charset=KOI8-R; format=flowed Content-Transfer-Encoding: 7bit Hello! Some more cosmetic fixes. With respect, Boris --------------040609060905030506040903 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 Thu May 11 08:57:20 2006 +++ /usr/ports/mail/tpop3d.new/Makefile Tue Jun 27 17:03:01 2006 @@ -7,7 +7,7 @@ PORTNAME= tpop3d PORTVERSION= 1.5.3 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= mail MASTER_SITES= http://www.ex-parrot.com/~chris/tpop3d/ @@ -35,10 +35,9 @@ # 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 +BROKEN= MySQL and PgSQL authentication can not be build together .endif USE_MYSQL= yes -DEFAULT_MYSQL_VER= 41 CONFIGURE_ARGS+= --enable-auth-mysql \ --with-mysql-lib-dir=${LOCALBASE}/lib/mysql \ --with-mysql-include-dir=${LOCALBASE}/include/mysql @@ -53,7 +52,7 @@ .endif .if defined(WITH_LDAP) && !defined(WITHOUT_LDAP) -LIB_DEPENDS+= ldap-2.2:${PORTSDIR}/net/openldap22-client +USE_OPENLDAP= yes CONFIGURE_ARGS+= --enable-auth-ldap --with-openldap-root=${LOCALBASE} .endif 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 Tue Feb 21 01:47:16 2006 +++ /usr/ports/mail/tpop3d.new/files/tpop3d.sh.in Tue Jun 27 16:43:01 2006 @@ -2,7 +2,7 @@ # # PROVIDE: tpop3d -# BEFORE: LOGIN +# REQUIRE: LOGIN # # Add the following line to /etc/rc.conf to enable tpop3d: @@ -27,14 +27,14 @@ # set defaults -tpop3d_enable=${tpop3d_enable:-"NO"} -tpop3d_flags=${tpop3d_flags:-""} -load_rc_config $name command=%%PREFIX%%/sbin/tpop3d required_files=%%PREFIX%%/etc/tpop3d.conf pidfile=/var/run/tpop3d.pid -tpop3d_flags="${tpop3d_flags} -f ${required_files} -p ${pidfile}" +load_rc_config $name + +: ${tpop3d_enable="NO"} +: ${tpop3d_flags="-f ${required_files} -p ${pidfile}"} run_rc_command "$1" ===> Done --------------040609060905030506040903--