blob: 8f6573432860e0eacd2b312ce3fddb62533b1bea [file] [log] [blame]
<chapter id='config-bashrc'>
<title>Bashrc Configuration</title>
<sect1 id='config-bashrc-locations'>
<title>bashrc locations</title>
<para>
If one or more bashrc files exist in the following locations, they will
be sourced before the ebuild is executed in the following order:
</para>
<orderedlist>
<listitem><para><filename>/etc/portage/bashrc</filename></para></listitem>
<listitem><para><filename>/etc/portage/env/${CATEGORY}/${PN}</filename></para></listitem>
<listitem><para><filename>/etc/portage/env/${CATEGORY}/${PN}:${SLOT}</filename></para></listitem>
<listitem><para><filename>/etc/portage/env/${CATEGORY}/${P}</filename></para></listitem>
<listitem><para><filename>/etc/portage/env/${CATEGORY}/${PF}</filename></para></listitem>
</orderedlist>
</sect1>
<sect1 id='config-bashrc-ebuild-phase-hooks'>
<title>Ebuild Phase Hooks</title>
<para>
A phase hook function name begins with a pre_ or post_
prefix to indicate that it will be called before or after
one of the <link linkend='package-ebuild-phases'>ebuild phases</link>.
The prefix is followed by the name of the ebuild function that the hook
will be associated with. For example, a hook named pre_src_compile
will be called before src_compile, and a hook named post_src_compile
will be called after src_compile.
</para>
</sect1>
<sect1 id='config-bashrc-ebuild-die-hooks'>
<title>Ebuild Die Hooks</title>
<para>
The register_die_hook function registers one or more names of functions
to call when the ebuild fails for any reason, including file collisions
with other packages.
</para>
</sect1>
<sect1 id='config-bashrc-ebuild-success-hooks'>
<title>Ebuild Success Hooks</title>
<para>
The register_success_hook function registers one or more names of
functions to call when the ebuild builds and/or installs successfully.
</para>
</sect1>
</chapter>