From k@numeri.campus.luth.se Tue May 11 06:30:56 1999
Return-Path: <k@numeri.campus.luth.se>
Received: from numeri.campus.luth.se (numeri.campus.luth.se [130.240.197.103])
	by hub.freebsd.org (Postfix) with ESMTP id 54EA315039
	for <FreeBSD-gnats-submit@freebsd.org>; Tue, 11 May 1999 06:30:54 -0700 (PDT)
	(envelope-from k@numeri.campus.luth.se)
Received: (from k@localhost)
	by numeri.campus.luth.se (8.9.3/8.9.3) id PAA74359;
	Tue, 11 May 1999 15:31:12 GMT
	(envelope-from k)
Message-Id: <199905111531.PAA74359@numeri.campus.luth.se>
Date: Tue, 11 May 1999 15:31:12 GMT
From: Johan Karlsson <k@numeri.campus.luth.se>
Reply-To: k@numeri.campus.luth.se
To: FreeBSD-gnats-submit@freebsd.org
Subject: gettext-0.10.35 fails in make install
X-Send-Pr-Version: 3.2

>Number:         11648
>Category:       ports
>Synopsis:       gettext-0.10.35 fails in make install
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    freebsd-ports
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Tue May 11 06:40:03 PDT 1999
>Closed-Date:    Tue May 11 11:42:31 PDT 1999
>Last-Modified:  Tue May 11 11:42:53 PDT 1999
>Originator:     Johan Karlsson
>Release:        FreeBSD 3.2-BETA i386
>Organization:
>Environment:

	FreeBSD Stable cvsup/build 990510
	ports cvsup 990510

>Description:

	make install of ports/devel/gettext fails when 
	generating package list.

	numeri# make install
	===>  Installing for gettext-0.10.35
	...
	===>   Generating temporary packing list
	install-info: Undefined error: 0 for /usr/local/info/dir
	*** Error code 1
	
	Stop.
	*** Error code 1

	Stop.
	*** Error code 1
		
	Stop.


>How-To-Repeat:
	
	see description

>Fix:
	don't know how packing lists are generated :-(

>Release-Note:
>Audit-Trail:

From: Jeremy Lea <reg@shale.csir.co.za>
To: Johan Karlsson <k@numeri.campus.luth.se>
Cc: FreeBSD-gnats-submit@FreeBSD.ORG
Subject: Re: ports/11648: gettext-0.10.35 fails in make install
Date: Tue, 11 May 1999 16:30:20 +0200

 Hi,
 
 On Tue, May 11, 1999 at 03:31:12PM +0000, Johan Karlsson wrote:
 > >Synopsis:       gettext-0.10.35 fails in make install
 > >Description:
 > 
 > 	make install of ports/devel/gettext fails when 
 > 	generating package list.
 > 
 > 	numeri# make install
 > 	===>  Installing for gettext-0.10.35
 > 	...
 > 	===>   Generating temporary packing list
 > 	install-info: Undefined error: 0 for /usr/local/info/dir
 > 	*** Error code 1
 
 This is only hitting you, since it builds fine in
 http://bento.freebsd.org/errorlogs/.  Firstly, do you have a file named
 /usr/local/info/dir? and do you have a file named /usr/share/info/dir?
 
 The second you should always have, the first should have been created by
 a new feature in bsd.port.mk, before the pre-install target.  The port
 also tries to make this file, as part of post-install.
 
 The only two places which 'install-info' occurs is in bsd.port.mk, as
 part of the generate-plist target, but it should not be run there, since
 it is put of a sed expression.  Then it occurs in the gettext Makefile,
 where it installs the info file.  This is most likely where it is
 failing.  Why is anyone's guess, but the first four lines of the
 post-install target in gettext/Makefile are no longer needed.  Please
 delete them and see if they fix your problem.
 
 Regards,
  -Jeremy
 
 -- 
   |    What will people think when they hear that I'm a Jesus freak?
 --+--  What will people do when they find that it's true?
   |    I don't really care if they label me a Jesus Freak,
   |    There ain't no disguising the truth.  - d c Talk
 

