From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 30 10:20:05 2009 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 04E56106566C for ; Fri, 30 Oct 2009 10:20:05 +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 CD49F8FC1A for ; Fri, 30 Oct 2009 10:20:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n9UAK4cV016140 for ; Fri, 30 Oct 2009 10:20:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n9UAK4ox016134; Fri, 30 Oct 2009 10:20:04 GMT (envelope-from gnats) Resent-Date: Fri, 30 Oct 2009 10:20:04 GMT Resent-Message-Id: <200910301020.n9UAK4ox016134@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Frank Wall Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D4BC31065670 for ; Fri, 30 Oct 2009 10:19:20 +0000 (UTC) (envelope-from fw@inotronic.de) Received: from mail.inotronic.de (mail.inotronic.de [77.73.248.111]) by mx1.freebsd.org (Postfix) with ESMTP id 41CB98FC14 for ; Fri, 30 Oct 2009 10:19:19 +0000 (UTC) Received: from localhost (mail [77.73.248.111]) by mail.inotronic.de (8.14.3/8.14.3) with ESMTP id n9UAJIbi059054; Fri, 30 Oct 2009 11:19:18 +0100 (CET) (envelope-from fw@inotronic.de) Received: from boron.inotronic.de (boron.inotronic-intern.de [10.1.2.10]) by mail.inotronic.de (8.14.3/8.14.3) with ESMTP id n9UAJBpF059041 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 30 Oct 2009 11:19:12 +0100 (CET) (envelope-from fw@inotronic.de) Received: from boron.inotronic-intern.de (fw@localhost [127.0.0.1]) by boron.inotronic.de (8.14.3/8.14.3) with ESMTP id n9UAJBSe041020; Fri, 30 Oct 2009 11:19:11 +0100 (CET) (envelope-from fw@boron.inotronic-intern.de) Received: (from fw@localhost) by boron.inotronic-intern.de (8.14.3/8.14.3/Submit) id n9UAJBaB041019; Fri, 30 Oct 2009 11:19:11 +0100 (CET) (envelope-from fw) Message-Id: <200910301019.n9UAJBaB041019@boron.inotronic-intern.de> Date: Fri, 30 Oct 2009 11:19:11 +0100 (CET) From: Frank Wall To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: chifeng@gmail.com Subject: ports/140102: [PATCH] mail/sqlgrey: fix build problem (dependency error) 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, 30 Oct 2009 10:20:05 -0000 >Number: 140102 >Category: ports >Synopsis: [PATCH] mail/sqlgrey: fix build problem (dependency error) >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Oct 30 10:20:04 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Frank Wall >Release: FreeBSD 7.1-RELEASE-p4 amd64 >Organization: >Environment: System: FreeBSD 7.1-RELEASE-p4 FreeBSD 7.1-RELEASE-p4 #0: Sun Mar 22 09:43:46 UTC 2009 >Description: The latest update of devel/p5-Date-Calc (PR 139829) leads to build problems. The dependency devel/p5-Date-Calc moved it's files to a different location. A small change to the dependency list fixes the build problem. Port maintainer (chifeng@gmail.com) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: 1. cd /usr/ports/mail/sqlgrey 2. make config 3. activate option "STATS" 4. make install 5. build fails even if devel/p5-Date-Calc is installed: ===> sqlgrey-1.7.6 depends on file: /usr/local/lib/perl5/site_perl/5.8.9/mach/Date/Calc.pm - not found >Fix: --- sqlgrey-1.7.6.patch begins here --- diff -ruN --exclude=CVS /usr/ports/mail/sqlgrey/Makefile /tmp/sqlgrey/Makefile --- /usr/ports/mail/sqlgrey/Makefile 2009-08-22 02:27:56.000000000 +0200 +++ /tmp/sqlgrey/Makefile 2009-10-30 11:05:00.000000000 +0100 @@ -61,7 +61,7 @@ .endif .if defined(WITH_STATS) -RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/Date/Calc.pm:${PORTSDIR}/devel/p5-Date-Calc +RUN_DEPENDS+= ${SITE_PERL}/Date/Calc.pm:${PORTSDIR}/devel/p5-Date-Calc .endif --- sqlgrey-1.7.6.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: