Because plain make is used to compile mplayer in ebuild instead of emake, distcc feature is not used. Could the following line in mplayer ebuild make all || die "Failed to build MPlayer!" be replaced for example with make depend && emake || die "Failed to build MPlayer!" please? Thanks.
*** This bug has been marked as a duplicate of 64749 ***
This bug is not duplicate for #64749 - I do not have any problem compiling mplayer using -j4 distcc, it compiles just fine. But the original ebuilds discard -j4 make switch from MAKEOPTS simply because "make" is used instead of "emake" in the ebuild. With following patch to the ebuild, mplayer compiles just fine using distcc feature. Could you, please, apply it? *** mplayer-1.0_pre6.ebuild.orig 2005-01-09 07:37:25.000000000 +0100 --- mplayer-1.0_pre6.ebuild 2005-01-09 17:23:43.028049459 +0100 *************** *** 413,419 **** fi einfo "Make" ! make all || die "Failed to build MPlayer!" einfo "Make completed" # We build the shared libpostproc.so here so that our --- 413,419 ---- fi einfo "Make" ! make depend && emake || die "Failed to build MPlayer!" einfo "Make completed" # We build the shared libpostproc.so here so that our
ok, sorry for closing it. i havn't read it good enough, my bad. changes made in mplayer-1.0_pre6. thanks for the report.