diff options
author | tcberner <tcberner@FreeBSD.org> | 2018-01-03 00:49:24 +0800 |
---|---|---|
committer | tcberner <tcberner@FreeBSD.org> | 2018-01-03 00:49:24 +0800 |
commit | 98f12cd71d8be47f727a159669046065aff7fb2b (patch) | |
tree | fefd75a0b797bfd5f2fbecc832b9a94f740ee983 /biology | |
parent | 2e5f9718524f65806c04f8377358291676d5450b (diff) | |
download | freebsd-ports-gnome-98f12cd71d8be47f727a159669046065aff7fb2b.tar.gz freebsd-ports-gnome-98f12cd71d8be47f727a159669046065aff7fb2b.tar.zst freebsd-ports-gnome-98f12cd71d8be47f727a159669046065aff7fb2b.zip |
New USES=eigen
Usage:
USES=eigen:<version>[,<type>]
version: 2 or 3 (required)
type: build (default), run
For example:
USES=eigen:2,build,run
will add a BUILD- and RUN_DEPENDS on math/eigen2, and
USES=eigen:3
will add a BUILD_DEPENDS on math/eigen3.
* Convert the existing ports to use it
- biology/iqtree: remove run time dependency (seemed not to be needed)
- graphics/movit: remove run time dependency (seemed not to be needed)
- science/avogadro: add run time dependeny (installed cmake file requires it to be present)
Reviewed by: rakuco, mat
Differential Revision: https://reviews.freebsd.org/D13702
Diffstat (limited to 'biology')
-rw-r--r-- | biology/iqtree/Makefile | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/biology/iqtree/Makefile b/biology/iqtree/Makefile index f0216237b428..4fcfd325cd5c 100644 --- a/biology/iqtree/Makefile +++ b/biology/iqtree/Makefile @@ -3,7 +3,7 @@ PORTNAME= iqtree DISTVERSIONPREFIX= v DISTVERSION= 1.6.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= biology MAINTAINER= jrm@FreeBSD.org @@ -16,10 +16,7 @@ BROKEN_aarch64= fails to compile: unrecognized command line option '-msse3' BROKEN_armv6= fails to compile: unrecognized command line options '-m32' and '-msse3' BROKEN_armv7= fails to compile: unrecognized command line options '-m32' and '-msse3' -BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/eigen3.pc:math/eigen3 -RUN_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/eigen3.pc:math/eigen3 - -USES= cmake compiler:openmp +USES= cmake compiler:openmp eigen:3 USE_GITHUB= yes GH_ACCOUNT= Cibiv GH_PROJECT= IQ-TREE |