From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 24 00:40:02 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DF53F1065707 for ; Fri, 24 Aug 2012 00:40:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id AC46C8FC16; Fri, 24 Aug 2012 00:40:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q7O0e1S0099782; Fri, 24 Aug 2012 00:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7O0e1WE099781; Fri, 24 Aug 2012 00:40:01 GMT (envelope-from gnats) Resent-Date: Fri, 24 Aug 2012 00:40:01 GMT Resent-Message-Id: <201208240040.q7O0e1WE099781@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Cc: Zhang Huangbin Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jason Helfman Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F10691065675 for ; Fri, 24 Aug 2012 00:35:20 +0000 (UTC) (envelope-from jhelfman@experts-exchange.com) Received: from mail.dw.redsrci.com (mail.pub.dw.redsrci.com [72.29.183.251]) by mx1.freebsd.org (Postfix) with ESMTP id D5AEE8FC16 for ; Fri, 24 Aug 2012 00:35:20 +0000 (UTC) Received: from mail.dw.redsrci.com (localhost [127.0.0.1]) by mail.dw.redsrci.com (Postfix) with ESMTP id EB248714F02; Thu, 23 Aug 2012 17:35:19 -0700 (PDT) Received: from mail.dw.redsrci.com ([127.0.0.1]) by mail.dw.redsrci.com (mail.dw.redsrci.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 2Dl7T6dHG9m7; Thu, 23 Aug 2012 17:35:19 -0700 (PDT) Received: from experts-exchange.com (unknown [72.29.164.238]) by mail.dw.redsrci.com (Postfix) with SMTP id 9AC986FD2C1; Thu, 23 Aug 2012 17:35:19 -0700 (PDT) Received: (nullmailer pid 62595 invoked by uid 1001); Thu, 23 Aug 2012 21:15:13 -0000 Message-Id: <1345756513.096209.62593.nullmailer@experts-exchange.com> Date: Thu, 23 Aug 2012 14:15:13 -0700 From: Jason Helfman To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 X-GNATS-Notify: Zhang Huangbin Cc: chifeng@gmail.com, Zhang Huangbin Subject: ports/170947: [PATCH] mail/policyd2: update to 2.0.12 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Aug 2012 00:40:02 -0000 >Number: 170947 >Category: ports >Synopsis: [PATCH] mail/policyd2: update to 2.0.12 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Fri Aug 24 00:40:01 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Jason Helfman >Release: FreeBSD 8.3-RELEASE amd64 >Organization: >Environment: System: FreeBSD dormouse.experts-exchange.com 8.3-RELEASE FreeBSD 8.3-RELEASE #0: Mon Apr 9 21:23:18 UTC >Description: - Update to 2.0.12 Buildlogs: http://redports.org/buildarchive/20120820161734-22614/ Port maintainer (chifeng@gmail.com) is cc'd. Generated with FreeBSD Port Tools 0.99_6 (mode: update, diff: ports) >How-To-Repeat: >Fix: Index: Makefile =================================================================== --- Makefile (revision 302906) +++ Makefile (working copy) @@ -6,10 +6,9 @@ # PORTNAME= policyd2 -PORTVERSION= 2.0.11 -PORTREVISION= 1 +PORTVERSION= 2.0.12 CATEGORIES= mail -MASTER_SITES= http://devlabs.linuxassist.net/attachments/download/187/ +MASTER_SITES= http://devlabs.linuxassist.net/attachments/download/${DOWNLOAD_FOLDER}/ DISTNAME= cluebringer-${PORTVERSION} MAINTAINER= chifeng@gmail.com @@ -25,24 +24,23 @@ NO_BUILD= yes USE_RC_SUBR= policyd2 BINMODE= 0755 +DOWNLOAD_FOLDER= 222 WEBUIDIR= ${PREFIX}/www/policyd PORTDOCS= AUTHORS ChangeLog INSTALL TODO WISHLIST PORTDATA= * -OPTIONS= MYSQL "Use MySQL support" On \ - PostgreSQL "Use PostgreSQL support" Off \ - SQLite "Use SQLite support" Off +OPTIONS_DEFINE= MYSQL PGSQL SQLITE .include USE_PHP= pdo_mysql -.if defined(WITH_MYSQL) +.if ${PORT_OPTIONS:MMYSQL} RUN_DEPENDS+= p5-DBD-mysql>=0:${PORTSDIR}/databases/p5-DBD-mysql .endif -.if defined(WITH_SQLite) +.if ${PORT_OPTIONS:MSQLITE} RUN_DEPENDS+= p5-DBD-SQLite>=0:${PORTSDIR}/databases/p5-DBD-SQLite .endif -.if defined(WITH_PostgreSQL) +.if ${PORT_OPTIONS:MPGSQL} RUN_DEPENDS+= p5-DBD-Pg>=0:${PORTSDIR}/databases/p5-DBD-Pg .endif @@ -69,7 +67,7 @@ @cd ${WRKSRC} && ${COPYTREE_SHARE} database ${DATADIR} .endif -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @${INSTALL} -d ${DOCSDIR} @cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR} .endif >Release-Note: >Audit-Trail: >Unformatted: