diff options
author | vanilla <vanilla@FreeBSD.org> | 2014-06-19 00:16:40 +0800 |
---|---|---|
committer | vanilla <vanilla@FreeBSD.org> | 2014-06-19 00:16:40 +0800 |
commit | b530d206f2248422c73858945ee03958f4409803 (patch) | |
tree | f940b32aec0fd0336546868564bc087c2a745575 | |
parent | c488bc691819ae988cbcc0d18b8d5401ca4cb242 (diff) | |
download | freebsd-ports-gnome-b530d206f2248422c73858945ee03958f4409803.tar.gz freebsd-ports-gnome-b530d206f2248422c73858945ee03958f4409803.tar.zst freebsd-ports-gnome-b530d206f2248422c73858945ee03958f4409803.zip |
1: Stagify.
2: USES=libtool, bump version.
3: new syntax of LIB_DEPENDS.
Approved by: portmgr@
-rw-r--r-- | math/libtsnnls/Makefile | 13 | ||||
-rw-r--r-- | math/libtsnnls/pkg-plist | 2 |
2 files changed, 7 insertions, 8 deletions
diff --git a/math/libtsnnls/Makefile b/math/libtsnnls/Makefile index df8a594e0678..1635b4f3db7e 100644 --- a/math/libtsnnls/Makefile +++ b/math/libtsnnls/Makefile @@ -3,7 +3,7 @@ PORTNAME= libtsnnls PORTVERSION= 2.3.3 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= math MASTER_SITES= http://www.jasoncantarella.com/downloads/ @@ -11,7 +11,7 @@ MAINTAINER= tzhuan@gmail.com COMMENT= Fast Sparse Nonnegative Least Squares Solver GNU_CONFIGURE= yes -USES= fortran +USES= fortran libtool USE_LDCONFIG= yes OPTIONS_DEFINE= GOTOBLAS ATLAS @@ -19,7 +19,6 @@ GOTOBLAS_DESC= Use gotoblas (conflict with USE_ATLAS) ATLAS_DESC= Use atlas (conflict with USE_GOTOBLAS) # DMALLOC "Use dmalloc" off -NO_STAGE= yes .include <bsd.port.options.mk> WITH_BLAS=reference @@ -36,16 +35,16 @@ WITH_BLAS=atlas #.endif .if ${WITH_BLAS} == reference -LIB_DEPENDS+=blas.2:${PORTSDIR}/math/blas -LIB_DEPENDS+=lapack.4:${PORTSDIR}/math/lapack +LIB_DEPENDS+= libblas.so:${PORTSDIR}/math/blas +LIB_DEPENDS+= liblapack.so:${PORTSDIR}/math/lapack BLAS=-lblas LAPACK=-llapack .elif ${WITH_BLAS} == gotoblas -LIB_DEPENDS+=goto2:${PORTSDIR}/math/gotoblas +LIB_DEPENDS+= libgoto2.so:${PORTSDIR}/math/gotoblas BLAS=-lgoto2p LAPACK=-lgoto2p .elif ${WITH_BLAS} == atlas -LIB_DEPENDS+=atlas:${PORTSDIR}/math/atlas +LIB_DEPENDS+= libatlas.so:${PORTSDIR}/math/atlas BLAS=-lptf77blas LAPACK=-lalapack -lptcblas .endif diff --git a/math/libtsnnls/pkg-plist b/math/libtsnnls/pkg-plist index 6c6cd2c58edb..bc201939e4dc 100644 --- a/math/libtsnnls/pkg-plist +++ b/math/libtsnnls/pkg-plist @@ -7,8 +7,8 @@ include/libtsnnls/taucs_basic/taucs_config_build.h include/libtsnnls/taucs_basic/taucs_config_tests.h include/libtsnnls/taucs_basic/taucs_private.h lib/libtsnnls.a -lib/libtsnnls.la lib/libtsnnls.so lib/libtsnnls.so.0 +lib/libtsnnls.so.0.0.0 @dirrm include/libtsnnls/taucs_basic @dirrm include/libtsnnls |