diff options
author | bapt <bapt@FreeBSD.org> | 2013-12-11 22:53:20 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2013-12-11 22:53:20 +0800 |
commit | ea8db3a1049c55cdd2143d4622d89b0b65d5062d (patch) | |
tree | 29243a947e6109dbf0500a80dd52284f80f4b0aa /cad/gmsh | |
parent | bbae64838ffde3d47dcec56055a594e7804bb061 (diff) | |
download | freebsd-ports-gnome-ea8db3a1049c55cdd2143d4622d89b0b65d5062d.tar.gz freebsd-ports-gnome-ea8db3a1049c55cdd2143d4622d89b0b65d5062d.tar.zst freebsd-ports-gnome-ea8db3a1049c55cdd2143d4622d89b0b65d5062d.zip |
In preparation for making libtool generate libraries with a sane name, fix all
LIB_DEPENDS in cad
With hat: portmgr
Diffstat (limited to 'cad/gmsh')
-rw-r--r-- | cad/gmsh/Makefile | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/cad/gmsh/Makefile b/cad/gmsh/Makefile index 3c2608e5674a..e0814df5620e 100644 --- a/cad/gmsh/Makefile +++ b/cad/gmsh/Makefile @@ -18,10 +18,10 @@ COMMENT= An automatic 3D finite element mesh generator LICENSE= GPLv2 -LIB_DEPENDS= fltk:${PORTSDIR}/x11-toolkits/fltk \ - jpeg:${PORTSDIR}/graphics/jpeg \ - png15:${PORTSDIR}/graphics/png \ - lapack:${PORTSDIR}/math/lapack +LIB_DEPENDS= libfltk.so:${PORTSDIR}/x11-toolkits/fltk \ + libjpeg.so:${PORTSDIR}/graphics/jpeg \ + libpng15.so:${PORTSDIR}/graphics/png \ + liblapack.so:${PORTSDIR}/math/lapack WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}-source @@ -86,21 +86,21 @@ PLIST_SUB+= METIS="@comment " .endif .if defined(WITH_TAUCS) -LIB_DEPENDS+= taucs:${PORTSDIR}/math/taucs +LIB_DEPENDS+= libtaucs.so:${PORTSDIR}/math/taucs CMAKE_ARGS+= -DENABLE_TAUCS=ON .else CMAKE_ARGS+= -DENABLE_TAUCS=OFF .endif .if !defined(WITHOUT_MED) -LIB_DEPENDS+= med:${PORTSDIR}/french/med +LIB_DEPENDS+= libmed.so:${PORTSDIR}/french/med CMAKE_ARGS+= -DENABLE_MED=ON .else CMAKE_ARGS+= -DENABLE_MED=OFF .endif .if !defined(WITHOUT_CGNS) -LIB_DEPENDS+= cgns:${PORTSDIR}/science/cgnslib +LIB_DEPENDS+= libcgns.so:${PORTSDIR}/science/cgnslib CMAKE_ARGS+= -DENABLE_CGNS=ON .else CMAKE_ARGS+= -DENABLE_CGNS=OFF @@ -111,7 +111,7 @@ CMAKE_ARGS+= -DENABLE_GMM=OFF .endif .if defined(WITH_OCC) -LIB_DEPENDS+= TKernel:${PORTSDIR}/cad/opencascade +LIB_DEPENDS+= libTKernel.so:${PORTSDIR}/cad/opencascade CMAKE_ARGS+= -DENABLE_OCC=ON -DOCC_INC=${LOCALBASE}/include/OpenCASCADE CONFLICTS= gmsh-2.* .else |