Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 4 Sep 2003 12:40:14 -0700 (PDT)
From:      Oliver Eikemeier <eikemeier@fillmore-labs.com>
To:        freebsd-ports-bugs@FreeBSD.org
Subject:   Re: ports/55358: possible wrong plist in ports/lang/yorick
Message-ID:  <200309041940.h84JeEST037381@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR ports/55358; it has been noted by GNATS.

From: Oliver Eikemeier <eikemeier@fillmore-labs.com>
To: "David H. Munro" <munro@oldben.llnl.gov>
Cc: freebsd-gnats-submit@FreeBSD.org,
	Kang Liu <lazykang@hotmail.com>,
	"Pedro F. Giffuni" <giffunip@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@yahoo.com> in
 FreeBSD ports 3F569EB8.6000207@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.
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200309041940.h84JeEST037381>