From owner-freebsd-ports@FreeBSD.ORG Mon Apr 5 05:03:34 2010 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 96C571065673 for ; Mon, 5 Apr 2010 05:03:34 +0000 (UTC) (envelope-from toni.tiveron@linux.it) Received: from mx.consultarea.net (mx.consultarea.net [92.245.188.15]) by mx1.freebsd.org (Postfix) with ESMTP id E9BD48FC17 for ; Mon, 5 Apr 2010 05:03:33 +0000 (UTC) Received: (qmail 64101 invoked by uid 0); 5 Apr 2010 04:36:51 -0000 Received: from unknown (HELO dafne.homeunix.org) (toni%tiveron.net@87.2.52.33) by mx.consultarea.net with ESMTPA; 5 Apr 2010 04:36:51 -0000 X-Bogosity: No, tests=bogofilter Received: from RAISTLIN (RAISTLIN.home.tiveron.net [172.16.72.120]) by dafne.homeunix.org (8.14.4/8.14.3) with SMTP id o354alwb005197; Mon, 5 Apr 2010 06:36:50 +0200 (CEST) (envelope-from toni.tiveron@linux.it) Message-ID: <499F9D70EEDE4E0ABE5D734D7820CA5C@RAISTLIN> From: "Toni Tiveron" To: Date: Mon, 5 Apr 2010 06:36:29 +0200 MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=original Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.5843 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.5579 X-Mailman-Approved-At: Mon, 05 Apr 2010 11:20:21 +0000 Cc: ports@FreeBSD.org Subject: FreeBSD Port: qsheff-II-2.1.r3_4 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Apr 2010 05:03:34 -0000 Hi there I just realized there is a small error in the Makefile for this port. the default path for the sock file for clamav is /var/run/clamav/clamd.sock furthermore the port does not inlcude the option for whom, like me, compiled qmail w/ the qmail_queue_pathc I've attached a small patch for those issues. Regards, Toni --- /usr/ports/mail/qsheff/Makefile 2009-08-22 02:27:54.000000000 +0200 +++ /home/toni/Makefile_qsheff_pr 2010-04-05 05:03:29.000000000 +0200 @@ -35,6 +35,7 @@ CONFIGURE_ARGS+= --with-qmaildir=${QMAIL_PREFIX} OPTIONS= CLAMAV "Integrate with Clam AntiVirus" on \ + QUEUPATCH "Enable qmail queue patch" off \ SPAMTAG "Enable Spam Tagging" off \ VIRUSTAG "Enable Virus Tagging" off \ DISABLELOCAL "Disable Filters For Local Users" off \ @@ -49,7 +50,11 @@ RUN_DEPENDS+= ${LOCALBASE}/bin/clamdscan:${PORTSDIR}/security/clamav BUILD_DEPENDS+= ${LOCALBASE}/bin/clamdscan:${PORTSDIR}/security/clamav CONFIGURE_ARGS+= --with-clamav -CONFIGURE_ARGS+= --with-clamd-socket=/var/run/clamav/clamd +CONFIGURE_ARGS+= --with-clamd-socket=/var/run/clamav/clamd.sock +.endif + +.if defined(WITH_QUEUPATCH) +CONFIGURE_ARGS+= --enable-qq-patch .endif .if defined(WITH_SPAMTAG)