Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 165002 - gnome-extra/gnome-games-2.16.2 asks for keyboard input during install
Summary: gnome-extra/gnome-games-2.16.2 asks for keyboard input during install
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:
 
Reported: 2007-02-02 16:41 UTC by Ulrich Müller
Modified: 2007-02-04 19:17 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 Ulrich Müller gentoo-dev 2007-02-02 16:41:32 UTC
emerge of gnome-games-2.16.2 stops in src_install() asking for keyboard input:

gzip: /var/tmp/portage/gnome-extra/gnome-games-2.16.2/image/usr/share/doc/gnome-games-2.16.2/./AUTHORS.gz already exists; do you wish to overwrite (y or n)?

This happens for files AUTHORS, ChangeLog, NEWS, README, and TODO (they are installed by gnome2.eclass and then again in the first "for" loop in src_install).

Proposed bugfix:
Add a flag "-mindepth 1" to the first "find" command in src_install():
-    $(find . -maxdepth 1 -type d ! -name po ! -name libgames-support); do
+    $(find . -mindepth 1 -maxdepth 1 -type d ! -name po ! -name libgames-support); do
Comment 1 Daniel Gryniewicz (RETIRED) gentoo-dev 2007-02-04 16:24:45 UTC
This has got to be related to your bashrc somehow, as the default environment doesn't ask you to overwrite; that said, that loop is definitely wrong for gnome-games, which has tons of authors files.  I don't think your loop is right either, although it will solve your problems, because it will skip all the extra AUTHORs files.  I'll try to come up with a better solution.
Comment 2 Daniel Gryniewicz (RETIRED) gentoo-dev 2007-02-04 16:33:31 UTC
Ah, I misunderstood your proposed fix.  It would work.  I've just removed those files from the DOCS variable.
Comment 3 Ulrich Müller gentoo-dev 2007-02-04 19:17:12 UTC
(In reply to comment #1)
> This has got to be related to your bashrc somehow, as the default environment
> doesn't ask you to overwrite;

The bug was triggered by the new "ecompress" feature of portage, see bug #164971 for a discussion.