ports/55358: possible wrong plist in ports/lang/yorick
Oliver Eikemeier
eikemeier at fillmore-labs.com
Thu Sep 4 19:40:15 UTC 2003
The following reply was made to PR ports/55358; it has been noted by GNATS.
From: Oliver Eikemeier <eikemeier at fillmore-labs.com>
To: "David H. Munro" <munro at oldben.llnl.gov>
Cc: freebsd-gnats-submit at FreeBSD.org,
Kang Liu <lazykang at hotmail.com>,
"Pedro F. Giffuni" <giffunip at yahoo.com>
Subject: Re: ports/55358: possible wrong plist in ports/lang/yorick
Date: Thu, 04 Sep 2003 21:31:23 +0200
as discussed with Pedro F. Giffuni <giffunip at yahoo.com> in
FreeBSD ports 3F569EB8.6000207 at fillmore-labs.com
http://lists.freebsd.org/pipermail/freebsd-ports/2003-September/004249.html
you have to remove
${GZIP_CMD} ${WRKSRC}/doc/yorick.info*
from post-build, and change
install-info ${PREFIX}/info/yorick.info.gz ${PREFIX}/info/dir
in post-install to
install-info ${PREFIX}/info/yorick.info ${PREFIX}/info/dir
otherwise package building won't work.
Btw,
.if !exists(${PREFIX}/bin)
@${MKDIR} ${PREFIX}/bin
.endif
.if !exists(${PREFIX}/man/man1)
@${MKDIR} ${PREFIX}/man/man1
.endif
.if !exists(${PREFIX}/info)
@${MKDIR} ${PREFIX}/info
.endif
shouldn't be in the in the ports Makefile, and the condition does not
do what you expect, PREFIX is undefined at that point in the Makefile.
More information about the freebsd-ports-bugs
mailing list