diff options
| author | Mathieu Arnold <mat@FreeBSD.org> | 2018-07-09 08:38:13 +0000 |
|---|---|---|
| committer | Mathieu Arnold <mat@FreeBSD.org> | 2018-07-09 08:38:13 +0000 |
| commit | bd0d393e807d8d13fca4ce0ff12e4497385e3e24 (patch) | |
| tree | 7f1fee8acd0d083260359dde119b9a3f0d5ab9c6 | |
| parent | security/openvpn-auth-radius: fix build on 11.2-RELEASE (diff) | |
Fix depends.
This defines BUILD_DEPENDS with itself, and does not have RUN_DEPENDS.
It most probably is bogus, so fix to have proper RUN_DEPENDS.
Sponsored by: Absolight
| -rw-r--r-- | databases/p5-AnyEvent-CouchDB/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/databases/p5-AnyEvent-CouchDB/Makefile b/databases/p5-AnyEvent-CouchDB/Makefile index 1648552b3e06..5d0ab8016772 100644 --- a/databases/p5-AnyEvent-CouchDB/Makefile +++ b/databases/p5-AnyEvent-CouchDB/Makefile @@ -3,7 +3,7 @@ PORTNAME= AnyEvent-CouchDB PORTVERSION= 1.31 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= databases perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -13,7 +13,8 @@ COMMENT= Non-blocking CouchDB client based on jquery.couch.js LICENSE= MIT -BUILD_DEPENDS= couchdb>=0.9.0:databases/couchdb \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= couchdb>=0.9.0:databases/couchdb \ p5-AnyEvent-HTTP>=2.11:www/p5-AnyEvent-HTTP \ p5-CouchDB-View>=0:databases/p5-CouchDB-View \ p5-Data-Dump-Streamer>=0:devel/p5-Data-Dump-Streamer \ @@ -21,7 +22,6 @@ BUILD_DEPENDS= couchdb>=0.9.0:databases/couchdb \ p5-IO-All>=0:devel/p5-IO-All \ p5-JSON>=2:converters/p5-JSON \ p5-Scope-Guard>=0:devel/p5-Scope-Guard -BUILD_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure |
