The ebuild for mythgame-0.18.1 fails to build.
It provides a src_install function that tries to call some older (for whole
mythtv) version of eclass-provided function; however, it seems that there is a
plugin-specific eclass now.
Reproducible: Always
Steps to Reproduce:
1. Try to emerge mythgame-0.18.1
2.
3.
Actual Results:
Missing shell function call prevents emerging.
Fixing the src_install() function in the ebuild fixes the problem.
Expected Results:
The package builds and install properly.
The next corrected function in the ebuild fixes the problem (note the call to
the updated mythtv-plugins_src_install):
src_install () {
mythtv-plugins_src_install || die "install failed"
dodoc gamelist.xml
}