diff options
author | bapt <bapt@FreeBSD.org> | 2014-07-14 07:36:40 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2014-07-14 07:36:40 +0800 |
commit | 736ba1e7b3394f86195da6df293f1badc3dc06fd (patch) | |
tree | caf481fc0fb12e9f5b4f7e105ea42f01f77c286a /math | |
parent | 7244029e548a8568a25201a0e345fd4bc5e9ec5b (diff) | |
download | freebsd-ports-gnome-736ba1e7b3394f86195da6df293f1badc3dc06fd.tar.gz freebsd-ports-gnome-736ba1e7b3394f86195da6df293f1badc3dc06fd.tar.zst freebsd-ports-gnome-736ba1e7b3394f86195da6df293f1badc3dc06fd.zip |
Modernize LIB_DEPENDS
With hat: portmgr
Diffstat (limited to 'math')
-rw-r--r-- | math/PDL/Makefile | 12 | ||||
-rw-r--r-- | math/arpack/Makefile | 4 | ||||
-rw-r--r-- | math/atlas-devel/Makefile | 4 | ||||
-rw-r--r-- | math/bihar/Makefile | 2 | ||||
-rw-r--r-- | math/blacs/Makefile | 2 | ||||
-rw-r--r-- | math/blocksolve95/Makefile | 8 | ||||
-rw-r--r-- | math/cln/Makefile | 2 | ||||
-rw-r--r-- | math/cvc3/Makefile | 2 |
8 files changed, 18 insertions, 18 deletions
diff --git a/math/PDL/Makefile b/math/PDL/Makefile index 47fbc2b54375..db3cc2d51304 100644 --- a/math/PDL/Makefile +++ b/math/PDL/Makefile @@ -50,7 +50,7 @@ BUILD_DEPENDS+= p5-PGPLOT>=0:${PORTSDIR}/graphics/p5-PGPLOT .endif .if ${PORT_OPTIONS:MPLPLOT} -LIB_DEPENDS+= plplotd:${PORTSDIR}/math/plplot +LIB_DEPENDS+= libplplotd.so:${PORTSDIR}/math/plplot .endif .if ${PORT_OPTIONS:MOPENGL} @@ -60,7 +60,7 @@ USE_GL= yes .endif .if ${PORT_OPTIONS:MGD} -LIB_DEPENDS+= gd:${PORTSDIR}/graphics/gd +LIB_DEPENDS+= libgd.so:${PORTSDIR}/graphics/gd .endif .if ${PORT_OPTIONS:MF77} @@ -68,19 +68,19 @@ BUILD_DEPENDS+= p5-ExtUtils-F77>=0:${PORTSDIR}/lang/p5-ExtUtils-F77 .endif .if ${PORT_OPTIONS:MFFTW} -LIB_DEPENDS+= fftw:${PORTSDIR}/math/fftw +LIB_DEPENDS+= libfftw.so:${PORTSDIR}/math/fftw .endif .if ${PORT_OPTIONS:MGSL} -LIB_DEPENDS+= gsl:${PORTSDIR}/math/gsl +LIB_DEPENDS+= libgsl.so:${PORTSDIR}/math/gsl .endif .if ${PORT_OPTIONS:MHDF} -LIB_DEPENDS+= df:${PORTSDIR}/science/hdf +LIB_DEPENDS+= libdf.so:${PORTSDIR}/science/hdf .endif .if ${PORT_OPTIONS:MPROJ} -LIB_DEPENDS+= proj:${PORTSDIR}/graphics/proj +LIB_DEPENDS+= libproj.so:${PORTSDIR}/graphics/proj .endif .if ${PORT_OPTIONS:MREADLINE} diff --git a/math/arpack/Makefile b/math/arpack/Makefile index ebb838aaae2c..f87206db41a4 100644 --- a/math/arpack/Makefile +++ b/math/arpack/Makefile @@ -82,10 +82,10 @@ WITH_BLAS?= reference .endif .if ${WITH_BLAS} == atlas -LIB_DEPENDS+= atlas:${PORTSDIR}/math/atlas +LIB_DEPENDS+= libatlas.so:${PORTSDIR}/math/atlas BLAS?= -lf77blas .else -LIB_DEPENDS+= blas:${PORTSDIR}/math/blas +LIB_DEPENDS+= libblas.so:${PORTSDIR}/math/blas BLAS?= -lblas .endif diff --git a/math/atlas-devel/Makefile b/math/atlas-devel/Makefile index 60859b5f1a92..2d4068e6ca85 100644 --- a/math/atlas-devel/Makefile +++ b/math/atlas-devel/Makefile @@ -28,8 +28,8 @@ NO_STAGE= yes NOT_FOR_ARCHS= alpha CCOMPILER= ${CC} -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 .if ${ARCH} == "sparc64" PICFLAG?= -fPIC diff --git a/math/bihar/Makefile b/math/bihar/Makefile index a04d5210cd3b..4219e30f6eea 100644 --- a/math/bihar/Makefile +++ b/math/bihar/Makefile @@ -36,7 +36,7 @@ EXTRACT_ONLY= #empty MAINTAINER= bf@FreeBSD.org COMMENT= Biharmonic equation in rectangular geometry and polar coordinates -LIB_DEPENDS= linpack.3:${PORTSDIR}/math/linpack +LIB_DEPENDS= liblinpack.so:${PORTSDIR}/math/linpack NO_STAGE= yes NO_WRKSUBDIR= yes diff --git a/math/blacs/Makefile b/math/blacs/Makefile index 5899a53777cf..9fef4329a80b 100644 --- a/math/blacs/Makefile +++ b/math/blacs/Makefile @@ -35,7 +35,7 @@ BUILD_DEPENDS+= ${LOCALBASE}/mpi/openmpi/lib/libmpi.so:${PORTSDIR}/net/openmpi RUN_DEPENDS+= ${LOCALBASE}/mpi/openmpi/bin/mpirun:${PORTSDIR}/net/openmpi EXTRA_PATCHES+= ${FILESDIR}/Bmake.inc-openmpi.diff .else -LIB_DEPENDS+= mpich:${PORTSDIR}/net/mpich2 +LIB_DEPENDS+= libmpich.so:${PORTSDIR}/net/mpich2 EXTRA_PATCHES+= ${FILESDIR}/Bmake.inc-mpich.diff .endif diff --git a/math/blocksolve95/Makefile b/math/blocksolve95/Makefile index 7d147692a4c8..ba6a2c05b4f0 100644 --- a/math/blocksolve95/Makefile +++ b/math/blocksolve95/Makefile @@ -15,7 +15,7 @@ MAINTAINER= bf@FreeBSD.org COMMENT= Software for the efficient solution of large, sparse linear systems BUILD_DEPENDS= ${MPIDIR}/lib/libmpich.a:${PORTSDIR}/net/mpich2 -LIB_DEPENDS= f2c.2:${PORTSDIR}/lang/f2c +LIB_DEPENDS= libf2c.so:${PORTSDIR}/lang/f2c RUN_DEPENDS= ${MPIDIR}/bin/mpirun:${PORTSDIR}/net/mpich2 USES= fortran gmake @@ -39,12 +39,12 @@ NO_STAGE= yes WITH_ATLAS= yes .endif .if defined(WITH_ATLAS) -LIB_DEPENDS+= atlas.2:${PORTSDIR}/math/atlas +LIB_DEPENDS+= libatlas.so:${PORTSDIR}/math/atlas BLAS_LIB= -lf77blas LAPACK_LIB= -L${LOCALBASE}/lib -lalapack -lcblas .else -LIB_DEPENDS+= lapack.4:${PORTSDIR}/math/lapack -LIB_DEPENDS+= blas.2:${PORTSDIR}/math/blas +LIB_DEPENDS+= liblapack.so:${PORTSDIR}/math/lapack +LIB_DEPENDS+= libblas.so:${PORTSDIR}/math/blas BLAS_LIB= -lblas LAPACK_LIB= -L${LOCALBASE}/lib -llapack .endif diff --git a/math/cln/Makefile b/math/cln/Makefile index 29608a96608e..be2196a20e7c 100644 --- a/math/cln/Makefile +++ b/math/cln/Makefile @@ -11,7 +11,7 @@ MASTER_SITES= http://www.ginac.de/CLN/ \ MAINTAINER= wen@FreeBSD.org COMMENT= Class Library for Numbers -LIB_DEPENDS= gmp.10:${PORTSDIR}/math/gmp +LIB_DEPENDS= libgmp.so:${PORTSDIR}/math/gmp USE_AUTOTOOLS= libtool USE_BZIP2= yes diff --git a/math/cvc3/Makefile b/math/cvc3/Makefile index 2a4c08581394..acf08a5d43d1 100644 --- a/math/cvc3/Makefile +++ b/math/cvc3/Makefile @@ -9,7 +9,7 @@ MASTER_SITES= http://www.cs.nyu.edu/acsys/cvc3/download/${PORTVERSION}/ MAINTAINER= lwhsu@FreeBSD.org COMMENT= Automatic theorem prover for the SMT problem -LIB_DEPENDS= gmp:${PORTSDIR}/math/gmp +LIB_DEPENDS= libgmp.so:${PORTSDIR}/math/gmp CONFIGURE_ARGS= --enable-dynamic \ --with-arith=gmp \ |