Well... the descent 3 emerge fails every time because of this... just thought
someone might want to make descent3-1.4.0b-r1.ebuild
The problem is that the ebuild tries to create subdirectories in a directory
which hasn't been created yet. Nothing too severe, took me 0.74 seconds to fix.
Just thought I'd give a tiny bit back to gentoo... and prevent other people
from becoming slightly annoyed at this.
in section src_unpack...
......
src_unpack() {
mkdir ${S}/{a,b}
cd ${S}/a
unpack_makeself ${PN}-1.4.0a-x86.run
cd ${S}/b
unpack_makeself ${P}-x86.run
}
......
should have:
......
mkdir ${S}
......
at the top of it
thanks :P