From nobody@FreeBSD.org  Fri Sep 30 11:13:52 2011
Return-Path: <nobody@FreeBSD.org>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 59CD31065672
	for <freebsd-gnats-submit@FreeBSD.org>; Fri, 30 Sep 2011 11:13:52 +0000 (UTC)
	(envelope-from nobody@FreeBSD.org)
Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22])
	by mx1.freebsd.org (Postfix) with ESMTP id 313188FC15
	for <freebsd-gnats-submit@FreeBSD.org>; Fri, 30 Sep 2011 11:13:52 +0000 (UTC)
Received: from red.freebsd.org (localhost [127.0.0.1])
	by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p8UBDqZB085586
	for <freebsd-gnats-submit@FreeBSD.org>; Fri, 30 Sep 2011 11:13:52 GMT
	(envelope-from nobody@red.freebsd.org)
Received: (from nobody@localhost)
	by red.freebsd.org (8.14.4/8.14.4/Submit) id p8UBDpOk085567;
	Fri, 30 Sep 2011 11:13:52 GMT
	(envelope-from nobody)
Message-Id: <201109301113.p8UBDpOk085567@red.freebsd.org>
Date: Fri, 30 Sep 2011 11:13:52 GMT
From: Eijiro Shibusawa <phd_kimberlite@yahoo.co.jp>
To: freebsd-gnats-submit@FreeBSD.org
Subject: [maintainer-update] please update math/levmar
X-Send-Pr-Version: www-3.1
X-GNATS-Notify:

>Number:         161155
>Category:       ports
>Synopsis:       [maintainer-update] please update math/levmar
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    bf
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Fri Sep 30 11:20:11 UTC 2011
>Closed-Date:    Sun Oct 23 09:07:39 UTC 2011
>Last-Modified:  Sun Oct 23 09:10:11 UTC 2011
>Originator:     Eijiro Shibusawa
>Release:        FreeBSD 8.2-RELEASE
>Organization:
>Environment:
FreeBSD myhost.jp 8.2-RELEASE FreeBSD 8.2-RELEASE #0: Thu Feb 17 02:41:51 UTC 2011     root@mason.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64
>Description:
Attached patch includes the following modifications.
* The check for math/atlas shared libraries is updated.
* Explicit dependencies to BLAS/LAPACK libraries are removed.
* MAKE_JOBS_SAFE= yes is added.
>How-To-Repeat:

>Fix:


>Release-Note:
>Audit-Trail:
Class-Changed-From-To: change-request->maintainer-update 
Class-Changed-By: edwin 
Class-Changed-When: Fri Sep 30 11:20:26 UTC 2011 
Class-Changed-Why:  
Fix category (submitter is maintainer) (via the GNATS Auto Assign Tool) 

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

