diff options
author | pawel <pawel@FreeBSD.org> | 2017-07-25 02:26:39 +0800 |
---|---|---|
committer | pawel <pawel@FreeBSD.org> | 2017-07-25 02:26:39 +0800 |
commit | d3fdd453281fea99725466f0b8987cdd9bdfbc99 (patch) | |
tree | bdf679440185c48d2dff5c3a1f8efb02a52dd3d8 /math/rpy/Makefile | |
parent | 7543eae72cafe25f46298f951f7a71adcce4d17b (diff) | |
download | freebsd-ports-gnome-d3fdd453281fea99725466f0b8987cdd9bdfbc99.tar.gz freebsd-ports-gnome-d3fdd453281fea99725466f0b8987cdd9bdfbc99.tar.zst freebsd-ports-gnome-d3fdd453281fea99725466f0b8987cdd9bdfbc99.zip |
After r446199 libR.so has SONAME and was made visible for
consumer ports. Register correct dependency by using LIB_DEPENDS
instead of BUILD|RUN_DEPENDS dance.
math/rkward-kde4:
- Add 2 missing files to pkg-plist also
PR: 219776
Submitted by: myself
Approved by: maintainers timeouts
Diffstat (limited to 'math/rpy/Makefile')
-rw-r--r-- | math/rpy/Makefile | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/math/rpy/Makefile b/math/rpy/Makefile index 0fec8b1e4083..aa2ed74ef1e8 100644 --- a/math/rpy/Makefile +++ b/math/rpy/Makefile @@ -3,7 +3,7 @@ PORTNAME= rpy PORTVERSION= 1.0.3 -PORTREVISION= 35 +PORTREVISION= 36 CATEGORIES= math MASTER_SITES= SF @@ -13,10 +13,9 @@ COMMENT= Python interface to the R Programming Language LICENSE= GPLv2 LGPL21 MPL LICENSE_COMB= dual -BUILD_DEPENDS= ${PYNUMPY} \ - R:math/R -RUN_DEPENDS= ${PYNUMPY} \ - R:math/R +BUILD_DEPENDS= ${PYNUMPY} +LIB_DEPENDS= libR.so:math/R +RUN_DEPENDS= ${PYNUMPY} USES= python USE_PYTHON= distutils autoplist |