Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 5103 - broken ftp-0.17-r1.ebuild
Summary: broken ftp-0.17-r1.ebuild
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] Core system (show other bugs)
Hardware: x86 Linux
: Highest major (vote)
Assignee: Gentoo Linux bug wranglers
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-07-16 13:45 UTC by Vince Verleye
Modified: 2003-02-04 19:42 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Vince Verleye 2002-07-16 13:45:29 UTC
In the net-ftp package, the newly uploaded ftp-0.17-r1.ebuild seems to be 
missing the "./configure" file (or at least the error message prompts this, I 
think configure is there anyway). So the package will fail an emerge.

I experienced this while I was doing a fresh install of Gentoo on my box.
It failed at 'emerge system', which is quite annoying, because I didn't know 
what was going on. I never had an error before in any install of Gentoo ;)

Here's a modified ebuild that seemed to work, as found on [ 
http://forums.gentoo.org/viewtopic.php?t=8367 ]:

######################
A=netkit-${P}.tar.gz 
S=${WORKDIR}/netkit-${P} 
DESCRIPTION="Standard Linux FTP Client" 
SRC_URI="ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/${A}" 

DEPEND="virtual/glibc 
              >=sys-libs/ncurses-5.2" 


src_compile() { 
  try  ./configure --prefix=/usr 
  cp MCONFIG MCONFIG.orig 
  sed -e "s/-pipe -O2/${CFLAGS}/" MCONFIG.orig > MCONFIG 
  try make 
} 

src_install() { 
  into /usr 
  dobin ftp/ftp 
  doman ftp/ftp.1 ftp/netrc.5 
  dodoc ChangeLog README BUGS 
} 
######################
Comment 1 Seemant Kulleen (RETIRED) gentoo-dev 2002-07-16 14:58:09 UTC
my typo

sorry about that.