Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 22 May 2005 14:35:29 +0200
From:      Kay Lehmann <kay_lehmann@web.de>
To:        pav@FreeBSD.org
Cc:        freebsd-ports-bugs@FreeBSD.org
Subject:   Re: ports/81136: [New Port] science/mbdyn: Add new port mbdyn	(MultiBody DYNamics Software)
Message-ID:  <42907C91.8090806@web.de>
In-Reply-To: <1116760822.23538.2.camel@hood.oook.cz>
References:  <200505212352.j4LNqU7m039923@freefall.freebsd.org>	 <429035FF.10107@web.de> <1116760822.23538.2.camel@hood.oook.cz>

next in thread | previous in thread | raw e-mail | index | archive | help
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--



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?42907C91.8090806>