diff options
author | Alberto Villa <avilla@FreeBSD.org> | 2012-06-27 01:14:01 +0000 |
---|---|---|
committer | Alberto Villa <avilla@FreeBSD.org> | 2012-06-27 01:14:01 +0000 |
commit | 519877d020c7f93880bb55cf82465bf64d3c7ff1 (patch) | |
tree | 3146a2dddf1eeb6a80f91b73dddaa38e52aadcb1 /science | |
parent | 82f44b69fb7fc5f4c2cc8063c48a72fea9e5ace4 (diff) | |
download | freebsd-ports-519877d020c7f93880bb55cf82465bf64d3c7ff1.zip |
- Detect eigen2 by checking for .pc file, not min. port version.
If a user had eigen3 installed, but not eigen2, the min. port version
check would not differentiate between the two.
Submitted by: Jason E. Hale <bsdkaffee at gmail.com> via area51
Diffstat (limited to 'science')
-rw-r--r-- | science/avogadro/Makefile | 2 | ||||
-rw-r--r-- | science/kalzium/Makefile | 2 | ||||
-rw-r--r-- | science/step/Makefile | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/science/avogadro/Makefile b/science/avogadro/Makefile index 66fb29a5c13c..c02ef9086ff1 100644 --- a/science/avogadro/Makefile +++ b/science/avogadro/Makefile @@ -14,7 +14,7 @@ MASTER_SITES= SF MAINTAINER= tkjacobsen@gmail.com COMMENT= An advanced molecular editor and viewer -BUILD_DEPENDS= eigen>=2.0.3:${PORTSDIR}/math/eigen2 +BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/eigen2.pc:${PORTSDIR}/math/eigen2 LIB_DEPENDS= openbabel.3:${PORTSDIR}/science/openbabel USE_LDCONFIG= yes diff --git a/science/kalzium/Makefile b/science/kalzium/Makefile index 47252e0a4041..26be80628373 100644 --- a/science/kalzium/Makefile +++ b/science/kalzium/Makefile @@ -18,7 +18,7 @@ COMMENT= Periodic table of elements for KDE 4 LIB_DEPENDS= openbabel.3:${PORTSDIR}/science/openbabel \ avogadro.1:${PORTSDIR}/science/avogadro -BUILD_DEPENDS= eigen>=2.0.b3:${PORTSDIR}/math/eigen2 \ +BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/eigen2.pc:${PORTSDIR}/math/eigen2 \ ${LOCALBASE}/lib/ocaml/facile/facile.a:${PORTSDIR}/math/facile CONFLICTS= kdeedu-4.[0-6].* diff --git a/science/step/Makefile b/science/step/Makefile index 686df6d71f5f..6ae8a6c1f85c 100644 --- a/science/step/Makefile +++ b/science/step/Makefile @@ -18,7 +18,7 @@ COMMENT= KDE 4 interactive physics simulator LIB_DEPENDS= qalculate.5:${PORTSDIR}/math/libqalculate \ gsl.16:${PORTSDIR}/math/gsl -BUILD_DEPENDS= eigen>=2.0.b3:${PORTSDIR}/math/eigen2 +BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/eigen2.pc:${PORTSDIR}/math/eigen2 CONFLICTS= kdeedu-4.[0-6].* |