Theres an linebreak in the ebuild that should not be there I think. See app-vim/phpdocs/phpdocs-0.26.ebuild line 15/16. Reproducible: Always Steps to Reproduce: 1. emerge phpdocs Actual Results: emerge failed Expected Results: emerge without errors =)
which linebreak do you mean? please attach a patch.
Ah i got it. There a \013(shown as ^M in vi) in the ebuild which sometimes gets lost during rsync (don't ask me why!?) This should fix it: 15,16c15 < sed -i 's/ < $//' ${S}/plugin/phpdoc.vim || die "sed failed" --- > sed -i 's/\r$//' ${S}/plugin/phpdoc.vim || die "sed failed"
fixed in cvs