Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 2 May 2015 19:25:50 +0000 (UTC)
From:      Danilo Egea Gondolfo <danilo@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r385210 - head/math/superlu
Message-ID:  <201505021925.t42JPoMb047356@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: danilo
Date: Sat May  2 19:25:50 2015
New Revision: 385210
URL: https://svnweb.freebsd.org/changeset/ports/385210

Log:
  - Fix symbolic link path
  
  /usr/local/lib/libsuperlu.a
  /usr/local/lib/libsuperlu.so -> libsuperlu_4.3.so
  /usr/local/lib/libsuperlu.so.4
  /usr/local/lib/libsuperlu_4.3.so -> libsuperlu.so.2 <-- wrong file name

Modified:
  head/math/superlu/Makefile

Modified: head/math/superlu/Makefile
==============================================================================
--- head/math/superlu/Makefile	Sat May  2 19:23:55 2015	(r385209)
+++ head/math/superlu/Makefile	Sat May  2 19:25:50 2015	(r385210)
@@ -3,7 +3,7 @@
 
 PORTNAME=	superlu
 PORTVERSION=	${P_VERSION}
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	math
 MASTER_SITES=	http://crd.lbl.gov/~xiaoye/SuperLU/ \
 		http://crd.lbl.gov/~xiaoye/:doc
@@ -76,7 +76,7 @@ do-install:
 		${STAGEDIR}${PREFIX}/lib/libsuperlu.a
 	${INSTALL_LIB} ${WRKSRC}/libsuperlu_${P_VERSION}.so \
 		${STAGEDIR}${PREFIX}/lib/libsuperlu.so.${P_VER}
-	${LN} -fs libsuperlu.so.${PORTREVISION} \
+	${LN} -fs libsuperlu.so.${P_VER} \
 		${STAGEDIR}${PREFIX}/lib/libsuperlu_${P_VERSION}.so
 	${LN} -fs libsuperlu_${P_VERSION}.so \
 		${STAGEDIR}${PREFIX}/lib/libsuperlu.so



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