Hi there,
I recently wanted to install paw but the 2.14.04-r2 ebuild died with "sed failed".
After a fast search, I found that tries to patch wrong directories :
the "${S}" variable is "[...]/paw-
2.14.04.dfsg.orig" but the real directory is "[...]/paw_2.14.04.dfsg.orig"
To make it compiles, I've added to the ebuild's 'src_unpack' function the 2 lines below:
mv "${WORKDIR}/${DEB_PN}_${DEB_PV}.orig" ${S}
mv "${WORKDIR}/${DEB_PN}-${DEB_PV}/debian" ${S}/
I'm sure there is a better way for this bug, but it works.
Kind regards
Olivier Crauste