svn commit: r325148 - in head: archivers/p5-Archive-Extract-Libarchive databases/p5-BDB databases/p5-CouchDB-View databases/p5-DBIx-Class-Cursor-Cached databases/p5-DBIx-Safe devel/p5-Any-Moose-Con...
Sunpoet Po-Chuan Hsieh
sunpoet at FreeBSD.org
Wed Aug 21 14:55:55 UTC 2013
Author: sunpoet
Date: Wed Aug 21 14:55:43 2013
New Revision: 325148
URL: http://svnweb.freebsd.org/changeset/ports/325148
Log:
- Use RUN_DEPENDS:=BUILD_DEPENDS
- Add BUILD_DEPENDS
- Cosmetic change
Modified:
head/archivers/p5-Archive-Extract-Libarchive/Makefile
head/databases/p5-BDB/Makefile
head/databases/p5-CouchDB-View/Makefile
head/databases/p5-DBIx-Class-Cursor-Cached/Makefile
head/databases/p5-DBIx-Safe/Makefile
head/devel/p5-Any-Moose-Convert/Makefile
head/devel/p5-B-Hooks-OP-Annotation/Makefile
head/devel/p5-Data-Printer/Makefile
head/devel/p5-DateTime-Format-Oracle/Makefile
head/devel/p5-Devel-CallChecker/Makefile
head/devel/p5-Devel-PackagePath/Makefile
head/devel/p5-File-HomeDir-PathClass/Makefile
head/devel/p5-Google-ProtocolBuffers/Makefile
head/devel/p5-IO-Pty-Easy/Makefile
head/devel/p5-Lexical-Import/Makefile
head/devel/p5-Module-CheckDeps/Makefile
head/devel/p5-MooseX-AuthorizedMethods/Makefile
head/devel/p5-MooseX-MarkAsMethods/Makefile
head/devel/p5-MouseX-Foreign/Makefile
head/devel/p5-MouseX-StrictConstructor/Makefile
head/devel/p5-MouseX-Traits/Makefile
head/devel/p5-POE-Loop-Tk/Makefile
head/devel/p5-PerlIO-Layers/Makefile
head/devel/p5-Sys-Info-Driver-BSD/Makefile
head/devel/p5-Sys-Info/Makefile
head/devel/p5-Test-Exception-LessClever/Makefile
head/devel/p5-Test-Trap/Makefile
head/devel/p5-Thrift-XS/Makefile
head/dns/p5-Net-DNS-TestNS/Makefile
head/ftp/p5-SOAP-Transport-FTP/Makefile
head/graphics/p5-Graph-Writer-GraphViz/Makefile
head/graphics/p5-Image-Base-SVG/Makefile
head/lang/p5-Marpa/Makefile
head/math/p5-Math-Prime-XS/Makefile
head/net-im/p5-SOAP-Transport-JABBER/Makefile
head/net/p5-Net-OpenSSH-Parallel/Makefile
head/science/p5-Geo-Coordinates-Converter-iArea/Makefile
head/textproc/p5-CSS-Packer/Makefile
head/textproc/p5-HTML-Packer/Makefile
head/textproc/p5-JavaScript-Packer/Makefile
head/textproc/p5-Lingua-Ispell/Makefile
head/textproc/p5-SVG-Parser/Makefile
head/textproc/p5-Sphinx-Config/Makefile
head/textproc/p5-Sphinx-Manager/Makefile
head/textproc/p5-Text-Prefix-XS/Makefile
head/www/p5-HTML-Declare/Makefile
head/www/p5-HTTP-Server-Simple-Authen/Makefile
head/www/p5-LWP-Protocol-http10/Makefile
head/www/p5-ModPerl-VersionUtil/Makefile
head/www/p5-Plack-Middleware-ForceEnv/Makefile
head/www/p5-Protocol-SocketIO/Makefile
head/www/p5-Protocol-XMLRPC/Makefile
head/x11-toolkits/p5-Tk-Action/Makefile
head/x11-toolkits/p5-Tk-CursorControl/Makefile
head/x11-toolkits/p5-Tk-Sugar/Makefile
head/x11-toolkits/p5-Tk-ToolBar/Makefile
Modified: head/archivers/p5-Archive-Extract-Libarchive/Makefile
==============================================================================
--- head/archivers/p5-Archive-Extract-Libarchive/Makefile Wed Aug 21 14:52:09 2013 (r325147)
+++ head/archivers/p5-Archive-Extract-Libarchive/Makefile Wed Aug 21 14:55:43 2013 (r325148)
@@ -12,8 +12,7 @@ MAINTAINER= sunpoet at FreeBSD.org
COMMENT= Generic archive extracting mechanism (using libarchive)
BUILD_DEPENDS= p5-Object-Tiny>=0:${PORTSDIR}/devel/p5-Object-Tiny
-RUN_DEPENDS= p5-Object-Tiny>=0:${PORTSDIR}/devel/p5-Object-Tiny
-
+RUN_DEPENDS:= ${BUILD_DEPENDS}
TEST_DEPENDS= p5-File-Slurp>=0:${PORTSDIR}/devel/p5-File-Slurp \
p5-Path-Class>=0:${PORTSDIR}/devel/p5-Path-Class \
p5-Test-Pod>=1.04:${PORTSDIR}/devel/p5-Test-Pod
Modified: head/databases/p5-BDB/Makefile
==============================================================================
--- head/databases/p5-BDB/Makefile Wed Aug 21 14:52:09 2013 (r325147)
+++ head/databases/p5-BDB/Makefile Wed Aug 21 14:55:43 2013 (r325148)
@@ -17,20 +17,19 @@ MAINTAINER= sunpoet at FreeBSD.org
COMMENT= Asynchronous Berkeley DB access
BUILD_DEPENDS= p5-common-sense>=0:${PORTSDIR}/devel/p5-common-sense
-RUN_DEPENDS= p5-common-sense>=0:${PORTSDIR}/devel/p5-common-sense
+RUN_DEPENDS:= ${BUILD_DEPENDS}
PORTSCOUT= skipv:1.801
CFLAGS+= -I${BDB_INCLUDE_DIR}
LDFLAGS+= ${PTHREAD_LIBS}
+USE_BDB= 43+
USE_PERL5= configure
USES= perl5
-USE_BDB= 43+
MAN3= BDB.3
post-patch:
@${REINPLACE_CMD} -e '18 s|-lpthread -ldb|-l${BDB_LIB_NAME} ${PTHREAD_LIBS}|' ${WRKSRC}/Makefile.PL
-# @${REINPLACE_CMD} -e '/RPCCLIENT/d' ${WRKSRC}/BDB.pm
.include <bsd.port.mk>
Modified: head/databases/p5-CouchDB-View/Makefile
==============================================================================
--- head/databases/p5-CouchDB-View/Makefile Wed Aug 21 14:52:09 2013 (r325147)
+++ head/databases/p5-CouchDB-View/Makefile Wed Aug 21 14:55:43 2013 (r325148)
@@ -18,11 +18,7 @@ BUILD_DEPENDS= p5-Data-Dump-Streamer>=0:
p5-JSON-XS>=0:${PORTSDIR}/converters/p5-JSON-XS \
p5-PadWalker>=0:${PORTSDIR}/devel/p5-PadWalker \
p5-URI>=0:${PORTSDIR}/net/p5-URI
-RUN_DEPENDS= p5-Data-Dump-Streamer>=0:${PORTSDIR}/devel/p5-Data-Dump-Streamer \
- p5-JSON-XS>=0:${PORTSDIR}/converters/p5-JSON-XS \
- p5-PadWalker>=0:${PORTSDIR}/devel/p5-PadWalker \
- p5-URI>=0:${PORTSDIR}/net/p5-URI
-
+RUN_DEPENDS:= ${BUILD_DEPENDS}
TEST_DEPENDS= p5-Test-Deep>=0:${PORTSDIR}/devel/p5-Test-Deep
USE_PERL5= configure
Modified: head/databases/p5-DBIx-Class-Cursor-Cached/Makefile
==============================================================================
--- head/databases/p5-DBIx-Class-Cursor-Cached/Makefile Wed Aug 21 14:52:09 2013 (r325147)
+++ head/databases/p5-DBIx-Class-Cursor-Cached/Makefile Wed Aug 21 14:55:43 2013 (r325148)
@@ -18,10 +18,7 @@ COMMENT= Cursor class with built-in cach
BUILD_DEPENDS= p5-Carp-Clan>=6.0:${PORTSDIR}/devel/p5-Carp-Clan \
p5-DBIx-Class>=0.08124:${PORTSDIR}/databases/p5-DBIx-Class \
p5-Digest-SHA1>=0:${PORTSDIR}/security/p5-Digest-SHA1
-RUN_DEPENDS= p5-Carp-Clan>=6.0:${PORTSDIR}/devel/p5-Carp-Clan \
- p5-DBIx-Class>=0.08124:${PORTSDIR}/databases/p5-DBIx-Class \
- p5-Digest-SHA1>=0:${PORTSDIR}/security/p5-Digest-SHA1
-
+RUN_DEPENDS:= ${BUILD_DEPENDS}
TEST_DEPENDS= p5-Cache-Cache>=0:${PORTSDIR}/devel/p5-Cache-Cache \
p5-DBD-SQLite>=0:${PORTSDIR}/databases/p5-DBD-SQLite
Modified: head/databases/p5-DBIx-Safe/Makefile
==============================================================================
--- head/databases/p5-DBIx-Safe/Makefile Wed Aug 21 14:52:09 2013 (r325147)
+++ head/databases/p5-DBIx-Safe/Makefile Wed Aug 21 14:55:43 2013 (r325148)
@@ -17,8 +17,7 @@ COMMENT= Safer access to your database t
BUILD_DEPENDS= p5-DBD-Pg>=1.49:${PORTSDIR}/databases/p5-DBD-Pg \
p5-DBI>=1.490:${PORTSDIR}/databases/p5-DBI
-RUN_DEPENDS= p5-DBD-Pg>=1.49:${PORTSDIR}/databases/p5-DBD-Pg \
- p5-DBI>=1.490:${PORTSDIR}/databases/p5-DBI
+RUN_DEPENDS:= ${BUILD_DEPENDS}
USE_PERL5= configure
USES= perl5
Modified: head/devel/p5-Any-Moose-Convert/Makefile
==============================================================================
--- head/devel/p5-Any-Moose-Convert/Makefile Wed Aug 21 14:52:09 2013 (r325147)
+++ head/devel/p5-Any-Moose-Convert/Makefile Wed Aug 21 14:55:43 2013 (r325148)
@@ -16,8 +16,7 @@ MAINTAINER= sunpoet at FreeBSD.org
COMMENT= Convert Moose libraries to Mouse ones, or vice versa
BUILD_DEPENDS= p5-PerlIO-Util>=0:${PORTSDIR}/devel/p5-PerlIO-Util
-RUN_DEPENDS= p5-PerlIO-Util>=0:${PORTSDIR}/devel/p5-PerlIO-Util
-
+RUN_DEPENDS:= ${BUILD_DEPENDS}
TEST_DEPENDS= p5-Moose>=0.90:${PORTSDIR}/devel/p5-Moose \
p5-Mouse>=0.40:${PORTSDIR}/devel/p5-Mouse
Modified: head/devel/p5-B-Hooks-OP-Annotation/Makefile
==============================================================================
--- head/devel/p5-B-Hooks-OP-Annotation/Makefile Wed Aug 21 14:52:09 2013 (r325147)
+++ head/devel/p5-B-Hooks-OP-Annotation/Makefile Wed Aug 21 14:55:43 2013 (r325148)
@@ -15,7 +15,7 @@ MAINTAINER= sunpoet at FreeBSD.org
COMMENT= Annotate and delegate hooked OPs
BUILD_DEPENDS= p5-ExtUtils-Depends>=0.304:${PORTSDIR}/devel/p5-ExtUtils-Depends
-RUN_DEPENDS= p5-ExtUtils-Depends>=0.304:${PORTSDIR}/devel/p5-ExtUtils-Depends
+RUN_DEPENDS:= ${BUILD_DEPENDS}
USE_PERL5= configure
USES= perl5
Modified: head/devel/p5-Data-Printer/Makefile
==============================================================================
--- head/devel/p5-Data-Printer/Makefile Wed Aug 21 14:52:09 2013 (r325147)
+++ head/devel/p5-Data-Printer/Makefile Wed Aug 21 14:55:43 2013 (r325148)
@@ -20,12 +20,7 @@ BUILD_DEPENDS= p5-Clone>=0:${PORTSDIR}/d
p5-Hash-FieldHash>=0:${PORTSDIR}/devel/p5-Hash-FieldHash \
p5-Moose>=2:${PORTSDIR}/devel/p5-Moose \
p5-Sort-Naturally>=0:${PORTSDIR}/textproc/p5-Sort-Naturally
-RUN_DEPENDS= p5-Clone>=0:${PORTSDIR}/devel/p5-Clone \
- p5-File-HomeDir>=0.91:${PORTSDIR}/devel/p5-File-HomeDir \
- p5-Hash-FieldHash>=0:${PORTSDIR}/devel/p5-Hash-FieldHash \
- p5-Moose>=2:${PORTSDIR}/devel/p5-Moose \
- p5-Sort-Naturally>=0:${PORTSDIR}/textproc/p5-Sort-Naturally
-
+RUN_DEPENDS:= ${BUILD_DEPENDS}
TEST_DEPENDS= p5-Capture-Tiny>=0:${PORTSDIR}/devel/p5-Capture-Tiny \
p5-DBI>=0:${PORTSDIR}/databases/p5-DBI \
p5-IO-Pty-Easy>=0:${PORTSDIR}/devel/p5-IO-Pty-Easy \
Modified: head/devel/p5-DateTime-Format-Oracle/Makefile
==============================================================================
--- head/devel/p5-DateTime-Format-Oracle/Makefile Wed Aug 21 14:52:09 2013 (r325147)
+++ head/devel/p5-DateTime-Format-Oracle/Makefile Wed Aug 21 14:55:43 2013 (r325148)
@@ -17,9 +17,7 @@ COMMENT= Parse and format Oracle dates a
BUILD_DEPENDS= p5-Convert-NLS_DATE_FORMAT>=0.03:${PORTSDIR}/converters/p5-Convert-NLS_DATE_FORMAT \
p5-DateTime>=0:${PORTSDIR}/devel/p5-DateTime \
p5-DateTime-Format-Builder>=0:${PORTSDIR}/devel/p5-DateTime-Format-Builder
-RUN_DEPENDS= p5-Convert-NLS_DATE_FORMAT>=0.03:${PORTSDIR}/converters/p5-Convert-NLS_DATE_FORMAT \
- p5-DateTime>=0:${PORTSDIR}/devel/p5-DateTime \
- p5-DateTime-Format-Builder>=0:${PORTSDIR}/devel/p5-DateTime-Format-Builder
+RUN_DEPENDS:= ${BUILD_DEPENDS}
USE_PERL5= configure
USES= perl5
Modified: head/devel/p5-Devel-CallChecker/Makefile
==============================================================================
--- head/devel/p5-Devel-CallChecker/Makefile Wed Aug 21 14:52:09 2013 (r325147)
+++ head/devel/p5-Devel-CallChecker/Makefile Wed Aug 21 14:55:43 2013 (r325148)
@@ -15,8 +15,7 @@ MAINTAINER= sunpoet at FreeBSD.org
COMMENT= Custom op checking attached to subroutines
BUILD_DEPENDS= p5-DynaLoader-Functions>=0.001:${PORTSDIR}/devel/p5-DynaLoader-Functions
-RUN_DEPENDS= p5-DynaLoader-Functions>=0.001:${PORTSDIR}/devel/p5-DynaLoader-Functions
-
+RUN_DEPENDS:= ${BUILD_DEPENDS}
TEST_DEPENDS= p5-Test-Pod>=1:${PORTSDIR}/devel/p5-Test-Pod \
p5-Test-Pod-Coverage>=0:${PORTSDIR}/devel/p5-Test-Pod-Coverage
Modified: head/devel/p5-Devel-PackagePath/Makefile
==============================================================================
--- head/devel/p5-Devel-PackagePath/Makefile Wed Aug 21 14:52:09 2013 (r325147)
+++ head/devel/p5-Devel-PackagePath/Makefile Wed Aug 21 14:55:43 2013 (r325148)
@@ -14,8 +14,9 @@ PKGNAMEPREFIX= p5-
MAINTAINER= sunpoet at FreeBSD.org
COMMENT= Inspect and manipulate a Path based on a Package name
-RUN_DEPENDS= p5-Moose>=0.64:${PORTSDIR}/devel/p5-Moose \
+BUILD_DEPENDS= p5-Moose>=0.64:${PORTSDIR}/devel/p5-Moose \
p5-MooseX-Types-Path-Class>=0.04:${PORTSDIR}/devel/p5-MooseX-Types-Path-Class
+RUN_DEPENDS:= ${BUILD_DEPENDS}
USE_PERL5= configure
USES= perl5
Modified: head/devel/p5-File-HomeDir-PathClass/Makefile
==============================================================================
--- head/devel/p5-File-HomeDir-PathClass/Makefile Wed Aug 21 14:52:09 2013 (r325147)
+++ head/devel/p5-File-HomeDir-PathClass/Makefile Wed Aug 21 14:55:43 2013 (r325148)
@@ -18,9 +18,7 @@ COMMENT= File::HomeDir returning Path::C
BUILD_DEPENDS= p5-File-HomeDir>=0.93:${PORTSDIR}/devel/p5-File-HomeDir \
p5-Path-Class>=0:${PORTSDIR}/devel/p5-Path-Class \
p5-Sub-Exporter>=0:${PORTSDIR}/devel/p5-Sub-Exporter
-RUN_DEPENDS= p5-File-HomeDir>=0.93:${PORTSDIR}/devel/p5-File-HomeDir \
- p5-Path-Class>=0:${PORTSDIR}/devel/p5-Path-Class \
- p5-Sub-Exporter>=0:${PORTSDIR}/devel/p5-Sub-Exporter
+RUN_DEPENDS:= ${BUILD_DEPENDS}
USE_PERL5= modbuild
USES= perl5
Modified: head/devel/p5-Google-ProtocolBuffers/Makefile
==============================================================================
--- head/devel/p5-Google-ProtocolBuffers/Makefile Wed Aug 21 14:52:09 2013 (r325147)
+++ head/devel/p5-Google-ProtocolBuffers/Makefile Wed Aug 21 14:55:43 2013 (r325148)
@@ -14,9 +14,10 @@ PKGNAMEPREFIX= p5-
MAINTAINER= sunpoet at FreeBSD.org
COMMENT= Simple interface to Google Protocol Buffers
-RUN_DEPENDS= p5-Class-Accessor>=0:${PORTSDIR}/devel/p5-Class-Accessor \
+BUILD_DEPENDS= p5-Class-Accessor>=0:${PORTSDIR}/devel/p5-Class-Accessor \
p5-Math-BigInt>=0:${PORTSDIR}/math/p5-Math-BigInt \
p5-Parse-RecDescent>=1.94:${PORTSDIR}/devel/p5-Parse-RecDescent
+RUN_DEPENDS:= ${BUILD_DEPENDS}
USE_PERL5= configure
USES= perl5
Modified: head/devel/p5-IO-Pty-Easy/Makefile
==============================================================================
--- head/devel/p5-IO-Pty-Easy/Makefile Wed Aug 21 14:52:09 2013 (r325147)
+++ head/devel/p5-IO-Pty-Easy/Makefile Wed Aug 21 14:55:43 2013 (r325148)
@@ -15,7 +15,7 @@ MAINTAINER= sunpoet at FreeBSD.org
COMMENT= Easy interface to IO::Pty
BUILD_DEPENDS= p5-IO-Tty>=0:${PORTSDIR}/devel/p5-IO-Tty
-RUN_DEPENDS= p5-IO-Tty>=0:${PORTSDIR}/devel/p5-IO-Tty
+RUN_DEPENDS:= ${BUILD_DEPENDS}
USE_PERL5= configure
USES= perl5
Modified: head/devel/p5-Lexical-Import/Makefile
==============================================================================
--- head/devel/p5-Lexical-Import/Makefile Wed Aug 21 14:52:09 2013 (r325147)
+++ head/devel/p5-Lexical-Import/Makefile Wed Aug 21 14:55:43 2013 (r325148)
@@ -17,10 +17,7 @@ COMMENT= Clean imports from package-expo
BUILD_DEPENDS= p5-Lexical-Var>=0.006:${PORTSDIR}/devel/p5-Lexical-Var \
p5-Module-Runtime>=0.011:${PORTSDIR}/devel/p5-Module-Runtime \
p5-Params-Classify>=0:${PORTSDIR}/devel/p5-Params-Classify
-RUN_DEPENDS= p5-Lexical-Var>=0.006:${PORTSDIR}/devel/p5-Lexical-Var \
- p5-Module-Runtime>=0.011:${PORTSDIR}/devel/p5-Module-Runtime \
- p5-Params-Classify>=0:${PORTSDIR}/devel/p5-Params-Classify
-
+RUN_DEPENDS:= ${BUILD_DEPENDS}
TEST_DEPENDS= p5-Test-Pod>=1:${PORTSDIR}/devel/p5-Test-Pod \
p5-Test-Pod-Coverage>=0:${PORTSDIR}/devel/p5-Test-Pod-Coverage
Modified: head/devel/p5-Module-CheckDeps/Makefile
==============================================================================
--- head/devel/p5-Module-CheckDeps/Makefile Wed Aug 21 14:52:09 2013 (r325147)
+++ head/devel/p5-Module-CheckDeps/Makefile Wed Aug 21 14:55:43 2013 (r325148)
@@ -15,7 +15,8 @@ PKGNAMEPREFIX= p5-
MAINTAINER= sunpoet at FreeBSD.org
COMMENT= Very simple dependencies checker for Perl code
-RUN_DEPENDS= p5-PPI>=0:${PORTSDIR}/textproc/p5-PPI
+BUILD_DEPENDS= p5-PPI>=0:${PORTSDIR}/textproc/p5-PPI
+RUN_DEPENDS:= ${BUILD_DEPENDS}
USE_PERL5= configure
USES= perl5
Modified: head/devel/p5-MooseX-AuthorizedMethods/Makefile
==============================================================================
--- head/devel/p5-MooseX-AuthorizedMethods/Makefile Wed Aug 21 14:52:09 2013 (r325147)
+++ head/devel/p5-MooseX-AuthorizedMethods/Makefile Wed Aug 21 14:55:43 2013 (r325148)
@@ -19,8 +19,7 @@ LICENSE_COMB= dual
BUILD_DEPENDS= p5-Moose>=1.21:${PORTSDIR}/devel/p5-Moose \
p5-aliased>=0:${PORTSDIR}/devel/p5-aliased
-RUN_DEPENDS= p5-Moose>=1.21:${PORTSDIR}/devel/p5-Moose \
- p5-aliased>=0:${PORTSDIR}/devel/p5-aliased
+RUN_DEPENDS:= ${BUILD_DEPENDS}
USE_PERL5= configure
USES= perl5
Modified: head/devel/p5-MooseX-MarkAsMethods/Makefile
==============================================================================
--- head/devel/p5-MooseX-MarkAsMethods/Makefile Wed Aug 21 14:52:09 2013 (r325147)
+++ head/devel/p5-MooseX-MarkAsMethods/Makefile Wed Aug 21 14:55:43 2013 (r325148)
@@ -17,9 +17,7 @@ COMMENT= Mark overload code symbols as m
BUILD_DEPENDS= p5-B-Hooks-EndOfScope>=0:${PORTSDIR}/devel/p5-B-Hooks-EndOfScope \
p5-Moose>=0.94:${PORTSDIR}/devel/p5-Moose \
p5-namespace-autoclean>=0.12:${PORTSDIR}/devel/p5-namespace-autoclean
-RUN_DEPENDS= p5-B-Hooks-EndOfScope>=0:${PORTSDIR}/devel/p5-B-Hooks-EndOfScope \
- p5-Moose>=0.94:${PORTSDIR}/devel/p5-Moose \
- p5-namespace-autoclean>=0.12:${PORTSDIR}/devel/p5-namespace-autoclean
+RUN_DEPENDS:= ${BUILD_DEPENDS}
USE_PERL5= configure
USES= perl5
Modified: head/devel/p5-MouseX-Foreign/Makefile
==============================================================================
--- head/devel/p5-MouseX-Foreign/Makefile Wed Aug 21 14:52:09 2013 (r325147)
+++ head/devel/p5-MouseX-Foreign/Makefile Wed Aug 21 14:55:43 2013 (r325148)
@@ -16,9 +16,7 @@ COMMENT= Extends non-Mouse classes as we
BUILD_DEPENDS= p5-Any-Moose>=0.15:${PORTSDIR}/devel/p5-Any-Moose \
p5-Mouse>=0.77:${PORTSDIR}/devel/p5-Mouse
-RUN_DEPENDS= p5-Any-Moose>=0.15:${PORTSDIR}/devel/p5-Any-Moose \
- p5-Mouse>=0.77:${PORTSDIR}/devel/p5-Mouse
-
+RUN_DEPENDS:= ${BUILD_DEPENDS}
TEST_DEPENDS= p5-Test-Exception>=0:${PORTSDIR}/devel/p5-Test-Exception \
p5-Test-Requires>=0:${PORTSDIR}/devel/p5-Test-Requires
Modified: head/devel/p5-MouseX-StrictConstructor/Makefile
==============================================================================
--- head/devel/p5-MouseX-StrictConstructor/Makefile Wed Aug 21 14:52:09 2013 (r325147)
+++ head/devel/p5-MouseX-StrictConstructor/Makefile Wed Aug 21 14:55:43 2013 (r325148)
@@ -16,7 +16,7 @@ MAINTAINER= sunpoet at FreeBSD.org
COMMENT= Make your object constructors blow up on unknown attributes
BUILD_DEPENDS= p5-Mouse>=0.62:${PORTSDIR}/devel/p5-Mouse
-RUN_DEPENDS= p5-Mouse>=0.62:${PORTSDIR}/devel/p5-Mouse
+RUN_DEPENDS:= ${BUILD_DEPENDS}
USE_PERL5= configure
USES= perl5
Modified: head/devel/p5-MouseX-Traits/Makefile
==============================================================================
--- head/devel/p5-MouseX-Traits/Makefile Wed Aug 21 14:52:09 2013 (r325147)
+++ head/devel/p5-MouseX-Traits/Makefile Wed Aug 21 14:55:43 2013 (r325148)
@@ -15,7 +15,8 @@ PKGNAMEPREFIX= p5-
MAINTAINER= sunpoet at FreeBSD.org
COMMENT= Automatically apply roles at object creation time
-RUN_DEPENDS= p5-Mouse>=0.81:${PORTSDIR}/devel/p5-Mouse
+BUILD_DEPENDS= p5-Mouse>=0.81:${PORTSDIR}/devel/p5-Mouse
+RUN_DEPENDS:= ${BUILD_DEPENDS}
TEST_DEPENDS= p5-Test-Exception>=0:${PORTSDIR}/devel/p5-Test-Exception
USE_PERL5= configure
Modified: head/devel/p5-POE-Loop-Tk/Makefile
==============================================================================
--- head/devel/p5-POE-Loop-Tk/Makefile Wed Aug 21 14:52:09 2013 (r325147)
+++ head/devel/p5-POE-Loop-Tk/Makefile Wed Aug 21 14:55:43 2013 (r325148)
@@ -17,8 +17,7 @@ COMMENT= A bridge that allows POE to be
BUILD_DEPENDS= p5-POE>=1.289:${PORTSDIR}/devel/p5-POE \
p5-Tk>=804.028:${PORTSDIR}/x11-toolkits/p5-Tk
-RUN_DEPENDS= p5-POE>=1.289:${PORTSDIR}/devel/p5-POE \
- p5-Tk>=804.028:${PORTSDIR}/x11-toolkits/p5-Tk
+RUN_DEPENDS:= ${BUILD_DEPENDS}
USE_PERL5= configure
USES= perl5
Modified: head/devel/p5-PerlIO-Layers/Makefile
==============================================================================
--- head/devel/p5-PerlIO-Layers/Makefile Wed Aug 21 14:52:09 2013 (r325147)
+++ head/devel/p5-PerlIO-Layers/Makefile Wed Aug 21 14:55:43 2013 (r325148)
@@ -18,7 +18,7 @@ LICENSE= ART10 GPLv1
LICENSE_COMB= dual
BUILD_DEPENDS= p5-List-MoreUtils>=0:${PORTSDIR}/lang/p5-List-MoreUtils
-RUN_DEPENDS= p5-List-MoreUtils>=0:${PORTSDIR}/lang/p5-List-MoreUtils
+RUN_DEPENDS:= ${BUILD_DEPENDS}
USE_PERL5= modbuild
USES= perl5
Modified: head/devel/p5-Sys-Info-Driver-BSD/Makefile
==============================================================================
--- head/devel/p5-Sys-Info-Driver-BSD/Makefile Wed Aug 21 14:52:09 2013 (r325147)
+++ head/devel/p5-Sys-Info-Driver-BSD/Makefile Wed Aug 21 14:55:43 2013 (r325148)
@@ -18,10 +18,7 @@ COMMENT= BSD driver for Sys::Info
BUILD_DEPENDS= p5-BSD-Sysctl>=0.08:${PORTSDIR}/sysutils/p5-BSD-Sysctl \
p5-Sys-Info-Base>=${PORTVERSION}:${PORTSDIR}/devel/p5-Sys-Info-Base \
p5-Unix-Processors>=0:${PORTSDIR}/sysutils/p5-Unix-Processors
-RUN_DEPENDS= p5-BSD-Sysctl>=0.08:${PORTSDIR}/sysutils/p5-BSD-Sysctl \
- p5-Sys-Info-Base>=${PORTVERSION}:${PORTSDIR}/devel/p5-Sys-Info-Base \
- p5-Unix-Processors>=0:${PORTSDIR}/sysutils/p5-Unix-Processors
-
+RUN_DEPENDS:= ${BUILD_DEPENDS}
TEST_DEPENDS= p5-Test-Pod>=0:${PORTSDIR}/devel/p5-Test-Pod \
p5-Test-Pod-Coverage>=0:${PORTSDIR}/devel/p5-Test-Pod-Coverage \
p5-Test-Sys-Info>=0.20:${PORTSDIR}/devel/p5-Test-Sys-Info
Modified: head/devel/p5-Sys-Info/Makefile
==============================================================================
--- head/devel/p5-Sys-Info/Makefile Wed Aug 21 14:52:09 2013 (r325147)
+++ head/devel/p5-Sys-Info/Makefile Wed Aug 21 14:55:43 2013 (r325148)
@@ -16,9 +16,7 @@ COMMENT= Fetch information from the host
BUILD_DEPENDS= p5-Sys-Info-Base>=${PORTVERSION}:${PORTSDIR}/devel/p5-Sys-Info-Base \
p5-Sys-Info-Driver-BSD>=${PORTVERSION}:${PORTSDIR}/devel/p5-Sys-Info-Driver-BSD
-RUN_DEPENDS= p5-Sys-Info-Base>=${PORTVERSION}:${PORTSDIR}/devel/p5-Sys-Info-Base \
- p5-Sys-Info-Driver-BSD>=${PORTVERSION}:${PORTSDIR}/devel/p5-Sys-Info-Driver-BSD
-
+RUN_DEPENDS:= ${BUILD_DEPENDS}
TEST_DEPENDS= p5-Sys-Info-Driver-BSD>=0.20:${PORTSDIR}/devel/p5-Test-Sys-Info \
p5-Test-Pod>=0:${PORTSDIR}/devel/p5-Test-Pod \
p5-Test-Pod-Coverage>=0:${PORTSDIR}/devel/p5-Test-Pod-Coverage
Modified: head/devel/p5-Test-Exception-LessClever/Makefile
==============================================================================
--- head/devel/p5-Test-Exception-LessClever/Makefile Wed Aug 21 14:52:09 2013 (r325147)
+++ head/devel/p5-Test-Exception-LessClever/Makefile Wed Aug 21 14:55:43 2013 (r325148)
@@ -15,7 +15,7 @@ MAINTAINER= sunpoet at FreeBSD.org
COMMENT= Test::Exception simplified
BUILD_DEPENDS= p5-Mock-Quick>=1.100:${PORTSDIR}/devel/p5-Mock-Quick
-RUN_DEPENDS= p5-Mock-Quick>=1.100:${PORTSDIR}/devel/p5-Mock-Quick
+RUN_DEPENDS:= ${BUILD_DEPENDS}
USE_PERL5= modbuild
USES= perl5
Modified: head/devel/p5-Test-Trap/Makefile
==============================================================================
--- head/devel/p5-Test-Trap/Makefile Wed Aug 21 14:52:09 2013 (r325147)
+++ head/devel/p5-Test-Trap/Makefile Wed Aug 21 14:55:43 2013 (r325148)
@@ -16,8 +16,7 @@ MAINTAINER= sunpoet at FreeBSD.org
COMMENT= Trap exit codes, exceptions, output, etc
BUILD_DEPENDS= p5-Data-Dump>=0:${PORTSDIR}/devel/p5-Data-Dump
-RUN_DEPENDS= p5-Data-Dump>=0:${PORTSDIR}/devel/p5-Data-Dump
-
+RUN_DEPENDS:= ${BUILD_DEPENDS}
TEST_DEPENDS= p5-Test-Tester>=0.10.7:${PORTSDIR}/devel/p5-Test-Tester
USE_PERL5= configure
Modified: head/devel/p5-Thrift-XS/Makefile
==============================================================================
--- head/devel/p5-Thrift-XS/Makefile Wed Aug 21 14:52:09 2013 (r325147)
+++ head/devel/p5-Thrift-XS/Makefile Wed Aug 21 14:55:43 2013 (r325148)
@@ -19,11 +19,7 @@ BUILD_DEPENDS= p5-Bit-Vector>=0:${PORTSD
p5-HTTP-Message>=0:${PORTSDIR}/www/p5-HTTP-Message \
p5-IO-String>=0:${PORTSDIR}/devel/p5-IO-String \
p5-libwww>=0:${PORTSDIR}/www/p5-libwww
-RUN_DEPENDS= p5-Bit-Vector>=0:${PORTSDIR}/math/p5-Bit-Vector \
- p5-HTTP-Message>=0:${PORTSDIR}/www/p5-HTTP-Message \
- p5-IO-String>=0:${PORTSDIR}/devel/p5-IO-String \
- p5-libwww>=0:${PORTSDIR}/www/p5-libwww
-
+RUN_DEPENDS:= ${BUILD_DEPENDS}
TEST_DEPENDS= p5-Proc-ProcessTable>=0:${PORTSDIR}/devel/p5-Proc-ProcessTable \
p5-Test-BinaryData>=0:${PORTSDIR}/devel/p5-Test-BinaryData \
p5-Test-Pod>=1.14:${PORTSDIR}/devel/p5-Test-Pod \
Modified: head/dns/p5-Net-DNS-TestNS/Makefile
==============================================================================
--- head/dns/p5-Net-DNS-TestNS/Makefile Wed Aug 21 14:52:09 2013 (r325147)
+++ head/dns/p5-Net-DNS-TestNS/Makefile Wed Aug 21 14:55:43 2013 (r325148)
@@ -18,8 +18,7 @@ COMMENT= Perl extension for simulating s
BUILD_DEPENDS= p5-Net-DNS>=0.64:${PORTSDIR}/dns/p5-Net-DNS \
p5-XML-LibXML>=1.53:${PORTSDIR}/textproc/p5-XML-LibXML
-RUN_DEPENDS= p5-Net-DNS>=0.64:${PORTSDIR}/dns/p5-Net-DNS \
- p5-XML-LibXML>=1.53:${PORTSDIR}/textproc/p5-XML-LibXML
+RUN_DEPENDS:= ${BUILD_DEPENDS}
USE_PERL5= configure
USES= perl5
Modified: head/ftp/p5-SOAP-Transport-FTP/Makefile
==============================================================================
--- head/ftp/p5-SOAP-Transport-FTP/Makefile Wed Aug 21 14:52:09 2013 (r325147)
+++ head/ftp/p5-SOAP-Transport-FTP/Makefile Wed Aug 21 14:55:43 2013 (r325148)
@@ -15,7 +15,7 @@ MAINTAINER= sunpoet at FreeBSD.org
COMMENT= FTP Client support for SOAP::Lite
BUILD_DEPENDS= p5-SOAP-Lite>=0.711:${PORTSDIR}/net/p5-SOAP-Lite
-RUN_DEPENDS= p5-SOAP-Lite>=0.711:${PORTSDIR}/net/p5-SOAP-Lite
+RUN_DEPENDS:= ${BUILD_DEPENDS}
USE_PERL5= configure
USES= perl5
Modified: head/graphics/p5-Graph-Writer-GraphViz/Makefile
==============================================================================
--- head/graphics/p5-Graph-Writer-GraphViz/Makefile Wed Aug 21 14:52:09 2013 (r325147)
+++ head/graphics/p5-Graph-Writer-GraphViz/Makefile Wed Aug 21 14:55:43 2013 (r325148)
@@ -19,10 +19,7 @@ BUILD_DEPENDS= p5-Graph>=0.54:${PORTSDIR
p5-Graph-ReadWrite>=0:${PORTSDIR}/graphics/p5-Graph-ReadWrite \
p5-GraphViz>=2.02:${PORTSDIR}/graphics/p5-GraphViz \
p5-IO-All>=0.30:${PORTSDIR}/devel/p5-IO-All
-RUN_DEPENDS= p5-Graph>=0.54:${PORTSDIR}/math/p5-Graph \
- p5-Graph-ReadWrite>=0:${PORTSDIR}/graphics/p5-Graph-ReadWrite \
- p5-GraphViz>=2.02:${PORTSDIR}/graphics/p5-GraphViz \
- p5-IO-All>=0.30:${PORTSDIR}/devel/p5-IO-All
+RUN_DEPENDS:= ${BUILD_DEPENDS}
USE_PERL5= configure
USES= perl5
Modified: head/graphics/p5-Image-Base-SVG/Makefile
==============================================================================
--- head/graphics/p5-Image-Base-SVG/Makefile Wed Aug 21 14:52:09 2013 (r325147)
+++ head/graphics/p5-Image-Base-SVG/Makefile Wed Aug 21 14:55:43 2013 (r325148)
@@ -17,9 +17,7 @@ COMMENT= SVG image file output
BUILD_DEPENDS= p5-Image-Base>=0:${PORTSDIR}/graphics/p5-Image-Base \
p5-SVG>=2.38:${PORTSDIR}/textproc/p5-SVG \
p5-SVG-Parser>=0:${PORTSDIR}/textproc/p5-SVG-Parser
-RUN_DEPENDS= p5-Image-Base>=0:${PORTSDIR}/graphics/p5-Image-Base \
- p5-SVG>=2.38:${PORTSDIR}/textproc/p5-SVG \
- p5-SVG-Parser>=0:${PORTSDIR}/textproc/p5-SVG-Parser
+RUN_DEPENDS:= ${BUILD_DEPENDS}
USE_PERL5= configure
USES= perl5
Modified: head/lang/p5-Marpa/Makefile
==============================================================================
--- head/lang/p5-Marpa/Makefile Wed Aug 21 14:52:09 2013 (r325147)
+++ head/lang/p5-Marpa/Makefile Wed Aug 21 14:55:43 2013 (r325148)
@@ -18,8 +18,7 @@ COMMENT= Parse any Language You Can Desc
BUILD_DEPENDS= p5-HTML-Parser>=3.64:${PORTSDIR}/www/p5-HTML-Parser \
p5-PPI>=1.206:${PORTSDIR}/textproc/p5-PPI
-RUN_DEPENDS= p5-HTML-Parser>=3.64:${PORTSDIR}/www/p5-HTML-Parser \
- p5-PPI>=1.206:${PORTSDIR}/textproc/p5-PPI
+RUN_DEPENDS:= ${BUILD_DEPENDS}
USE_PERL5= configure
USES= perl5
Modified: head/math/p5-Math-Prime-XS/Makefile
==============================================================================
--- head/math/p5-Math-Prime-XS/Makefile Wed Aug 21 14:52:09 2013 (r325147)
+++ head/math/p5-Math-Prime-XS/Makefile Wed Aug 21 14:55:43 2013 (r325148)
@@ -17,9 +17,7 @@ COMMENT= Detect and calculate prime numb
BUILD_DEPENDS= p5-Params-Validate>=0:${PORTSDIR}/devel/p5-Params-Validate \
p5-boolean>=0:${PORTSDIR}/devel/p5-boolean
-RUN_DEPENDS= p5-Params-Validate>=0:${PORTSDIR}/devel/p5-Params-Validate \
- p5-boolean>=0:${PORTSDIR}/devel/p5-boolean
-
+RUN_DEPENDS:= ${BUILD_DEPENDS}
TEST_DEPENDS= p5-Test-Pod>=1.14:${PORTSDIR}/devel/p5-Test-Pod \
p5-Test-Pod-Coverage>=1.04:${PORTSDIR}/devel/p5-Test-Pod-Coverage
Modified: head/net-im/p5-SOAP-Transport-JABBER/Makefile
==============================================================================
--- head/net-im/p5-SOAP-Transport-JABBER/Makefile Wed Aug 21 14:52:09 2013 (r325147)
+++ head/net-im/p5-SOAP-Transport-JABBER/Makefile Wed Aug 21 14:55:43 2013 (r325148)
@@ -16,8 +16,7 @@ COMMENT= A Jabber-based transport backen
BUILD_DEPENDS= p5-Net-Jabber>=0:${PORTSDIR}/net-im/p5-Net-Jabber \
p5-SOAP-Lite>=0.711:${PORTSDIR}/net/p5-SOAP-Lite
-RUN_DEPENDS= p5-Net-Jabber>=0:${PORTSDIR}/net-im/p5-Net-Jabber \
- p5-SOAP-Lite>=0.711:${PORTSDIR}/net/p5-SOAP-Lite
+RUN_DEPENDS:= ${BUILD_DEPENDS}
USE_PERL5= configure
USES= perl5
Modified: head/net/p5-Net-OpenSSH-Parallel/Makefile
==============================================================================
--- head/net/p5-Net-OpenSSH-Parallel/Makefile Wed Aug 21 14:52:09 2013 (r325147)
+++ head/net/p5-Net-OpenSSH-Parallel/Makefile Wed Aug 21 14:55:43 2013 (r325148)
@@ -18,7 +18,7 @@ LICENSE= ART10 GPLv1
LICENSE_COMB= dual
BUILD_DEPENDS= p5-Net-OpenSSH>=0.39:${PORTSDIR}/net/p5-Net-OpenSSH
-RUN_DEPENDS= p5-Net-OpenSSH>=0.39:${PORTSDIR}/net/p5-Net-OpenSSH
+RUN_DEPENDS:= ${BUILD_DEPENDS}
USE_PERL5= configure
USES= perl5
Modified: head/science/p5-Geo-Coordinates-Converter-iArea/Makefile
==============================================================================
--- head/science/p5-Geo-Coordinates-Converter-iArea/Makefile Wed Aug 21 14:52:09 2013 (r325147)
+++ head/science/p5-Geo-Coordinates-Converter-iArea/Makefile Wed Aug 21 14:55:43 2013 (r325148)
@@ -14,9 +14,10 @@ PKGNAMEPREFIX= p5-
MAINTAINER= sunpoet at FreeBSD.org
COMMENT= Some utility functions around iArea
-RUN_DEPENDS= p5-CDB_File>=0.96:${PORTSDIR}/databases/p5-CDB_File \
+BUILD_DEPENDS= p5-CDB_File>=0.96:${PORTSDIR}/databases/p5-CDB_File \
p5-File-ShareDir>=1.02:${PORTSDIR}/devel/p5-File-ShareDir \
p5-Geo-Coordinates-Converter>=0.09:${PORTSDIR}/science/p5-Geo-Coordinates-Converter
+RUN_DEPENDS:= ${BUILD_DEPENDS}
USE_PERL5= configure
USES= perl5
Modified: head/textproc/p5-CSS-Packer/Makefile
==============================================================================
--- head/textproc/p5-CSS-Packer/Makefile Wed Aug 21 14:52:09 2013 (r325147)
+++ head/textproc/p5-CSS-Packer/Makefile Wed Aug 21 14:55:43 2013 (r325148)
@@ -16,8 +16,7 @@ MAINTAINER= sunpoet at FreeBSD.org
COMMENT= Another CSS minifier
BUILD_DEPENDS= p5-Regexp-RegGrp>=1.001.001:${PORTSDIR}/devel/p5-Regexp-RegGrp
-RUN_DEPENDS= p5-Regexp-RegGrp>=1.001.001:${PORTSDIR}/devel/p5-Regexp-RegGrp
-
+RUN_DEPENDS:= ${BUILD_DEPENDS}
TEST_DEPENDS= p5-Test-Pod>=1.22:${PORTSDIR}/devel/p5-Test-Pod
USE_PERL5= configure
Modified: head/textproc/p5-HTML-Packer/Makefile
==============================================================================
--- head/textproc/p5-HTML-Packer/Makefile Wed Aug 21 14:52:09 2013 (r325147)
+++ head/textproc/p5-HTML-Packer/Makefile Wed Aug 21 14:55:43 2013 (r325148)
@@ -16,8 +16,7 @@ MAINTAINER= sunpoet at FreeBSD.org
COMMENT= Another HTML code cleaner
BUILD_DEPENDS= p5-Regexp-RegGrp>=1.001.001:${PORTSDIR}/devel/p5-Regexp-RegGrp
-RUN_DEPENDS= p5-Regexp-RegGrp>=1.001.001:${PORTSDIR}/devel/p5-Regexp-RegGrp
-
+RUN_DEPENDS:= ${BUILD_DEPENDS}
TEST_DEPENDS= p5-Test-Pod>=1.22:${PORTSDIR}/devel/p5-Test-Pod
USE_PERL5= configure
Modified: head/textproc/p5-JavaScript-Packer/Makefile
==============================================================================
--- head/textproc/p5-JavaScript-Packer/Makefile Wed Aug 21 14:52:09 2013 (r325147)
+++ head/textproc/p5-JavaScript-Packer/Makefile Wed Aug 21 14:55:43 2013 (r325148)
@@ -16,8 +16,7 @@ MAINTAINER= sunpoet at FreeBSD.org
COMMENT= Perl version of Dean Edwards' Packer.js
BUILD_DEPENDS= p5-Regexp-RegGrp>=1.001.001:${PORTSDIR}/devel/p5-Regexp-RegGrp
-RUN_DEPENDS= p5-Regexp-RegGrp>=1.001.001:${PORTSDIR}/devel/p5-Regexp-RegGrp
-
+RUN_DEPENDS:= ${BUILD_DEPENDS}
TEST_DEPENDS= p5-Test-Pod>=1.22:${PORTSDIR}/devel/p5-Test-Pod
USE_PERL5= configure
Modified: head/textproc/p5-Lingua-Ispell/Makefile
==============================================================================
--- head/textproc/p5-Lingua-Ispell/Makefile Wed Aug 21 14:52:09 2013 (r325147)
+++ head/textproc/p5-Lingua-Ispell/Makefile Wed Aug 21 14:55:43 2013 (r325148)
@@ -15,11 +15,11 @@ MAINTAINER= sunpoet at FreeBSD.org
COMMENT= A Perl module that encapsulates access to the Ispell program
BUILD_DEPENDS= ${LOCALBASE}/bin/ispell:${PORTSDIR}/textproc/ispell
-RUN_DEPENDS= ${LOCALBASE}/bin/ispell:${PORTSDIR}/textproc/ispell
+RUN_DEPENDS:= ${BUILD_DEPENDS}
+REINPLACE_ARGS= -i ''
USE_PERL5= configure
USES= perl5
-REINPLACE_ARGS= -i ''
MAN3= Lingua::Ispell.3
Modified: head/textproc/p5-SVG-Parser/Makefile
==============================================================================
--- head/textproc/p5-SVG-Parser/Makefile Wed Aug 21 14:52:09 2013 (r325147)
+++ head/textproc/p5-SVG-Parser/Makefile Wed Aug 21 14:55:43 2013 (r325148)
@@ -17,9 +17,7 @@ COMMENT= XML Parser for SVG documents
BUILD_DEPENDS= p5-SVG>=2:${PORTSDIR}/textproc/p5-SVG \
p5-XML-Parser>=0:${PORTSDIR}/textproc/p5-XML-Parser \
p5-XML-SAX>=0:${PORTSDIR}/textproc/p5-XML-SAX
-RUN_DEPENDS= p5-SVG>=2:${PORTSDIR}/textproc/p5-SVG \
- p5-XML-Parser>=0:${PORTSDIR}/textproc/p5-XML-Parser \
- p5-XML-SAX>=0:${PORTSDIR}/textproc/p5-XML-SAX
+RUN_DEPENDS:= ${BUILD_DEPENDS}
USE_PERL5= modbuild
USES= perl5
Modified: head/textproc/p5-Sphinx-Config/Makefile
==============================================================================
--- head/textproc/p5-Sphinx-Config/Makefile Wed Aug 21 14:52:09 2013 (r325147)
+++ head/textproc/p5-Sphinx-Config/Makefile Wed Aug 21 14:55:43 2013 (r325148)
@@ -15,7 +15,7 @@ MAINTAINER= sunpoet at FreeBSD.org
COMMENT= Sphinx search engine configuration file read/modify/write
BUILD_DEPENDS= p5-List-MoreUtils>=0:${PORTSDIR}/lang/p5-List-MoreUtils
-RUN_DEPENDS= p5-List-MoreUtils>=0:${PORTSDIR}/lang/p5-List-MoreUtils
+RUN_DEPENDS:= ${BUILD_DEPENDS}
USE_PERL5= configure
USES= perl5
Modified: head/textproc/p5-Sphinx-Manager/Makefile
==============================================================================
--- head/textproc/p5-Sphinx-Manager/Makefile Wed Aug 21 14:52:09 2013 (r325147)
+++ head/textproc/p5-Sphinx-Manager/Makefile Wed Aug 21 14:55:43 2013 (r325148)
@@ -18,10 +18,7 @@ BUILD_DEPENDS= p5-Class-Accessor>=0:${PO
p5-Path-Class>=0:${PORTSDIR}/devel/p5-Path-Class \
p5-Proc-ProcessTable>=0:${PORTSDIR}/devel/p5-Proc-ProcessTable \
p5-Sphinx-Config>=0.09:${PORTSDIR}/textproc/p5-Sphinx-Config
-RUN_DEPENDS= p5-Class-Accessor>=0:${PORTSDIR}/devel/p5-Class-Accessor \
- p5-Path-Class>=0:${PORTSDIR}/devel/p5-Path-Class \
- p5-Proc-ProcessTable>=0:${PORTSDIR}/devel/p5-Proc-ProcessTable \
- p5-Sphinx-Config>=0.09:${PORTSDIR}/textproc/p5-Sphinx-Config
+RUN_DEPENDS:= ${BUILD_DEPENDS}
USE_PERL5= configure
USES= perl5
Modified: head/textproc/p5-Text-Prefix-XS/Makefile
==============================================================================
--- head/textproc/p5-Text-Prefix-XS/Makefile Wed Aug 21 14:52:09 2013 (r325147)
+++ head/textproc/p5-Text-Prefix-XS/Makefile Wed Aug 21 14:55:43 2013 (r325148)
@@ -15,8 +15,7 @@ MAINTAINER= sunpoet at FreeBSD.org
COMMENT= Fast prefix searching
BUILD_DEPENDS= p5-Digest-SHA1>=1:${PORTSDIR}/security/p5-Digest-SHA1
-RUN_DEPENDS= p5-Digest-SHA1>=1:${PORTSDIR}/security/p5-Digest-SHA1
-
+RUN_DEPENDS:= ${BUILD_DEPENDS}
TEST_DEPENDS= p5-Test-Deep>=0.108:${PORTSDIR}/devel/p5-Test-Deep
USE_PERL5= configure
Modified: head/www/p5-HTML-Declare/Makefile
==============================================================================
--- head/www/p5-HTML-Declare/Makefile Wed Aug 21 14:52:09 2013 (r325147)
+++ head/www/p5-HTML-Declare/Makefile Wed Aug 21 14:55:43 2013 (r325148)
@@ -15,7 +15,7 @@ MAINTAINER= sunpoet at FreeBSD.org
COMMENT= A very simple micro language to generate HTML
BUILD_DEPENDS= p5-HTML-Parser>=0:${PORTSDIR}/www/p5-HTML-Parser
-RUN_DEPENDS= p5-HTML-Parser>=0:${PORTSDIR}/www/p5-HTML-Parser
+RUN_DEPENDS:= ${BUILD_DEPENDS}
USE_PERL5= configure
USES= perl5
Modified: head/www/p5-HTTP-Server-Simple-Authen/Makefile
==============================================================================
--- head/www/p5-HTTP-Server-Simple-Authen/Makefile Wed Aug 21 14:52:09 2013 (r325147)
+++ head/www/p5-HTTP-Server-Simple-Authen/Makefile Wed Aug 21 14:55:43 2013 (r325148)
@@ -16,8 +16,7 @@ COMMENT= Authentication plugin for HTTP:
BUILD_DEPENDS= p5-Authen-Simple>=0.4:${PORTSDIR}/security/p5-Authen-Simple \
p5-HTTP-Server-Simple>=0.16:${PORTSDIR}/www/p5-HTTP-Server-Simple
-RUN_DEPENDS= p5-Authen-Simple>=0.4:${PORTSDIR}/security/p5-Authen-Simple \
- p5-HTTP-Server-Simple>=0.16:${PORTSDIR}/www/p5-HTTP-Server-Simple
+RUN_DEPENDS:= ${BUILD_DEPENDS}
USE_PERL5= configure
USES= perl5
Modified: head/www/p5-LWP-Protocol-http10/Makefile
==============================================================================
--- head/www/p5-LWP-Protocol-http10/Makefile Wed Aug 21 14:52:09 2013 (r325147)
+++ head/www/p5-LWP-Protocol-http10/Makefile Wed Aug 21 14:55:43 2013 (r325148)
@@ -16,8 +16,7 @@ COMMENT= Legacy HTTP/1.0 support for LWP
BUILD_DEPENDS= p5-HTTP-Message>=6:${PORTSDIR}/www/p5-HTTP-Message \
p5-libwww>=6:${PORTSDIR}/www/p5-libwww
-RUN_DEPENDS= p5-HTTP-Message>=6:${PORTSDIR}/www/p5-HTTP-Message \
- p5-libwww>=6:${PORTSDIR}/www/p5-libwww
+RUN_DEPENDS:= ${BUILD_DEPENDS}
USE_PERL5= configure
USES= perl5
Modified: head/www/p5-ModPerl-VersionUtil/Makefile
==============================================================================
--- head/www/p5-ModPerl-VersionUtil/Makefile Wed Aug 21 14:52:09 2013 (r325147)
+++ head/www/p5-ModPerl-VersionUtil/Makefile Wed Aug 21 14:55:43 2013 (r325148)
@@ -14,7 +14,8 @@ PKGNAMEPREFIX= p5-
MAINTAINER= sunpoet at FreeBSD.org
COMMENT= Makes it easier to investigate your mod_perl version
-RUN_DEPENDS= p5-Class-Data-Inheritable>=0.02:${PORTSDIR}/devel/p5-Class-Data-Inheritable
+BUILD_DEPENDS= p5-Class-Data-Inheritable>=0.02:${PORTSDIR}/devel/p5-Class-Data-Inheritable
+RUN_DEPENDS:= ${BUILD_DEPENDS}
USE_PERL5= configure
USES= perl5
Modified: head/www/p5-Plack-Middleware-ForceEnv/Makefile
==============================================================================
--- head/www/p5-Plack-Middleware-ForceEnv/Makefile Wed Aug 21 14:52:09 2013 (r325147)
+++ head/www/p5-Plack-Middleware-ForceEnv/Makefile Wed Aug 21 14:55:43 2013 (r325148)
@@ -15,7 +15,7 @@ MAINTAINER= sunpoet at FreeBSD.org
COMMENT= Force set environment variables for testing
BUILD_DEPENDS= p5-Plack>=0.9925:${PORTSDIR}/www/p5-Plack
-RUN_DEPENDS= p5-Plack>=0.9925:${PORTSDIR}/www/p5-Plack
+RUN_DEPENDS:= ${BUILD_DEPENDS}
USE_PERL5= configure
USES= perl5
Modified: head/www/p5-Protocol-SocketIO/Makefile
==============================================================================
--- head/www/p5-Protocol-SocketIO/Makefile Wed Aug 21 14:52:09 2013 (r325147)
+++ head/www/p5-Protocol-SocketIO/Makefile Wed Aug 21 14:55:43 2013 (r325148)
@@ -18,7 +18,7 @@ COMMENT= Socket.IO protocol implementati
LICENSE= ART20
BUILD_DEPENDS= p5-JSON>=0:${PORTSDIR}/converters/p5-JSON
-RUN_DEPENDS= p5-JSON>=0:${PORTSDIR}/converters/p5-JSON
+RUN_DEPENDS:= ${BUILD_DEPENDS}
USE_PERL5= configure
USES= perl5
Modified: head/www/p5-Protocol-XMLRPC/Makefile
==============================================================================
--- head/www/p5-Protocol-XMLRPC/Makefile Wed Aug 21 14:52:09 2013 (r325147)
+++ head/www/p5-Protocol-XMLRPC/Makefile Wed Aug 21 14:55:43 2013 (r325148)
@@ -16,7 +16,7 @@ MAINTAINER= sunpoet at FreeBSD.org
COMMENT= XML-RPC implementation
BUILD_DEPENDS= p5-XML-LibXML>=0:${PORTSDIR}/textproc/p5-XML-LibXML
-RUN_DEPENDS= p5-XML-LibXML>=0:${PORTSDIR}/textproc/p5-XML-LibXML
+RUN_DEPENDS:= ${BUILD_DEPENDS}
USE_PERL5= configure
USES= perl5
Modified: head/x11-toolkits/p5-Tk-Action/Makefile
==============================================================================
--- head/x11-toolkits/p5-Tk-Action/Makefile Wed Aug 21 14:52:09 2013 (r325147)
+++ head/x11-toolkits/p5-Tk-Action/Makefile Wed Aug 21 14:55:43 2013 (r325148)
@@ -19,10 +19,7 @@ BUILD_DEPENDS= p5-Moose>=0.92:${PORTSDIR
p5-MooseX-Has-Sugar>=0:${PORTSDIR}/devel/p5-MooseX-Has-Sugar \
p5-MooseX-SemiAffordanceAccessor>=0:${PORTSDIR}/devel/p5-MooseX-SemiAffordanceAccessor \
p5-Tk-Sugar>=0:${PORTSDIR}/x11-toolkits/p5-Tk-Sugar
-RUN_DEPENDS= p5-Moose>=0.92:${PORTSDIR}/devel/p5-Moose \
- p5-MooseX-Has-Sugar>=0:${PORTSDIR}/devel/p5-MooseX-Has-Sugar \
- p5-MooseX-SemiAffordanceAccessor>=0:${PORTSDIR}/devel/p5-MooseX-SemiAffordanceAccessor \
- p5-Tk-Sugar>=0:${PORTSDIR}/x11-toolkits/p5-Tk-Sugar
+RUN_DEPENDS:= ${BUILD_DEPENDS}
USE_PERL5= configure
USES= perl5
Modified: head/x11-toolkits/p5-Tk-CursorControl/Makefile
==============================================================================
--- head/x11-toolkits/p5-Tk-CursorControl/Makefile Wed Aug 21 14:52:09 2013 (r325147)
+++ head/x11-toolkits/p5-Tk-CursorControl/Makefile Wed Aug 21 14:55:43 2013 (r325148)
@@ -16,11 +16,11 @@ MAINTAINER= sunpoet at FreeBSD.org
COMMENT= Manipulate the mouse cursor programmatically
BUILD_DEPENDS= p5-Tk>=800.015:${PORTSDIR}/x11-toolkits/p5-Tk
-RUN_DEPENDS= p5-Tk>=800.015:${PORTSDIR}/x11-toolkits/p5-Tk
+RUN_DEPENDS:= ${BUILD_DEPENDS}
+ALL_TARGETS= pure_install
USE_PERL5= configure
USES= perl5
-ALL_TARGETS= pure_install
MAN3= Tk::CursorControl.3
Modified: head/x11-toolkits/p5-Tk-Sugar/Makefile
==============================================================================
--- head/x11-toolkits/p5-Tk-Sugar/Makefile Wed Aug 21 14:52:09 2013 (r325147)
+++ head/x11-toolkits/p5-Tk-Sugar/Makefile Wed Aug 21 14:55:43 2013 (r325148)
@@ -16,7 +16,7 @@ MAINTAINER= sunpoet at FreeBSD.org
COMMENT= Sugar syntax for Tk
BUILD_DEPENDS= p5-Sub-Exporter>=0:${PORTSDIR}/devel/p5-Sub-Exporter
-RUN_DEPENDS= p5-Sub-Exporter>=0:${PORTSDIR}/devel/p5-Sub-Exporter
+RUN_DEPENDS:= ${BUILD_DEPENDS}
USE_PERL5= configure
USES= perl5
Modified: head/x11-toolkits/p5-Tk-ToolBar/Makefile
==============================================================================
--- head/x11-toolkits/p5-Tk-ToolBar/Makefile Wed Aug 21 14:52:09 2013 (r325147)
+++ head/x11-toolkits/p5-Tk-ToolBar/Makefile Wed Aug 21 14:55:43 2013 (r325148)
@@ -16,7 +16,7 @@ MAINTAINER= sunpoet at FreeBSD.org
COMMENT= A toolbar widget for Perl/Tk
BUILD_DEPENDS= p5-Tk-CursorControl>=0:${PORTSDIR}/x11-toolkits/p5-Tk-CursorControl
-RUN_DEPENDS= p5-Tk-CursorControl>=0:${PORTSDIR}/x11-toolkits/p5-Tk-CursorControl
+RUN_DEPENDS:= ${BUILD_DEPENDS}
USE_ZIP= yes
USE_PERL5= configure
More information about the svn-ports-head
mailing list