From the ebuild: src_install() { make install DESTDIR="${D}" || die "make install failed" dodoc AUTHORS ChangeLog NEWS README || die "dodoc failed" } Possible solution: src_install() { emake DESTDIR="${D}" install || die "emake failed" dodoc AUTHORS ChangeLog NEWS README || die "dodoc failed" } Tested ok with this modification to the ebuild.