aboutsummaryrefslogtreecommitdiff
path: root/math/libtsnnls/Makefile
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2020-05-05 15:38:11 +0000
committerRene Ladan <rene@FreeBSD.org>2020-05-05 15:38:11 +0000
commit0786acb3155523a38d1442f3c16ca56750f1db04 (patch)
tree42843d6e23bc6be789c7f1284cdc61d43d3c0942 /math/libtsnnls/Makefile
parente0510744daebb2bb9f73bf707c276e02e4c191fe (diff)
downloadports-0786acb3155523a38d1442f3c16ca56750f1db04.tar.gz
ports-0786acb3155523a38d1442f3c16ca56750f1db04.zip
Notes
Diffstat (limited to 'math/libtsnnls/Makefile')
-rw-r--r--math/libtsnnls/Makefile59
1 files changed, 0 insertions, 59 deletions
diff --git a/math/libtsnnls/Makefile b/math/libtsnnls/Makefile
deleted file mode 100644
index 014325910e26..000000000000
--- a/math/libtsnnls/Makefile
+++ /dev/null
@@ -1,59 +0,0 @@
-# Created by: Tz-Huan Huang <tzhuan@gmail.com>
-# $FreeBSD$
-
-PORTNAME= libtsnnls
-PORTVERSION= 2.3.3
-PORTREVISION= 12
-CATEGORIES= math
-MASTER_SITES= http://www.jasoncantarella.com/downloads/
-
-MAINTAINER= tzhuan@gmail.com
-COMMENT= Fast Sparse Nonnegative Least Squares Solver
-
-BROKEN= unfetchable
-DEPRECATED= Broken for more than 6 months
-EXPIRATION_DATE= 2020-05-05
-
-GNU_CONFIGURE= yes
-USES= fortran libtool
-USE_LDCONFIG= yes
-
-OPTIONS_DEFINE= GOTOBLAS ATLAS
-GOTOBLAS_DESC= Use gotoblas (conflict with USE_ATLAS)
-ATLAS_DESC= Use atlas (conflict with USE_GOTOBLAS)
-# DMALLOC "Use dmalloc" off
-
-.include <bsd.port.options.mk>
-
-WITH_BLAS=reference
-.if ${PORT_OPTIONS:MGOTOBLAS}
-WITH_BLAS=gotoblas
-.elif ${PORT_OPTIONS:MATLAS}
-WITH_BLAS=atlas
-.endif
-
-# FIXME compiling error when using dmalloc
-#.if ${PORT_OPTIONS:MDMALLOC}
-#CONFIGURE_ARGS+=--with-dmalloc
-#LIB_DEPENDS+=dmalloc.1:devel/dmalloc
-#.endif
-
-.if ${WITH_BLAS} == reference
-LIB_DEPENDS+= libblas.so:math/blas
-LIB_DEPENDS+= liblapack.so:math/lapack
-BLAS=-lblas
-LAPACK=-llapack
-.elif ${WITH_BLAS} == gotoblas
-LIB_DEPENDS+= libgoto2.so:math/gotoblas
-BLAS=-lgoto2p
-LAPACK=-lgoto2p
-.elif ${WITH_BLAS} == atlas
-LIB_DEPENDS+= libatlas.so:math/atlas
-BLAS=-lptf77blas
-LAPACK=-lalapack -lptcblas
-.endif
-
-CONFIGURE_ARGS+=--with-blas="${BLAS}" --with-lapack="${LAPACK}"
-LDFLAGS+= -L${LOCALBASE}/lib
-
-.include <bsd.port.mk>