cvs commit: ports/devel/p5-Config-Model Makefile distinfo
pkg-plist
Alexey Dokuchaev
danfe at FreeBSD.org
Wed Aug 18 18:47:46 UTC 2010
On Wed, Aug 18, 2010 at 11:53:57AM +0000, Andrej Zverev wrote:
> az 2010-08-18 11:53:57 UTC
>
> FreeBSD ports repository
>
> Modified files:
> devel/p5-Config-Model Makefile distinfo pkg-plist
> Log:
> Update to 1.206:
> - RUN_DEPENDS simplified by reusing BUILD_DEPENDS
Please assign RUN_DEPENDS correctly with := (immediate expansion
operator). Right now it is polluted with `devel/p5-Module-Build' and
extra one of `lang/perl5.10'. Consider attached patch. Point the
original submitter to section 5.7.2 of PH.
./danfe
P.S. I can't understand why people keep making this mistake after it
was discussed so many times on the lists.
-------------- next part --------------
Index: Makefile
===================================================================
RCS file: /home/danfe/fbsd/FreeBSD-CVS/ports/devel/p5-Config-Model/Makefile,v
retrieving revision 1.42
diff -u -r1.42 Makefile
--- Makefile 18 Aug 2010 11:53:57 -0000 1.42
+++ Makefile 18 Aug 2010 18:36:39 -0000
@@ -22,8 +22,7 @@
p5-YAML>=0:${PORTSDIR}/textproc/p5-YAML \
p5-Config-Tiny>=0:${PORTSDIR}/devel/p5-Config-Tiny \
p5-Text-Template>=0:${PORTSDIR}/textproc/p5-Text-Template
-RUN_DEPENDS= ${BUILD_DEPENDS}
-RUN_DEPENDS+= p5-Moose>=0:${PORTSDIR}/devel/p5-Moose
+RUN_DEPENDS:= ${BUILD_DEPENDS} p5-Moose>=0:${PORTSDIR}/devel/p5-Moose
TEST_DEPENDS= p5-Test-Exception>=0:${PORTSDIR}/devel/p5-Test-Exception \
p5-Test-Warn>=0.11:${PORTSDIR}/devel/p5-Test-Warn
More information about the cvs-ports
mailing list