Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 70697 - bad symlink for skins in beep-media-player
Summary: bad symlink for skins in beep-media-player
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High normal
Assignee: Tony Vroon (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-11-10 12:25 UTC by Christian Häßler
Modified: 2004-12-16 07:49 UTC (History)
1 user (show)

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 Christian Häßler 2004-11-10 12:25:58 UTC
I had detected this failure in beep-media-player-0.9.7_rc2-r3.ebuild:

    # We'll use xmms skins
    dosym /usr/share/xmms/Skins /usr/share/beep/Skins

this part in beep-media-player-0.9.7_rc2-r3.ebuild is fault because beep-media-player use the directory /usr/share/bmp/. The right version is something like this:

# We'll use xmms skins
    for SKIN in /usr/share/xmms/Skins/* ; do
        dosym "$SKIN" /usr/share/bmp/Skins/
    done

It works realy fine.

Reproducible: Always
Steps to Reproduce:
1. emerge beep-media-player
Comment 1 Tony Vroon (RETIRED) gentoo-dev 2004-12-16 07:49:36 UTC
Your way of symlinking is now used in the beep-media-player 0.9.7 ebuild. Thank you for your report :)