From: Eijiro Shibusawa <phd_kimberlite@yahoo.co.jp>
To: bug-followup@FreeBSD.org, phd_kimberlite@yahoo.co.jp
Cc:  
Subject: Re: ports/161155: [maintainer-update] please update math/levmar
Date: Fri, 30 Sep 2011 20:58:05 +0900

 This is a multi-part message in MIME format.
 --------------080706030202020309060706
 Content-Type: text/plain; charset=ISO-8859-1; format=flowed
 Content-Transfer-Encoding: 7bit
 
 
 
 
 
 --------------080706030202020309060706
 Content-Type: text/plain;
  name="levmar_patch.txt"
 Content-Transfer-Encoding: 7bit
 Content-Disposition: attachment;
  filename="levmar_patch.txt"
 
 diff -uNr /usr/ports/math/levmar/./Makefile ./Makefile
 --- /usr/ports/math/levmar/./Makefile	2011-09-24 07:24:04.000000000 +0900
 +++ ./Makefile	2011-09-30 20:01:00.000000000 +0900
 @@ -7,7 +7,7 @@
  
  PORTNAME=	levmar
  PORTVERSION=	2.5
 -PORTREVISION=	2
 +PORTREVISION=	3
  CATEGORIES=	math
  MASTER_SITES=	http://www.ics.forth.gr/~lourakis/levmar/
  EXTRACT_SUFX=	.tgz
 @@ -16,9 +16,11 @@
  COMMENT=	A GPL-licensed library implementing the Levenberg-Marquardt algorithm
  
  LICENSE=	GPLv2
 +LICENSE_FILE=	${WRKSRC}/LICENSE
  
  USE_LDCONFIG=	yes
  USE_FORTRAN=	yes
 +MAKE_JOBS_SAFE=	yes
  
  OPTIONS=	PROFILE "Build a profiling library" Off
  
 @@ -26,7 +28,7 @@
  
  .if exists(${LOCALBASE}/lib/libgoto2p.so)
  WITH_BLAS?=	gotoblas
 -.elif exists(${LOCALBASE}/lib/libatlas_r.so)
 +.elif exists(${LOCALBASE}/lib/libatlas.so)
  WITH_BLAS?=	atlas
  .else
  WITH_BLAS?=	reference
 @@ -38,20 +40,18 @@
  BLAS=		-lblas
  LAPACK=		-llapack
  .elif ${WITH_BLAS} == "gotoblas"
 +CFLAGS+=	${PTHREAD_CFLAGS}
 +LDFLAGS+=	${PTHREAD_LIBS} -L${LOCALBASE}/lib
  LIB_DEPENDS=	goto2p.1:${PORTSDIR}/math/gotoblas
  BLAS=		-lgoto2p
  LAPACK=		-lgoto2p
  .elif ${WITH_BLAS} == "atlas"
 -LIB_DEPENDS=	atlas_r.2:${PORTSDIR}/math/atlas
 -BLAS=		-lptf77blas -lptcblas -latlas_r
 -LAPACK=		-lalapack_r
 -.endif
 -
  CFLAGS+=	${PTHREAD_CFLAGS}
  LDFLAGS+=	${PTHREAD_LIBS} -L${LOCALBASE}/lib
 -SRCCONF=	${NONEXISTENT}
 -MAKE_ENV=	LDADD="${LAPACK} ${BLAS}" \
 -		SRCCONF="${SRCCONF}"
 +LIB_DEPENDS=	atlas.2:${PORTSDIR}/math/atlas
 +BLAS=		-lptf77blas -lptcblas -latlas
 +LAPACK=		-lalapack
 +.endif
  
  .if !defined(NOPORTDOCS)
  PORTDOCS=	README.txt
 diff -uNr /usr/ports/math/levmar/./files/Makefile.demo ./files/Makefile.demo
 --- /usr/ports/math/levmar/./files/Makefile.demo	2010-12-18 09:44:22.000000000 +0900
 +++ ./files/Makefile.demo	2011-09-30 20:01:00.000000000 +0900
 @@ -3,7 +3,7 @@
  LDFLAGS= %%LDFLAGS%%
  LAPACK= %%LAPACK%%
  BLAS= %%BLAS%%
 -LIBS= -llevmar $(LAPACK) $(BLAS) -lm -lgcc_s -lgfortran
 +LIBS= -llevmar $(LAPACK) $(BLAS) -lm
  
  DEMOBJS= lmdemo.o
  DEMOSRCS= lmdemo.c
 
 
 
 
 --------------080706030202020309060706--
Responsible-Changed-From-To: freebsd-ports-bugs->bf 
Responsible-Changed-By: bf 
Responsible-Changed-When: Wed Oct 5 10:52:52 UTC 2011 
Responsible-Changed-Why:  
I'll take it. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=161155 
State-Changed-From-To: open->closed 
State-Changed-By: bf 
State-Changed-When: Sun Oct 23 09:07:38 UTC 2011 
State-Changed-Why:  
Committed. Thanks! 

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

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/161155: commit references a PR
Date: Sun, 23 Oct 2011 09:04:18 +0000 (UTC)

 bf          2011-10-23 09:04:04 UTC
 
   FreeBSD ports repository
 
   Modified files:
     math/lapacke         Makefile 
     math/lapacke/files   patch-make.inc 
     math/levmar          Makefile 
     math/levmar/files    Makefile.demo 
   Added files:
     math/lapacke/files   patch-testing+Makefile 
   Log:
   correct linking and dependency tests; remove MAKE_ENV
   additions needed only on FreeBSD 6.* from math/levmar;
   patch a makefile of, and add an option to build profiling
   libraries to, math/lapacke; mark MAKE_JOBS_SAFE
   
   PR:             161154, 161155
   Submitted by:   E. Shibusawa (maintainer)
   
   Revision  Changes    Path
   1.3       +32 -17    ports/math/lapacke/Makefile
   1.2       +1 -1      ports/math/lapacke/files/patch-make.inc
   1.1       +16 -0     ports/math/lapacke/files/patch-testing+Makefile (new)
   1.5       +12 -12    ports/math/levmar/Makefile
   1.3       +1 -1      ports/math/levmar/files/Makefile.demo
 _______________________________________________
 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:
