Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 187 - new sudo-1.6.4 ebuild fails at ./configure
Summary: new sudo-1.6.4 ebuild fails at ./configure
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] Core system (show other bugs)
Hardware: x86 Linux
: High normal (vote)
Assignee: Daniel Robbins (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-01-15 17:14 UTC by Gontran Zepeda
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 Gontran Zepeda 2002-01-15 17:14:20 UTC
Error output:
# emerge app-admin/sudo/sudo-1.6.4.ebuild --verbose
Calculating dependencies. done!
>>> emerge app-admin/sudo-1.6.4 to /
>>> md5 ;-) sudo-1.6.4.tar.gz
>>> Unpacking source...
>>> Unpacking sudo-1.6.4.tar.gz
>>> Source unpacked.
/usr/sbin/ebuild.sh: ./configure: No such file or directory

!!! ERROR: The ebuild did not complete successfully.
!!! Function src_compile, Line 8, Exitcode 127
!!! (no error message)

!!! emerge aborting on  /usr/portage/app-admin/sudo/sudo-1.6.4.ebuild .
#

Analysis:

configure exists in /var/tmp/.../sudo*/work/sudo*/, as if ebuild.sh is not
in the proper working directory?
Comment 1 Brent Cook 2002-01-16 08:52:11 UTC
This package does not use the correct build dir. The tar.gz file unpacks to
sudo-1.6.4p1, not just sudo-1.6.4. The attached patch fixes the problem.
Comment 2 Brent Cook 2002-01-16 08:57:35 UTC
Couldn't attach patch - here it is:
--- sudo-1.6.4.ebuild   Wed Jan 16 08:54:30 2002
+++ sudo-1.6.4.ebuild.new       Wed Jan 16 08:54:14 2002
@@ -3,7 +3,7 @@
 # Maintainer: Daniel Robbins <drobbins@gentoo.org>
 # /space/gentoo/cvsroot/gentoo-x86/app-admin/sudo/sudo-1.6.4.ebuild,v 1.1
2002/01/15 20:47:11 drobbins Exp
 
-S=${WORKDIR}/${P}
+S=${WORKDIR}/${P}p1
 DESCRIPTION="Allows certain users/groups to run commands as root"
 SRC_URI="http://www.courtesan.com/sudo/dist/${P}.tar.gz"
 HOMEPAGE="http://www.courtesan.com/sudo/"