diff options
author | des <des@FreeBSD.org> | 2018-10-06 21:06:42 +0800 |
---|---|---|
committer | des <des@FreeBSD.org> | 2018-10-06 21:06:42 +0800 |
commit | 091caf4661b26a5f70d9b8e0409821418f5afdbb (patch) | |
tree | 0721b637b4bcfc0a8ff2a945bdcb7e68f8993680 /astro/p5-Astro-Catalog | |
parent | eb79e9b6a267227492e837fea536cf5c224c7a2d (diff) | |
download | freebsd-ports-gnome-091caf4661b26a5f70d9b8e0409821418f5afdbb.tar.gz freebsd-ports-gnome-091caf4661b26a5f70d9b8e0409821418f5afdbb.tar.zst freebsd-ports-gnome-091caf4661b26a5f70d9b8e0409821418f5afdbb.zip |
Fix every instance of RUN_DEPENDS:=${BUILD_DEPENDS} in p5 ports, except
for where it resulted in a change in output from build-depends-list or
run-depends-list.
Approved by: portmgr (adamw)
Diffstat (limited to 'astro/p5-Astro-Catalog')
-rw-r--r-- | astro/p5-Astro-Catalog/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/astro/p5-Astro-Catalog/Makefile b/astro/p5-Astro-Catalog/Makefile index 2a9a8820cc0e..98475e33738c 100644 --- a/astro/p5-Astro-Catalog/Makefile +++ b/astro/p5-Astro-Catalog/Makefile @@ -13,7 +13,8 @@ COMMENT= Generic stellar catalogue object LICENSE= GPLv3 # p5-Astro-FITS-CFITSIO is a recommended dependency -BUILD_DEPENDS= p5-Astro-Coords>=0.12:astro/p5-Astro-Coords \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Astro-Coords>=0.12:astro/p5-Astro-Coords \ p5-Astro-FITS-CFITSIO>=1.03:astro/p5-Astro-FITS-CFITSIO \ p5-Astro-Flux>=0.01:astro/p5-Astro-Flux \ p5-Astro-Telescope>=0.50:astro/p5-Astro-Telescope \ @@ -23,7 +24,6 @@ BUILD_DEPENDS= p5-Astro-Coords>=0.12:astro/p5-Astro-Coords \ p5-Number-Uncertainty>=0.1:math/p5-Number-Uncertainty \ p5-SOAP-Lite>=0:net/p5-SOAP-Lite \ p5-libwww>=5.53:www/p5-libwww -RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= localbase perl5 |