Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 19791 - New silc ebuild (silc-client-0.9.12.1) fails to emerge if either IPv6 or SOCKS is enabled.
Summary: New silc ebuild (silc-client-0.9.12.1) fails to emerge if either IPv6 or SOCK...
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High normal (vote)
Assignee: Martin Holzer (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-04-22 13:12 UTC by Alexander Rudyk
Modified: 2003-04-22 13:47 UTC (History)
1 user (show)

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 Alexander Rudyk 2003-04-22 13:12:54 UTC
If you try to emerge silc-client-0.9.12.1 and have either IPv6 or SOCKS5 enabled
in your USE variable the build will fail with a "command not found" error during
the configuration process.

The problem arises out of a missing \ at the end of line 33 in
silc-client-0.9.12.1.ebuild. 

It says:

        --with-logsdir=/var/log/${PN} \
        --with-simdir=/usr/lib/${PN} \
        --with-ncurses \
        --without-silcd                        <-- this line is evil
        ${myconf} \
        || die "./configure failed"

It should say:

        --with-logsdir=/var/log/${PN} \
        --with-simdir=/usr/lib/${PN} \
        --with-ncurses \
        --without-silcd \
        ${myconf} \
        || die "./configure failed"

Otherwise it will fail if ${myconf} is not empty. Unfortunately I don't know
anymore which rsync mirror I got the ebuild from.

Reproducible: Always
Steps to Reproduce:
1. activate IPv6 or SOCKS5 in your USE variable
2. emerge silc-client

Actual Results:  
Build fails during the configure process.

Expected Results:  
The ebuild should have installed.
Comment 1 Martin Holzer (RETIRED) gentoo-dev 2003-04-22 13:42:58 UTC
fixed in cvs
Comment 2 Dylan Carlson (RETIRED) gentoo-dev 2003-04-22 13:47:33 UTC
My bad.  Thanks Martin.