Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!

Bug 356715

Summary: [gnome-overlay] gnome-base/gnome-control-center-9999 ebuild is broken, does not generate configure
Product: Gentoo Linux Reporter: Alexandre Rostovtsev (RETIRED) <tetromino>
Component: [OLD] GNOMEAssignee: Gentoo Linux Gnome Desktop Team <gnome>
Status: RESOLVED FIXED    
Severity: normal    
Priority: High    
Version: unspecified   
Hardware: All   
OS: Linux   
Whiteboard:
Package list:
Runtime testing required: ---
Bug Depends on:    
Bug Blocks: 353071    

Description Alexandre Rostovtsev (RETIRED) gentoo-dev 2011-02-27 16:48:01 UTC
gnome-base/gnome-control-center-9999 ebuild fails because it neglects to generate a configure script:

Cloning into /var/tmp/portage/gnome-base/gnome-control-center-9999/work/gnome-control-center-9999...
done.
>>> Unpacked to /var/tmp/portage/gnome-base/gnome-control-center-9999/work/gnome-control-center-9999
>>> Source unpacked in /var/tmp/portage/gnome-base/gnome-control-center-9999/work
>>> Preparing source in /var/tmp/portage/gnome-base/gnome-control-center-9999/work/gnome-control-center-9999 ...
>>> Source prepared.
>>> Configuring source in /var/tmp/portage/gnome-base/gnome-control-center-9999/work/gnome-control-center-9999 ...
 * dbus:
 * ERROR: gnome-base/gnome-control-center-9999 failed (configure phase):
 *   no configure script found

To fix this problem, the ebuild's src_prepare must run gnome2-live_src_prepare for live versions:

src_prepare() {
    G2CONF="${G2CONF}
        --disable-update-mimedb
        --disable-static
        --disable-schemas-install
        $(use_with socialweb libsocialweb)"
    DOCS="AUTHORS ChangeLog NEWS README TODO"
    [[ ${PV} = 9999 ]] && gnome2-live_src_prepare
}
Comment 1 Nirbheek Chauhan (RETIRED) gentoo-dev 2011-02-28 07:46:56 UTC
This is now fixed, thanks for reporting!