Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 33734 - wget-1.8.2-r3 doesn't emerge : there are no masked or unmasked ebuilds to satisfy "sys-devl/autoconf"
Summary: wget-1.8.2-r3 doesn't emerge : there are no masked or unmasked ebuilds to sat...
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: x86 Linux
: High normal (vote)
Assignee: Greg Fitzgerald (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-11-18 01:05 UTC by Eric Muehlstein
Modified: 2003-11-19 14:55 UTC (History)
0 users

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


Attachments
fixed ebuild (wget-1.8.2-r3.ebuild,1.82 KB, text/plain)
2003-11-18 01:07 UTC, Eric Muehlstein
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Eric Muehlstein 2003-11-18 01:05:22 UTC
when i emerge -up world i get the error message posted above in reference to 
wget-1.8.2-r3 

Reproducible: Always
Steps to Reproduce:
1.emerge wget-1.8.2-r3 
2. 
3. 
Actual Results:  
there are no masked or unmasked ebuilds to satisfy "sys-devl/autoconf" 

Expected Results:  
sucessful emerge 

devel is spelled wrong in the following line: 
 
DEPEND="nls? sys-devl/autoconf ( sys-devel/gettext )" 
 
here is a fixed ebuild: 
 
# Copyright 1999-2003 Gentoo Technologies, Inc. 
# Distributed under the terms of the GNU General Public License v2 
# $Header: /home/cvsroot/gentoo-x86/net-misc/wget/wget-1.8.2-r3.ebuild,v 1.5 
2003/11/18 07:06:30 gregf Exp $ 
 
inherit gnuconfig 
 
NPVER=20011209 
DESCRIPTION="Network utility to retrieve files from the WWW" 
HOMEPAGE="http://www.cg.tuwien.ac.at/~prikryl/wget.html" 
SRC_URI="mirror://gnu/wget/${P}.tar.gz 
	mirror://gentoo/wget-new-percentage-cvs-${NPVER}.tar.gz 
	ipv6? mirror://gentoo/${P}-ipv6-debian.patch.bz2" 
 
LICENSE="GPL-2" 
SLOT="0" 
KEYWORDS="x86 ppc sparc alpha hppa arm mips amd64 ia64" 
IUSE="ssl nls static ipv6 debug" 
 
RDEPEND="ssl? ( >=dev-libs/openssl-0.9.6b )" 
DEPEND="nls? sys-devel/autoconf ( sys-devel/gettext )" 
 
src_unpack() { 
	unpack ${A} 
 
	cd ${S} 
	epatch ${FILESDIR}/${P}-gentoo.diff 
 
	cd ${S}/src 
	epatch ${WORKDIR}/wget-new-percentage/wnp-20011208-2.diff 
 
	if use ipv6 
	then 
		cd ${S} 
		epatch ${WORKDIR}/${P}-ipv6-debian.patch 
	fi 
 
	epatch ${FILESDIR}/${P}-2Glimit.diff 
} 
 
src_compile() { 
	# Make wget use up-to-date configure scripts 
	gnuconfig_update 
 
	local myconf 
	use nls || myconf="--disable-nls" 
	use ssl && myconf="${myconf} --with-ssl" 
	use ssl || myconf="${myconf} --without-ssl --disable-opie --disable-digest" 
	use debug && myconf="${myconf} --disable-debug" 
	use ssl && CFLAGS="${CFLAGS} -I/usr/include/openssl" 
	./configure --prefix=/usr --sysconfdir=/etc/wget \ 
		--infodir=/usr/share/info --mandir=usr/share/man $myconf || die 
	if use static; then 
		make LDFLAGS="--static" || die 
	else 
		make || die 
	fi 
} 
 
src_install() { 
	if use build; then 
		insinto /usr 
		dobin ${S}/src/wget 
		return 
	fi 
	make prefix=${D}/usr sysconfdir=${D}/etc/wget \ 
		mandir=${D}/usr/share/man infodir=${D}/usr/share/info install || die 
	dodoc AUTHORS COPYING ChangeLog MACHINES MAILING-LIST NEWS 
README TODO 
	dodoc doc/sample.wgetrc 
}
Comment 1 Eric Muehlstein 2003-11-18 01:07:33 UTC
Created attachment 20898 [details]
fixed ebuild
Comment 2 Billy Dunn 2003-11-18 01:19:09 UTC
I had the same problem and fixing the typo worked for me.  Thanks Eric.
Comment 3 gerold.strobel 2003-11-18 02:40:40 UTC
this is a type in the ebuild in line 20, should be


DEPEND="nls? sys-devel/autoconf ( sys-devel/gettext )"

but is

DEPEND="nls? sys-devl/autoconf ( sys-devel/gettext )"
Comment 4 Greg Fitzgerald (RETIRED) gentoo-dev 2003-11-19 14:55:45 UTC
fixed.