diff options
author | Zac Medico <zmedico@gentoo.org> | 2008-11-14 07:43:29 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2008-11-14 07:43:29 +0000 |
commit | c781f054747a72665d20ca17350535b4a3094326 (patch) | |
tree | b04e56d7d1d9ca5cad640808fbf4b1f017f5bb3d | |
parent | 449c20fa3d4a8e4c685197ca8d75bbacbb4bde45 (diff) | |
download | portage-c781f054747a72665d20ca17350535b4a3094326.tar.gz portage-c781f054747a72665d20ca17350535b4a3094326.tar.bz2 portage-c781f054747a72665d20ca17350535b4a3094326.zip |
Use a table to condense the docs for the default_* phase functions.
svn path=/main/trunk/; revision=11902
-rw-r--r-- | man/ebuild.5 | 45 |
1 files changed, 22 insertions, 23 deletions
diff --git a/man/ebuild.5 b/man/ebuild.5 index bfb7caede..8c9da6c08 100644 --- a/man/ebuild.5 +++ b/man/ebuild.5 @@ -568,29 +568,28 @@ Initial working directory of $PWD. Calls the default phase function implementation for the currently executing phase. This function is supported beginning with \fBEAPI 2\fR. .TP -.B default_pkg_nofetch -Calls the default pkg_nofetch phase function implementation. -This function is supported beginning with \fBEAPI 2\fR. -.TP -.B default_src_unpack -Calls the default src_unpack phase function implementation. -This function is supported beginning with \fBEAPI 2\fR. -.TP -.B default_src_prepare -Calls the default src_prepare phase function implementation. -This function is supported beginning with \fBEAPI 2\fR. -.TP -.B default_src_configure -Calls the default src_configure phase function implementation. -This function is supported beginning with \fBEAPI 2\fR. -.TP -.B default_src_compile -Calls the default src_compile phase function implementation. -This function is supported beginning with \fBEAPI 2\fR. -.TP -.B default_src_test -Calls the default src_test phase function implementation. -This function is supported beginning with \fBEAPI 2\fR. +.B default_* +Beginning with \fBEAPI 2\fR, the default pkg_nofetch and src_* phase +functions are accessible via a function having a name that begins with +default_ and ends with the respective phase function name. For example, +a call to a function with the name default_src_compile is equivalent to +a call to the default src_compile implementation. + +.RS +.TS +l +_ +l. +Default Phase Functions + +default_pkg_nofetch +default_src_unpack +default_src_prepare +default_src_configure +default_src_compile +default_src_test +.TE +.RE .SH "HELPER FUNCTIONS: GENERAL" .TP \fBdie\fR \fI[reason]\fR |