games-action/supertuxkart-0.6.2 builds fine, but fails at the ebuild install stage because it tries to install several files twice in the same install command: test -z "/usr/share/games/supertuxkart/data" || /bin/mkdir -p "/var/tmp/portage/games-action/supertuxkart-0.6.2/image//usr/share/games/supertuxkart/data" /usr/bin/install -c -m 644 ./stk_config.data ./coin_sign.items ./items.items ./bowling.projectile ./bubblegum.projectile ./cake.projectile ./plunger.projectile ./followtheleader.challenge ./anvil.collectable ./magnet.collectable ./parachute.collectable ./zipper.collectable ./bowling.projectile ./bubblegum.projectile ./cake.projectile ./plunger.projectile CREDITS '/var/tmp/portage/games-action/supertuxkart-0.6.2/image//usr/share/games/supertuxkart/data' /usr/bin/install: will not overwrite just-created `/var/tmp/portage/games-action/supertuxkart-0.6.2/image//usr/share/games/supertuxkart/data/bowling.projectile' with `./bowling.projectile' /usr/bin/install: will not overwrite just-created `/var/tmp/portage/games-action/supertuxkart-0.6.2/image//usr/share/games/supertuxkart/data/bubblegum.projectile' with `./bubblegum.projectile' /usr/bin/install: will not overwrite just-created `/var/tmp/portage/games-action/supertuxkart-0.6.2/image//usr/share/games/supertuxkart/data/cake.projectile' with `./cake.projectile' /usr/bin/install: will not overwrite just-created `/var/tmp/portage/games-action/supertuxkart-0.6.2/image//usr/share/games/supertuxkart/data/plunger.projectile' with `./plunger.projectile' make[3]: *** [install-dist_pkgdataDATA] Error 1 Examination shows that data/Makefile contains the following: # grep -n -C3 find data/Makefile 247-top_srcdir = .. 248-SUBDIRS = fonts items karts models music po sfx textures tracks grandprix 249-dist_pkgdata_DATA = \ 250: $(shell find $(srcdir) -name "*.data") \ 251: $(shell find $(srcdir) -name "*.items") \ 252: $(shell find $(srcdir) -name "*.projectile") \ 253: $(shell find $(srcdir) -name "*.cup") \ 254: $(shell find $(srcdir) -maxdepth 1 -name "*.challenge") \ 255: $(shell find $(srcdir) -name "*.collectable") \ 256: $(shell find $(srcdir) -name "*.projectile") \ 257- CREDITS 258- 259-all: all-recursive ...And there's the problem. Remove the duplicate line 256, and it's all happy. Reproducible: Always Steps to Reproduce: 1. emerge games-action/supertuxkart-0.6.2 2. 3. Actual Results: Install step fails.
fixed. thanks for the bug report.