From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 26 11:40:11 2010 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 97924106564A for ; Tue, 26 Oct 2010 11:40:11 +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 6AEAF8FC14 for ; Tue, 26 Oct 2010 11:40:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9QBeBn7056777 for ; Tue, 26 Oct 2010 11:40:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9QBeBMq056776; Tue, 26 Oct 2010 11:40:11 GMT (envelope-from gnats) Date: Tue, 26 Oct 2010 11:40:11 GMT Message-Id: <201010261140.o9QBeBMq056776@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Guido Falsi Cc: Subject: Re: ports/151473: [maintainer-update] www/squidguard: fix ldap support X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Guido Falsi List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2010 11:40:11 -0000 The following reply was made to PR ports/151473; it has been noted by GNATS. From: Guido Falsi To: bug-followup@FreeBSD.org, mad@madpilot.net Cc: Subject: Re: ports/151473: [maintainer-update] www/squidguard: fix ldap support Date: Tue, 26 Oct 2010 13:31:42 +0200 --jRHKVT23PllUwdXP Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Fixed patch. Previous one was plainly wrong. Sorry! -- Guido Falsi --jRHKVT23PllUwdXP Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="sg.diff" diff -ruN squidguard.old/Makefile squidguard/Makefile --- squidguard.old/Makefile 2010-08-13 16:11:05.000000000 +0200 +++ squidguard/Makefile 2010-10-26 13:05:47.879973000 +0200 @@ -7,7 +7,7 @@ PORTNAME= squidGuard PORTVERSION= 1.4 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= www MASTER_SITES= http://www.squidguard.org/Downloads/ @@ -25,7 +25,7 @@ --with-sg-logdir=${LOGDIR} \ --exec-prefix=${PREFIX} -CONFIGURE_ENV= CFLAGS="${CFLAGS} -I${PREFIX}/include" +CONFIGURE_ENV= CFLAGS="${CFLAGS} -I${PREFIX}/include" LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib" CFGINPUT= ${.CURDIR}/files/sgcfg.in @@ -156,7 +156,7 @@ ${FIND} ${DATADIR} -type f -name *.db -exec ${CHMOD} 660 {} \; ; \ ${ECHO_MSG} " -> Blacklist databases installed in: ${DATADIR}" .else - ${ECHO_MSG} "===> Existing configuration file found - blacklist databases not created" + @${ECHO_MSG} "===> Existing configuration file found - blacklist databases not created" .endif post-install: --jRHKVT23PllUwdXP--