public inbox for gentoo-dev@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-dev] man-1.5-r1 busted
@ 2001-09-09 13:54 Crowfoot, Norman (CCI-Atlanta)
  2001-09-09 14:21 ` Daniel Robbins
  0 siblings, 1 reply; 6+ messages in thread
From: Crowfoot, Norman (CCI-Atlanta) @ 2001-09-09 13:54 UTC (permalink / raw
  To: gentoo-dev

Gang,

sys-apps/man/man-1.5i-r1.ebuild does not build correctly.  Bad source
patch to path loses colon characters, thereby loses locations of gzip,
pager, etc.

Suggest following fix to ebuild.

-------------------------------
*** man-1.5i-r1.ebuild	Sun Sep  9 12:44:59 2001
--- man-1.5i-r1.ebuild~	Sat Sep  8 15:02:56 2001
***************
*** 16,22 ****
      unpack ${A}
      cd ${S}
      cp configure configure.orig
!     sed -e 's/confdir=.*$/confdir=\/etc/' -e
's:/usr/lib/locale:$prefix/usr/lib/locale:g' configure.orig > configure
  	local x
  	for x in / src/ man2html/ msgs/
  	do
--- 16,22 ----
      unpack ${A}
      cd ${S}
      cp configure configure.orig
!     sed -e 's/confdir=.*$/confdir=\/etc/' -e
's:/usr/lib/locale:$prefix/usr/lib/locale:g' -e
's!/bin:/usr/bin:/usr/ucb:/usr/local/bin:$PATH!/bin /usr/bin /usr/ucb
/usr/local/bin $PATH!' configure.orig > configure
  	local x
  	for x in / src/ man2html/ msgs/
  	do
--------------------------------



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [gentoo-dev] man-1.5-r1 busted
  2001-09-09 13:54 [gentoo-dev] man-1.5-r1 busted Crowfoot, Norman (CCI-Atlanta)
@ 2001-09-09 14:21 ` Daniel Robbins
  2001-09-09 15:38   ` Collins Richey
  0 siblings, 1 reply; 6+ messages in thread
From: Daniel Robbins @ 2001-09-09 14:21 UTC (permalink / raw
  To: gentoo-dev

On Sun, Sep 09, 2001 at 03:52:12PM -0400, Crowfoot, Norman (CCI-Atlanta) wrote:
> Gang,
> 
> sys-apps/man/man-1.5i-r1.ebuild does not build correctly.  Bad source
> patch to path loses colon characters, thereby loses locations of gzip,
> pager, etc.
> 
> Suggest following fix to ebuild.

OK; I added the colons back but removed the /usr/ucb path.  Should be showing
up on rsync in 30 mins.

-- 
Daniel Robbins					<drobbins@gentoo.org>
Chief Architect/President			http://www.gentoo.org 
Gentoo Technologies, Inc.			



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [gentoo-dev] man-1.5-r1 busted
  2001-09-09 14:21 ` Daniel Robbins
@ 2001-09-09 15:38   ` Collins Richey
  2001-09-09 19:19     ` Ben Beuchler
  2001-09-09 19:26     ` Daniel Robbins
  0 siblings, 2 replies; 6+ messages in thread
From: Collins Richey @ 2001-09-09 15:38 UTC (permalink / raw
  To: gentoo-dev

On Sun, 9 Sep 2001 14:20:56 -0600 Daniel Robbins <drobbins@gentoo.org>
wrote:

> On Sun, Sep 09, 2001 at 03:52:12PM -0400, Crowfoot, Norman
> (CCI-Atlanta) wrote:
> > Gang,
> > 
> > sys-apps/man/man-1.5i-r1.ebuild does not build correctly.  Bad
> source
> > patch to path loses colon characters, thereby loses locations of
> gzip,
> > pager, etc.
> > 
> > Suggest following fix to ebuild.
> 
> OK; I added the colons back but removed the /usr/ucb path.  Should
> be showing
> up on rsync in 30 mins.
> 

I've just done emerge rsync and emerged man again - complaints about
invalid characters and after the merge I still get nothing but garbage
from man displays.

-- 
Collins Richey
Denver Area
gentoo_rc6 xfce+sylpheed



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [gentoo-dev] man-1.5-r1 busted
  2001-09-09 15:38   ` Collins Richey
