aboutsummaryrefslogtreecommitdiff
path: root/converters
diff options
context:
space:
mode:
authorDag-Erling Smørgrav <des@FreeBSD.org>2018-10-06 13:06:42 +0000
committerDag-Erling Smørgrav <des@FreeBSD.org>2018-10-06 13:06:42 +0000
commit9dff3523203bdda7ae358dcff3eb5a5ef3e54d33 (patch)
tree0721b637b4bcfc0a8ff2a945bdcb7e68f8993680 /converters
parent2e4b740f2cc9a250b2c6056d8706e15d3bfa9763 (diff)
downloadports-9dff3523203bdda7ae358dcff3eb5a5ef3e54d33.tar.gz
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)
Notes
Notes: svn path=/head/; revision=481365
Diffstat (limited to 'converters')
-rw-r--r--converters/p5-Boulder/Makefile4
-rw-r--r--converters/p5-Convert-TNEF/Makefile4
-rw-r--r--converters/p5-Encode-compat/Makefile4
-rw-r--r--converters/p5-JSON-MaybeXS/Makefile4
-rw-r--r--converters/p5-JSON-XS/Makefile4
-rw-r--r--converters/p5-LaTeXML/Makefile4
-rw-r--r--converters/p5-Number-Nary/Makefile4
-rw-r--r--converters/p5-Sereal/Makefile4
-rw-r--r--converters/p5-Unicode-Map8/Makefile4
-rw-r--r--converters/p5-Unicode-MapUTF8/Makefile4
-rw-r--r--converters/p5-Unicode-Stringprep/Makefile4
-rw-r--r--converters/p5-WAP-wbxml/Makefile4
12 files changed, 24 insertions, 24 deletions
diff --git a/converters/p5-Boulder/Makefile b/converters/p5-Boulder/Makefile
index 3ff64c5d7cad..9dfbcf639dd4 100644
--- a/converters/p5-Boulder/Makefile
+++ b/converters/p5-Boulder/Makefile
@@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5-
MAINTAINER= perl@FreeBSD.org
COMMENT= API for hierarchical tag/value structures
-BUILD_DEPENDS= p5-XML-Parser>=0:textproc/p5-XML-Parser
-RUN_DEPENDS:= ${BUILD_DEPENDS}
+BUILD_DEPENDS= ${RUN_DEPENDS}
+RUN_DEPENDS= p5-XML-Parser>=0:textproc/p5-XML-Parser
USES= perl5
USE_PERL5= configure
diff --git a/converters/p5-Convert-TNEF/Makefile b/converters/p5-Convert-TNEF/Makefile
index f858bae356c7..e1e3d1150dc7 100644
--- a/converters/p5-Convert-TNEF/Makefile
+++ b/converters/p5-Convert-TNEF/Makefile
@@ -14,9 +14,9 @@ COMMENT= Perl module to read TNEF files
LICENSE= ART10 GPLv1+
LICENSE_COMB= dual
-BUILD_DEPENDS= p5-IO-stringy>=0:devel/p5-IO-stringy \
+BUILD_DEPENDS= ${RUN_DEPENDS}
+RUN_DEPENDS= p5-IO-stringy>=0:devel/p5-IO-stringy \
p5-MIME-Tools>=4.109:mail/p5-MIME-Tools
-RUN_DEPENDS:= ${BUILD_DEPENDS}
USES= perl5
USE_PERL5= configure
diff --git a/converters/p5-Encode-compat/Makefile b/converters/p5-Encode-compat/Makefile
index fe83fbb5e6ef..39147114ba24 100644
--- a/converters/p5-Encode-compat/Makefile
+++ b/converters/p5-Encode-compat/Makefile
@@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5-
MAINTAINER= perl@FreeBSD.org
COMMENT= Compatibility interfaces for Encode.pm on Perl < 5.7.1
-BUILD_DEPENDS= p5-Text-Iconv>=0:converters/p5-Text-Iconv
-RUN_DEPENDS:= ${BUILD_DEPENDS}
+BUILD_DEPENDS= ${RUN_DEPENDS}
+RUN_DEPENDS= p5-Text-Iconv>=0:converters/p5-Text-Iconv
USES= perl5
USE_PERL5= configure
diff --git a/converters/p5-JSON-MaybeXS/Makefile b/converters/p5-JSON-MaybeXS/Makefile
index cad612c81bf4..9333fc14c9ff 100644
--- a/converters/p5-JSON-MaybeXS/Makefile
+++ b/converters/p5-JSON-MaybeXS/Makefile
@@ -13,8 +13,8 @@ COMMENT= Use Cpanel::JSON::XS with a fallback to JSON::PP
LICENSE= ART10 GPLv1+
LICENSE_COMB= dual
-BUILD_DEPENDS= p5-Cpanel-JSON-XS>=2.3310:converters/p5-Cpanel-JSON-XS
-RUN_DEPENDS:= ${BUILD_DEPENDS}
+BUILD_DEPENDS= ${RUN_DEPENDS}
+RUN_DEPENDS= p5-Cpanel-JSON-XS>=2.3310:converters/p5-Cpanel-JSON-XS
TEST_DEPENDS= p5-JSON-XS>=0:converters/p5-JSON-XS \
p5-Test-Without-Module>=0.17:devel/p5-Test-Without-Module
diff --git a/converters/p5-JSON-XS/Makefile b/converters/p5-JSON-XS/Makefile
index 425bb40f8f92..a410acc70e14 100644
--- a/converters/p5-JSON-XS/Makefile
+++ b/converters/p5-JSON-XS/Makefile
@@ -13,9 +13,9 @@ COMMENT= JSON serialising/deserialising, done correctly and fast
LICENSE= ART10 GPLv1+
LICENSE_COMB= dual
-BUILD_DEPENDS= p5-Types-Serialiser>=0:devel/p5-Types-Serialiser \
+BUILD_DEPENDS= ${RUN_DEPENDS}
+RUN_DEPENDS= p5-Types-Serialiser>=0:devel/p5-Types-Serialiser \
p5-common-sense>0:devel/p5-common-sense
-RUN_DEPENDS:= ${BUILD_DEPENDS}
USES= perl5
USE_PERL5= configure
diff --git a/converters/p5-LaTeXML/Makefile b/converters/p5-LaTeXML/Makefile
index 9af048e0db58..d666a7492b57 100644
--- a/converters/p5-LaTeXML/Makefile
+++ b/converters/p5-LaTeXML/Makefile
@@ -15,7 +15,8 @@ LICENSE= PD CC0-1.0
LICENSE_COMB= dual
LICENSE_FILE_CC0-1.0= ${WRKSRC}/LICENSE
-BUILD_DEPENDS= p5-Archive-Zip>=0:archivers/p5-Archive-Zip \
+BUILD_DEPENDS= ${RUN_DEPENDS}
+RUN_DEPENDS= p5-Archive-Zip>=0:archivers/p5-Archive-Zip \
p5-JSON-XS>=0:converters/p5-JSON-XS \
p5-Text-Unidecode>=0:converters/p5-Text-Unidecode \
p5-IO-String>=0:devel/p5-IO-String \
@@ -26,7 +27,6 @@ BUILD_DEPENDS= p5-Archive-Zip>=0:archivers/p5-Archive-Zip \
p5-XML-LibXML>=1.62:textproc/p5-XML-LibXML \
p5-XML-LibXSLT>=1.58:textproc/p5-XML-LibXSLT \
p5-libwww>=0:www/p5-libwww
-RUN_DEPENDS:= ${BUILD_DEPENDS}
USES= perl5
USE_PERL5= configure
diff --git a/converters/p5-Number-Nary/Makefile b/converters/p5-Number-Nary/Makefile
index fb2725baa785..94e0c528dae1 100644
--- a/converters/p5-Number-Nary/Makefile
+++ b/converters/p5-Number-Nary/Makefile
@@ -14,10 +14,10 @@ LICENSE= ART10 GPLv1+
LICENSE_COMB= dual
LICENSE_FILE= ${WRKSRC}/LICENSE
-BUILD_DEPENDS= p5-Sub-Exporter>=0:devel/p5-Sub-Exporter \
+BUILD_DEPENDS= ${RUN_DEPENDS}
+RUN_DEPENDS= p5-Sub-Exporter>=0:devel/p5-Sub-Exporter \
p5-List-MoreUtils>=0:lang/p5-List-MoreUtils \
p5-UDCode>=0:devel/p5-UDCode
-RUN_DEPENDS:= ${BUILD_DEPENDS}
USES= perl5
USE_PERL5= configure
diff --git a/converters/p5-Sereal/Makefile b/converters/p5-Sereal/Makefile
index b1b90adaf1dc..c53e8000e335 100644
--- a/converters/p5-Sereal/Makefile
+++ b/converters/p5-Sereal/Makefile
@@ -13,9 +13,9 @@ COMMENT= Perl extension for fast, compact, powerful binary (de-)serialization
LICENSE= ART10 GPLv1+
LICENSE_COMB= dual
-BUILD_DEPENDS= p5-Sereal-Decoder>=${PORTVERSION}:converters/p5-Sereal-Decoder \
+BUILD_DEPENDS= ${RUN_DEPENDS}
+RUN_DEPENDS= p5-Sereal-Decoder>=${PORTVERSION}:converters/p5-Sereal-Decoder \
p5-Sereal-Encoder>=${PORTVERSION}:converters/p5-Sereal-Encoder
-RUN_DEPENDS:= ${BUILD_DEPENDS}
TEST_DEPENDS= p5-Test-Deep>=0:devel/p5-Test-Deep \
p5-Test-LongString>=0:devel/p5-Test-LongString \
p5-Test-Warn>=0:devel/p5-Test-Warn
diff --git a/converters/p5-Unicode-Map8/Makefile b/converters/p5-Unicode-Map8/Makefile
index 0eb29e63cc6c..10bef561e24a 100644
--- a/converters/p5-Unicode-Map8/Makefile
+++ b/converters/p5-Unicode-Map8/Makefile
@@ -14,8 +14,8 @@ COMMENT= Mapping table between 8-bit chars and Unicode
LICENSE= ART10 GPLv1+
LICENSE_COMB= dual
-BUILD_DEPENDS= p5-Unicode-String>=2:converters/p5-Unicode-String
-RUN_DEPENDS:= ${BUILD_DEPENDS}
+BUILD_DEPENDS= ${RUN_DEPENDS}
+RUN_DEPENDS= p5-Unicode-String>=2:converters/p5-Unicode-String
USES= perl5
USE_PERL5= configure
diff --git a/converters/p5-Unicode-MapUTF8/Makefile b/converters/p5-Unicode-MapUTF8/Makefile
index 6086898a750e..a8d9ff65d037 100644
--- a/converters/p5-Unicode-MapUTF8/Makefile
+++ b/converters/p5-Unicode-MapUTF8/Makefile
@@ -11,11 +11,11 @@ PKGNAMEPREFIX= p5-
MAINTAINER= perl@FreeBSD.org
COMMENT= Perl class that implements conversion between arbitrary charsets
-BUILD_DEPENDS= ja-p5-Jcode>=0:japanese/p5-Jcode \
+BUILD_DEPENDS= ${RUN_DEPENDS}
+RUN_DEPENDS= ja-p5-Jcode>=0:japanese/p5-Jcode \
p5-Unicode-Map>=0:converters/p5-Unicode-Map \
p5-Unicode-Map8>=0:converters/p5-Unicode-Map8 \
p5-Unicode-String>=0:converters/p5-Unicode-String
-RUN_DEPENDS:= ${BUILD_DEPENDS}
USES= perl5
USE_PERL5= configure
diff --git a/converters/p5-Unicode-Stringprep/Makefile b/converters/p5-Unicode-Stringprep/Makefile
index 9f4894ad8221..3d6a8d147aaa 100644
--- a/converters/p5-Unicode-Stringprep/Makefile
+++ b/converters/p5-Unicode-Stringprep/Makefile
@@ -14,8 +14,8 @@ COMMENT= Preparation of Internationalized Strings (RFC 3454)
LICENSE= ART10 GPLv1+
LICENSE_COMB= dual
-BUILD_DEPENDS= p5-Unicode-Normalize>=1:textproc/p5-Unicode-Normalize
-RUN_DEPENDS:= ${BUILD_DEPENDS}
+BUILD_DEPENDS= ${RUN_DEPENDS}
+RUN_DEPENDS= p5-Unicode-Normalize>=1:textproc/p5-Unicode-Normalize
TEST_DEPENDS= p5-Test-NoWarnings>=0:devel/p5-Test-NoWarnings \
p5-Test-Pod>=1:devel/p5-Test-Pod \
p5-Test-Pod-Coverage>=0:devel/p5-Test-Pod-Coverage
diff --git a/converters/p5-WAP-wbxml/Makefile b/converters/p5-WAP-wbxml/Makefile
index 8654341667a1..97cbc93cf440 100644
--- a/converters/p5-WAP-wbxml/Makefile
+++ b/converters/p5-WAP-wbxml/Makefile
@@ -14,9 +14,9 @@ COMMENT= Binarization of XML file
LICENSE= ART20
LICENSE_FILE= ${WRKSRC}/LICENSE
-BUILD_DEPENDS= p5-XML-DOM>=0:textproc/p5-XML-DOM \
+BUILD_DEPENDS= ${RUN_DEPENDS}
+RUN_DEPENDS= p5-XML-DOM>=0:textproc/p5-XML-DOM \
p5-I18N-Charset>=0:misc/p5-I18N-Charset
-RUN_DEPENDS:= ${BUILD_DEPENDS}
USES= dos2unix perl5
USE_PERL5= configure