diff options
author | pav <pav@FreeBSD.org> | 2004-07-02 07:41:10 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2004-07-02 07:41:10 +0800 |
commit | 64b5f6d0c839a8bbef82450a440aaf620466ec22 (patch) | |
tree | 6c233bc61f1f1550b6ac7b31acf56e46f73780e0 /math | |
parent | c382890b9a75f4935daa318226f4536cd22a4a32 (diff) | |
download | freebsd-ports-gnome-64b5f6d0c839a8bbef82450a440aaf620466ec22.tar.gz freebsd-ports-gnome-64b5f6d0c839a8bbef82450a440aaf620466ec22.tar.zst freebsd-ports-gnome-64b5f6d0c839a8bbef82450a440aaf620466ec22.zip |
- Fix optional dependency on unexistant port
- WANT_ -> WITH_
- Portlint
PR: ports/68567
Submitted by: Eric van Gyzen <vangyzen@stat.duke.edu>
Diffstat (limited to 'math')
-rw-r--r-- | math/itl/Makefile | 6 | ||||
-rw-r--r-- | math/itl/pkg-plist | 1 |
2 files changed, 3 insertions, 4 deletions
diff --git a/math/itl/Makefile b/math/itl/Makefile index 640952e393b4..c8a09d159536 100644 --- a/math/itl/Makefile +++ b/math/itl/Makefile @@ -26,9 +26,9 @@ NO_BUILD= yes .include <bsd.port.pre.mk> -.if defined(WANT_MPI) || exists(${LOCALBASE}/bin/hcp) -BUILD_DEPENDS+= ${LOCALBASE}/bin/hcp:${PORTSDIR}/parallel/lam -RUN_DEPENDS+= ${LOCALBASE}/bin/hcp:${PORTSDIR}/parallel/lam +.if defined(WITH_MPI) || exists(${LOCALBASE}/bin/hcp) +BUILD_DEPENDS+= ${LOCALBASE}/bin/hcp:${PORTSDIR}/net/lam +RUN_DEPENDS+= ${LOCALBASE}/bin/hcp:${PORTSDIR}/net/lam CONFIGURE_ARGS+=--with-mpi=lam .endif diff --git a/math/itl/pkg-plist b/math/itl/pkg-plist index a3c16d8d738c..cc6c2a402fe8 100644 --- a/math/itl/pkg-plist +++ b/math/itl/pkg-plist @@ -9,4 +9,3 @@ include/itl/modified_gram_schmidt.h include/itl/matrix_free_operator.h include/itl/number_traits.h @dirrm include/itl - |