Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 69069 - net-snmp-5.1.1-r1.ebuild broken
Summary: net-snmp-5.1.1-r1.ebuild broken
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] Server (show other bugs)
Hardware: All Linux
: High blocker (vote)
Assignee: Gentoo Netmon project
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-10-26 14:18 UTC by Chris Boot
Modified: 2004-10-27 01:06 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 Chris Boot 2004-10-26 14:18:06 UTC
I've tried to build net-snmp-5.1.1-r1 and emerge hangs during the unpacking stage. I just did an emerge sync and the problem still appears.

After a little hunting, I've found it's down to one line in the ebuild:
#wrt to bugs 68467, 68254
sed -i -e 's/^NSC_AGENTLIBS="@AGENTLIBS@"/NSC_AGENTLIBS="@AGENTLIBS@ @WRAPLIBS@"/'

sed is expecting input on stdin, but isn't getting any and therefore is hanging. A quick grep in the source tree leads me to believe the line should be:
sed -i -e 's/^NSC_AGENTLIBS="@AGENTLIBS@"/NSC_AGENTLIBS="@AGENTLIBS@ @WRAPLIBS@"/' net-snmp-config.in

With this little fix the ebuild compiles file.
Comment 1 Eldad Zack (RETIRED) gentoo-dev 2004-10-27 01:06:00 UTC
5.1.1 is ok, I missed that for 5.1.1-r1.
fixed, thanks for the report.