Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 12903 - gnushogi ebuild doesn't install xshogi
Summary: gnushogi ebuild doesn't install xshogi
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] Games (show other bugs)
Hardware: All All
: High normal (vote)
Assignee: José Alberto Suárez López
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-12-29 06:15 UTC by Stuart Bouyer
Modified: 2002-12-29 11:06 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 Stuart Bouyer 2002-12-29 06:15:08 UTC
As per the summary, gnushogi doesn't install the xshogi part of the package.

Currently src_install reads

src_install() {
        dogamesbin gnushogi/gnushogi
        use X && xshogi/xshogi
        dogameslib gnushogi/gnushogi.bbk
        prepgamesdirs
        dodoc COPYING INSTALL.generic INSTALL README NEWS CONTRIB 
}


as you can see if the user has use X then src_install tries to run xshogi (2nd
line), rather than installing it.

It should be changed to 

src_install() {
        dogamesbin gnushogi/gnushogi
        use X && dogamesbin xshogi/xshogi
        dogameslib gnushogi/gnushogi.bbk
        prepgamesdirs
        dodoc COPYING INSTALL.generic INSTALL README NEWS CONTRIB 
}

StuBear
Comment 1 José Alberto Suárez López 2002-12-29 11:06:03 UTC
thx Stu