Date: Sat, 22 Jan 2005 09:22:11 -0500 From: "Dan Langille" <dan@langille.org> To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, Sergey Matveychuk <sem@FreeBSD.org> Cc: jan.lentfer@web.de Subject: Re: cvs commit: ports/net/lam7 Makefile distinfo pkg-plist ports/net/lam7/files manpages Message-ID: <41F21B43.7689.17830D22@localhost> In-Reply-To: <200501221207.j0MC71Ux058091@repoman.freebsd.org>
next in thread | previous in thread | raw e-mail | index | archive | help
On 22 Jan 2005 at 12:07, Sergey Matveychuk wrote:
> sem 2005-01-22 12:07:01 UTC
>
> FreeBSD ports repository
>
> Modified files:
> net/lam7 Makefile distinfo pkg-plist
> Removed files:
> net/lam7/files manpages
> Log:
> - Update to 7.1.1
>
> PR: ports/76335
> Submitted by: maintainer
>
> Revision Changes Path
> 1.9 +356 -8 ports/net/lam7/Makefile
> 1.5 +2 -2 ports/net/lam7/distinfo
> 1.4 +0 -349 ports/net/lam7/files/manpages (dead)
> 1.4 +9 -6 ports/net/lam7/pkg-plist
On a system with perl 5.6.1, I get the following error:
[dan@polo:~/ports/net/lam7] $ make -V PORTVERSION
"Makefile", line 28: Unassociated shell command "BUILD_DEPENDS+
=${SITE_PERL}/File/Temp.pm:${PORTSDIR}/devel/p5-File-Temp"
"Makefile", line 29: Unassociated shell command "RUN_DEPENDS+=
${SITE_PERL}/File/Temp.pm:${PORTSDIR}/devel/p5-File-Temp"
make: fatal errors encountered -- cannot continue
[dan@polo:~/ports/net/lam7] $
I fixed it by removing the whitespace from the start of the line
numbers mentioned above. A diff follows, but I suspect it will
be munged by mailing:
[dan@polo:~/ports/net/lam7] $ diff -ru Makefile~ Makefile
--- Makefile~ Sat Jan 22 09:18:12 2005
+++ Makefile Sat Jan 22 09:19:05 2005
@@ -25,8 +25,8 @@
.include <bsd.port.pre.mk>
.if ${PERL_LEVEL} < 500800
- BUILD_DEPENDS+
=${SITE_PERL}/File/Temp.pm:${PORTSDIR}/devel/p5-File-Temp
- RUN_DEPENDS+=
${SITE_PERL}/File/Temp.pm:${PORTSDIR}/devel/p5-File-Temp
+BUILD_DEPENDS+ =${SITE_PERL}/File/Temp.pm:${PORTSDIR}/devel/p5-File-
Temp
+RUN_DEPENDS+= ${SITE_PERL}/File/Temp.pm:${PORTSDIR}/devel/p5-File-
Temp
.endif
.if ${ARCH} == "i386"
[dan@polo:~/ports/net/lam7] $
--
Dan Langille : http://www.langille.org/
BSDCan - The Technical BSD Conference - http://www.bsdcan.org/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?41F21B43.7689.17830D22>
