From owner-freebsd-ports-bugs@FreeBSD.ORG Sun May 22 12:34:33 2005 Return-Path: X-Original-To: freebsd-ports-bugs@freebsd.org Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B077616A41C; Sun, 22 May 2005 12:34:33 +0000 (GMT) (envelope-from kay_lehmann@web.de) Received: from smtp06.web.de (smtp06.web.de [217.72.192.224]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB43443D48; Sun, 22 May 2005 12:34:32 +0000 (GMT) (envelope-from kay_lehmann@web.de) Received: from [217.197.85.240] (helo=[192.168.1.3]) by smtp06.web.de with asmtp (TLSv1:RC4-MD5:128) (WEB.DE 4.105 #291) id 1DZpf5-0004AH-00; Sun, 22 May 2005 14:34:31 +0200 Message-ID: <42907C91.8090806@web.de> Date: Sun, 22 May 2005 14:35:29 +0200 From: Kay Lehmann User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050330) X-Accept-Language: en-us, en MIME-Version: 1.0 To: pav@FreeBSD.org References: <200505212352.j4LNqU7m039923@freefall.freebsd.org> <429035FF.10107@web.de> <1116760822.23538.2.camel@hood.oook.cz> In-Reply-To: <1116760822.23538.2.camel@hood.oook.cz> Content-Type: multipart/mixed; boundary="------------070506010401070800030304" Sender: kay_lehmann@web.de X-Sender: kay_lehmann@web.de Cc: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/81136: [New Port] science/mbdyn: Add new port mbdyn (MultiBody DYNamics Software) 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: Sun, 22 May 2005 12:34:33 -0000 This is a multi-part message in MIME format. --------------070506010401070800030304 Content-Type: text/plain; charset=ISO-8859-2; format=flowed Content-Transfer-Encoding: 8bit Pav Lucistnik wrote: > Kay Lehmann píše v ne 22. 05. 2005 v 09:34 +0200: > > >>Hmm, it seems like atlas isn't detected correctly and so there are some >>libraries missing when linking (for me it includes -lcblas -lf77blas >>-latlas). May you send me the config.log? > > > Note there is no atlas package involved. Your port specify build depends > on umfpack, which specifies build depends on atlas --> mbdyn don't see > atlas package at all! > Ooops, I thought that depending on umfpack would include the dependency on atlas. I did not recognize it's just a build depends from umfpack not a lib_depends. After checking this I saw another dependency (lapack) I missed in the port. I hope the attached diff fixes the build. Sorry about that. --------------070506010401070800030304 Content-Type: text/x-patch; name="Makefile.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="Makefile.diff" --- Makefile.orig Sun May 22 14:31:35 2005 +++ Makefile Sun May 22 14:30:33 2005 @@ -13,6 +13,8 @@ MAINTAINER= kay_lehmann@web.de COMMENT= A MultiBody Dynamics analysis system +LIB_DEPENDS= lapack.3:${PORTSDIR}/math/lapack \ + atlas.1:${PORTSDIR}/math/atlas BUILD_DEPENDS= ${LOCALBASE}/lib/libumfpack.a:${PORTSDIR}/math/umfpack GNU_CONFIGURE= yes @@ -46,7 +48,7 @@ .if defined(WITH_GINAC) IGNORE= "You enabled GiNaC-support, which isn't implemented yet" -BUILD_DEPENDS+= ${LOCALBASE}/lib/libmetis.a:${PORTSDIR}/math/metis +#BUILD_DEPENDS+= ${LOCALBASE}/lib/libmetis.a:${PORTSDIR}/math/metis CONFIGURE_ARGS+= --with-ginac=yes CPPFLAGS+= -I${LOCALBASE}/include/metis .else --------------070506010401070800030304--