Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 24727 - Partimage ebuild problem
Summary: Partimage ebuild problem
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: x86 Linux
: High normal (vote)
Assignee: Robin Johnson
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-07-18 05:12 UTC by Bill Tihen
Modified: 2004-04-25 15:14 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 Bill Tihen 2003-07-18 05:12:07 UTC
I have tried using the USE variables for partimage, but -login doesn't work.  

USE='-ssl' emerge partimage

works

USE='-ssl -login' emerge partimage

compiles the software with login expectations.

however, using the source software 

./configure --disable-ssl --disable-login

works fine.  

Please change the ebuild system in the src_compile() section to read more like:

# SSL is optional
local sslconf
use ssl || sslconf="--disable-ssl"
# Login is optional
local loginconf
use login || loginconf="--disable-login"
econf 
    ${sslconf} \
    ${loginconf} \
    --infodir=/usr/share/doc/${PF}
.
.
.

This is especially important until the partimage ssl stuff gets fixed on the CD
(so that they keys are included and can be copied to the server config for those
who wish -- bug #14687) 

PS -- I wish the forums would also search the bug database -- it would have
saved me a lot of time.
Comment 1 Robin Johnson archtester Gentoo Infrastructure gentoo-dev Security 2004-04-25 15:14:13 UTC
fixed in the new 0.6.4 version that is now in portage.