Date: Fri, 4 Mar 2011 07:03:13 +0000 From: Alexey Dokuchaev <danfe@FreeBSD.org> To: Koop Mast <kwm@FreeBSD.org> Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/textproc/p5-xmltv Makefile distinfo pkg-plist ports/textproc/p5-xmltv/files patch-Makefile.PL Message-ID: <20110304070313.GA22217@FreeBSD.org> In-Reply-To: <201103031556.p23FuHk0057304@repoman.freebsd.org> References: <201103031556.p23FuHk0057304@repoman.freebsd.org>
next in thread | previous in thread | raw e-mail | index | archive | help
--+QahgC5+KEYLbs62 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline On Thu, Mar 03, 2011 at 03:56:17PM +0000, Koop Mast wrote: > kwm 2011-03-03 15:56:17 UTC > > Modified files: > textproc/p5-xmltv Makefile distinfo pkg-plist > textproc/p5-xmltv/files patch-Makefile.PL > Log: > Update to 0.5.59. > > fix RUN_DEPENDS=${BUILD_DEPENDS} issue. You could have solved it by using correct assignment (:=) instead of introducing extra variable. It's documented in PH FWIW. Diff is attached. ./danfe --+QahgC5+KEYLbs62 Content-Type: text/plain; charset=koi8-r Content-Disposition: attachment; filename=diff Index: Makefile =================================================================== RCS file: /home/danfe/fbsd/FreeBSD-CVS/ports/textproc/p5-xmltv/Makefile,v retrieving revision 1.39 diff -u -r1.39 Makefile --- Makefile 3 Mar 2011 15:56:17 -0000 1.39 +++ Makefile 4 Mar 2011 07:01:20 -0000 @@ -14,7 +14,7 @@ MAINTAINER= multimedia@FreeBSD.org COMMENT= Set of programs to process TV (tvguide) listings in XML format -XMLTV_DEPENDS= \ +BUILD_DEPENDS= \ ${SITE_PERL}/${PERL_ARCH}/XML/Parser.pm:${PORTSDIR}/textproc/p5-XML-Parser \ ${SITE_PERL}/XML/Twig.pm:${PORTSDIR}/textproc/p5-XML-Twig \ ${SITE_PERL}/XML/Writer.pm:${PORTSDIR}/textproc/p5-XML-Writer \ @@ -43,8 +43,7 @@ ${SITE_PERL}/HTTP/Cache/Transparent.pm:${PORTSDIR}/www/p5-HTTP-Cache-Transparent \ ${SITE_PERL}/IO/Stringy.pm:${PORTSDIR}/devel/p5-IO-stringy \ ${SITE_PERL}/Date/Parse.pm:${PORTSDIR}/devel/p5-TimeDate -BUILD_DEPENDS= ${XMLTV_DEPENDS} -RUN_DEPENDS= ${XMLTV_DEPENDS} +RUN_DEPENDS:= ${BUILD_DEPENDS} USE_BZIP2= yes PERL_CONFIGURE= yes --+QahgC5+KEYLbs62--
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20110304070313.GA22217>