From: Johan Karlsson <k@numeri.campus.luth.se>
To: Jeremy Lea <reg@shale.csir.co.za>
Cc: FreeBSD-gnats-submit@FreeBSD.ORG
Subject: Re: ports/11648: gettext-0.10.35 fails in make install 
Date: Tue, 11 May 1999 16:42:46 +0000

 At Tue, 11 May 1999 16:30:20 +0200, Jeremy Lea wrote:
 >Hi,
 >
 >On Tue, May 11, 1999 at 03:31:12PM +0000, Johan Karlsson wrote:
 >> >Synopsis:       gettext-0.10.35 fails in make install
 >> >Description:
 >> 
 >> 	make install of ports/devel/gettext fails when 
 >> 	generating package list.
 >> 
 >> 	numeri# make install
 >> 	===>  Installing for gettext-0.10.35
 >> 	...
 >> 	===>   Generating temporary packing list
 >> 	install-info: Undefined error: 0 for /usr/local/info/dir
 >> 	*** Error code 1
 >
 >This is only hitting you, since it builds fine in
 >http://bento.freebsd.org/errorlogs/.  Firstly, do you have a file named
 >/usr/local/info/dir? and do you have a file named /usr/share/info/dir?
 >
 
 The first exist but:
 k@numeri ~ >ll /usr/local/info/dir
 -rw-r--r--  1 root  wheel  0 Dec 18 12:41 /usr/local/info/dir
 The second:
 k@numeri ~ >ll /usr/share/info/dir
 -r--r--r--  1 root  wheel  3180 May 10 20:55 /usr/share/info/dir
 
 >The second you should always have, the first should have been created by
 >a new feature in bsd.port.mk, before the pre-install target.  The port
 >also tries to make this file, as part of post-install.
 >
 >The only two places which 'install-info' occurs is in bsd.port.mk, as
 >part of the generate-plist target, but it should not be run there, since
 >it is put of a sed expression.  Then it occurs in the gettext Makefile,
 >where it installs the info file.  This is most likely where it is
 >failing.  Why is anyone's guess, but the first four lines of the
 >post-install target in gettext/Makefile are no longer needed.  Please
 >delete them and see if they fix your problem.
 >
 
 Yes it does.
 
 I will delete /usr/local/info/dir and hopefully it will be created next time 
 it is needed.
 
 I guess this PR can be closed since nobody else has this problem.
 
 Thanks for your help.
 
 /Johan Karlsson
 
 -- 
 Johan Karlsson		mailto:k@numeri.campus.luth.se
 SWEDEN
 
 
 

From: Jeremy Lea <reg@shale.csir.co.za>
To: Johan Karlsson <k@numeri.campus.luth.se>
Cc: FreeBSD-gnats-submit@FreeBSD.ORG
Subject: Re: ports/11648: gettext-0.10.35 fails in make install
Date: Tue, 11 May 1999 16:59:32 +0200

 Hi again,
 On Tue, May 11, 1999 at 04:42:46PM +0000, Johan Karlsson wrote:
 > The first exist but:
 > k@numeri ~ >ll /usr/local/info/dir
 > -rw-r--r--  1 root  wheel  0 Dec 18 12:41 /usr/local/info/dir
 
 There's the problem...  This file should at least have some stuff in it
 (which is the whole point of all the work in bsd.port.mk and
 (previously) the Makefile).  Something must have stood on it...  glib
 might have done this, since it was broken.
 
 > I will delete /usr/local/info/dir and hopefully it will be created next time 
 > it is needed.
 > 
 > I guess this PR can be closed since nobody else has this problem.
 
 Yip.  Pleasure to help.
 
  -Jeremy
 
 -- 
   |    What will people think when they hear that I'm a Jesus freak?
 --+--  What will people do when they find that it's true?
   |    I don't really care if they label me a Jesus Freak,
   |    There ain't no disguising the truth.  - d c Talk
 
State-Changed-From-To: open->closed 
State-Changed-By: billf 
State-Changed-When: Tue May 11 11:42:31 PDT 1999 
State-Changed-Why:  
Submitter notes that the problem was his local machine. 
>Unformatted:
