From fw@inotronic.de  Fri Oct 30 10:19:20 2009
Return-Path: <fw@inotronic.de>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id D4BC31065670
	for <FreeBSD-gnats-submit@freebsd.org>; 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 <FreeBSD-gnats-submit@freebsd.org>; 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 <fw@moov.de>
To: FreeBSD-gnats-submit@freebsd.org
Cc: chifeng@gmail.com
Subject: [PATCH] mail/sqlgrey: fix build problem (dependency error)
X-Send-Pr-Version: 3.113
X-GNATS-Notify: chifeng@gmail.com

>Number:         140102
>Category:       ports
>Synopsis:       [PATCH] mail/sqlgrey: fix build problem (dependency error)
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    freebsd-ports-bugs
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Fri Oct 30 10:20:04 UTC 2009
>Closed-Date:    Mon Nov 09 08:15:29 UTC 2009
>Last-Modified:  Mon Nov  9 08:20:04 UTC 2009
>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:
State-Changed-From-To: open->feedback 
State-Changed-By: edwin 
State-Changed-When: Fri Oct 30 10:20:43 UTC 2009 
State-Changed-Why:  
Awaiting maintainers feedback (via the GNATS Auto Assign Tool) 

http://www.freebsd.org/cgi/query-pr.cgi?pr=140102 

From: Edwin Groothuis <edwin@FreeBSD.org>
To: chifeng@gmail.com
Cc: bug-followup@FreeBSD.org
Subject: Re: ports/140102: [PATCH] mail/sqlgrey: fix build problem (dependency error)
Date: Fri, 30 Oct 2009 10:20:41 UT

 Maintainer of mail/sqlgrey,
 
 Please note that PR ports/140102 has just been submitted.
 
 If it contains a patch for an upgrade, an enhancement or a bug fix
 you agree on, reply to this email stating that you approve the patch
 and a committer will take care of it.
 
 The full text of the PR can be found at:
     http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/140102
 
 -- 
 Edwin Groothuis via the GNATS Auto Assign Tool
 edwin@FreeBSD.org

From: chifeng <chifeng@gmail.com>
To: bug-followup@freebsd.org
Cc:  
Subject: Re: ports/140102: [PATCH] mail/sqlgrey: fix build problem (dependency 
	error)
Date: Tue, 3 Nov 2009 10:18:05 +0800

 --00504502bb37be608f04776e1a84
 Content-Type: text/plain; charset=ISO-8859-1
 
 Approved, I have test is good. thank you!
 
 
 Chifeng
 
 
 On Fri, Oct 30, 2009 at 6:20 PM, Edwin Groothuis <edwin@freebsd.org> wrote:
 
 > Maintainer of mail/sqlgrey,
 >
 > Please note that PR ports/140102 has just been submitted.
 >
 > If it contains a patch for an upgrade, an enhancement or a bug fix
 > you agree on, reply to this email stating that you approve the patch
 > and a committer will take care of it.
 >
 > The full text of the PR can be found at:
 >    http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/140102
 >
 > --
 > Edwin Groothuis via the GNATS Auto Assign Tool
 > edwin@FreeBSD.org
 >
 
 
 
 -- 
 regards.
 chifeng
 
 --00504502bb37be608f04776e1a84
 Content-Type: text/html; charset=ISO-8859-1
 Content-Transfer-Encoding: quoted-printable
 
 Approved, I have test is good. thank you!<br><br><br>Chifeng<br><br><br><di=
 v class=3D"gmail_quote">On Fri, Oct 30, 2009 at 6:20 PM, Edwin Groothuis <s=
 pan dir=3D"ltr">&lt;<a href=3D"mailto:edwin@freebsd.org">edwin@freebsd.org<=
 /a>&gt;</span> wrote:<br>
 <blockquote class=3D"gmail_quote" style=3D"border-left: 1px solid rgb(204, =
 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Maintainer of mai=
 l/sqlgrey,<br>
 <br>
 Please note that PR ports/140102 has just been submitted.<br>
 <br>
 If it contains a patch for an upgrade, an enhancement or a bug fix<br>
 you agree on, reply to this email stating that you approve the patch<br>
 and a committer will take care of it.<br>
 <br>
 The full text of the PR can be found at:<br>
  =A0 =A0<a href=3D"http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dports/14010=
 2" target=3D"_blank">http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dports/140=
 102</a><br>
 <font color=3D"#888888"><br>
 --<br>
 Edwin Groothuis via the GNATS Auto Assign Tool<br>
 edwin@FreeBSD.org<br>
 </font></blockquote></div><br><br clear=3D"all"><br>-- <br>regards.<br>chif=
 eng<br>
 
 --00504502bb37be608f04776e1a84--
State-Changed-From-To: feedback->open 
State-Changed-By: linimon 
State-Changed-When: Tue Nov 3 02:37:29 UTC 2009 
State-Changed-Why:  
Maintainer approved. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=140102 
State-Changed-From-To: open->closed 
State-Changed-By: arved 
State-Changed-When: Mon Nov 9 08:15:23 UTC 2009 
State-Changed-Why:  
committed, thanks 

http://www.freebsd.org/cgi/query-pr.cgi?pr=140102 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/140102: commit references a PR
Date: Mon,  9 Nov 2009 08:15:29 +0000 (UTC)

 arved       2009-11-09 08:15:15 UTC
 
   FreeBSD ports repository
 
   Modified files:
     mail/sqlgrey         Makefile 
   Log:
   Fix dependency
   
   PR:             140102
   Submitted by:   Frank Wall <fw@moov.de>
   Approved by:    maintainer
   
   Revision  Changes    Path
   1.18      +1 -1      ports/mail/sqlgrey/Makefile
 _______________________________________________
 cvs-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/cvs-all
 To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
 
>Unformatted:
