From owner-cvs-ports@FreeBSD.ORG Fri Mar 4 07:03:13 2011 Return-Path: Delivered-To: cvs-ports@FreeBSD.org Received: by hub.freebsd.org (Postfix, from userid 1033) id 1DD8E106566B; Fri, 4 Mar 2011 07:03:13 +0000 (UTC) Date: Fri, 4 Mar 2011 07:03:13 +0000 From: Alexey Dokuchaev To: Koop Mast Message-ID: <20110304070313.GA22217@FreeBSD.org> References: <201103031556.p23FuHk0057304@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="+QahgC5+KEYLbs62" Content-Disposition: inline In-Reply-To: <201103031556.p23FuHk0057304@repoman.freebsd.org> User-Agent: Mutt/1.4.2.1i 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 X-BeenThere: cvs-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Mar 2011 07:03:13 -0000 --+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--