diff options
-rw-r--r-- | doc/package/ebuild/eapi/4.docbook | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/doc/package/ebuild/eapi/4.docbook b/doc/package/ebuild/eapi/4.docbook index b2c558d55..86604cf14 100644 --- a/doc/package/ebuild/eapi/4.docbook +++ b/doc/package/ebuild/eapi/4.docbook @@ -157,5 +157,27 @@ Finally, please note that this new metadata key can be set by eclasses, and the pkg_pretend must not write to the filesystem. </para> </section> + <section id='package-ebuild-eapi-4_pre1-phases-src-install'> + <title>Default src_install no longer a no-op</title> + <programlisting> +src_install() { + if [[ -f Makefile || -f GNUmakefile || -f makefile ]] ; then + emake DESTDIR="${D}" install + fi + + if [[ -z $DOCS ]] ; then + local d + for d in README* ChangeLog AUTHORS NEWS TODO CHANGES \ + THANKS BUGS FAQ CREDITS CHANGELOG ; do + [[ -s "${d}" ]] && dodoc "${d}" + done + elif [[ $(declare -p DOCS) == "declare -a "* ]] ; then + dodoc "${DOCS[@]}" + else + dodoc ${DOCS} + fi +} + </programlisting> + </section> </section> </section> |