Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 356715 - [gnome-overlay] gnome-base/gnome-control-center-9999 ebuild is broken, does not generate configure
Summary: [gnome-overlay] gnome-base/gnome-control-center-9999 ebuild is broken, does n...
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] GNOME (show other bugs)
Hardware: All Linux
: High normal (vote)
Assignee: Gentoo Linux Gnome Desktop Team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks: gnome3
  Show dependency tree
 
Reported: 2011-02-27 16:48 UTC by Alexandre Rostovtsev (RETIRED)
Modified: 2012-02-12 14:11 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 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!