@ 2001-09-09 19:19     ` Ben Beuchler
  2001-09-09 19:57       ` Collins Richey
  2001-09-09 19:26     ` Daniel Robbins
  1 sibling, 1 reply; 6+ messages in thread
From: Ben Beuchler @ 2001-09-09 19:19 UTC (permalink / raw
  To: gentoo-dev

On Sun, Sep 09, 2001 at 03:49:21PM -0600, Collins Richey wrote:

> > OK; I added the colons back but removed the /usr/ucb path.  Should be
> > showing up on rsync in 30 mins.
> 
> I've just done emerge rsync and emerged man again - complaints about
> invalid characters and after the merge I still get nothing but garbage
> from man displays.

I would guess that your man.conf file still needs to be installed.  Look for a
file like this in /etc: ._cfg????-man.conf

The easiest way to find 'em is like this:

find /etc -name '._cfg*' -print

If you find one or more that ends in man.conf, mv that file to /etc/man.conf.

-Ben

-- 
Ben Beuchler                                           There is no spoon.
insyte@emt-p.org                                            -- The Matrix



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [gentoo-dev] man-1.5-r1 busted
  2001-09-09 15:38   ` Collins Richey
  2001-09-09 19:19     ` Ben Beuchler
@ 2001-09-09 19:26     ` Daniel Robbins
  1 sibling, 0 replies; 6+ messages in thread
From: Daniel Robbins @ 2001-09-09 19:26 UTC (permalink / raw
  To: gentoo-dev

On Sun, Sep 09, 2001 at 03:49:21PM -0600, Collins Richey wrote:

> I've just done emerge rsync and emerged man again - complaints about
> invalid characters and after the merge I still get nothing but garbage
> from man displays.

OK; did you update your man.conf with the ._cfg????_man.conf version?

-- 
Daniel Robbins					<drobbins@gentoo.org>
Chief Architect/President			http://www.gentoo.org 
Gentoo Technologies, Inc.			



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [gentoo-dev] man-1.5-r1 busted
  2001-09-09 19:19     ` Ben Beuchler
@ 2001-09-09 19:57       ` Collins Richey
  0 siblings, 0 replies; 6+ messages in thread
From: Collins Richey @ 2001-09-09 19:57 UTC (permalink / raw
  To: gentoo-dev

On Sun, 9 Sep 2001 20:17:39 -0500 Ben Beuchler <insyte@emt-p.org>
wrote:

> On Sun, Sep 09, 2001 at 03:49:21PM -0600, Collins Richey wrote:
> 
> > > OK; I added the colons back but removed the /usr/ucb path. 
> Should be
> > > showing up on rsync in 30 mins.
> > 
> > I've just done emerge rsync and emerged man again - complaints
> about
> > invalid characters and after the merge I still get nothing but
> garbage
> > from man displays.
> 
> I would guess that your man.conf file still needs to be installed. 
> Look for a
> file like this in /etc: ._cfg????-man.conf
> 
> The easiest way to find 'em is like this:
> 
> find /etc -name '._cfg*' -print
> 
> If you find one or more that ends in man.conf, mv that file to
> /etc/man.conf.
> 

Thanks, that did the trick.

-- 
Collins Richey
Denver Area
gentoo_rc6 xfce+sylpheed



^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2001-09-10  1:56 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-09-09 13:54 [gentoo-dev] man-1.5-r1 busted Crowfoot, Norman (CCI-Atlanta)
2001-09-09 14:21 ` Daniel Robbins
2001-09-09 15:38   ` Collins Richey
2001-09-09 19:19     ` Ben Beuchler
2001-09-09 19:57       ` Collins Richey
2001-09-09 19:26     ` Daniel Robbins

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox