diff options
author | Dag-Erling Smørgrav <des@FreeBSD.org> | 2018-10-06 13:06:42 +0000 |
---|---|---|
committer | Dag-Erling Smørgrav <des@FreeBSD.org> | 2018-10-06 13:06:42 +0000 |
commit | 9dff3523203bdda7ae358dcff3eb5a5ef3e54d33 (patch) | |
tree | 0721b637b4bcfc0a8ff2a945bdcb7e68f8993680 /russian | |
parent | 2e4b740f2cc9a250b2c6056d8706e15d3bfa9763 (diff) | |
download | freebsd-ports-9dff3523203bdda7ae358dcff3eb5a5ef3e54d33.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 'russian')
-rw-r--r-- | russian/p5-Convert-Cyrillic/Makefile | 4 | ||||
-rw-r--r-- | russian/p5-Text-Hyphen-RU/Makefile | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/russian/p5-Convert-Cyrillic/Makefile b/russian/p5-Convert-Cyrillic/Makefile index ab35c4ac4f83..4f7734e0e690 100644 --- a/russian/p5-Convert-Cyrillic/Makefile +++ b/russian/p5-Convert-Cyrillic/Makefile @@ -12,8 +12,8 @@ DISTNAME= cyrillic-${PORTVERSION} MAINTAINER= pluknet@gmail.com COMMENT= Routines for converting from one Cyrillic charset to another -BUILD_DEPENDS= p5-Unicode-Map8>=0:converters/p5-Unicode-Map8 -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Unicode-Map8>=0:converters/p5-Unicode-Map8 USES= perl5 USE_PERL5= configure diff --git a/russian/p5-Text-Hyphen-RU/Makefile b/russian/p5-Text-Hyphen-RU/Makefile index db9738ea53b6..dc5e7766c739 100644 --- a/russian/p5-Text-Hyphen-RU/Makefile +++ b/russian/p5-Text-Hyphen-RU/Makefile @@ -13,8 +13,8 @@ COMMENT= Determine positions for hyphens inside russian words LICENSE= BSD3CLAUSE -BUILD_DEPENDS= p5-Text-Hyphen>=0:textproc/p5-Text-Hyphen -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Text-Hyphen>=0:textproc/p5-Text-Hyphen USE_PERL5= configure USES= perl5 |