summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2008-11-13 22:03:23 +0000
committerZac Medico <zmedico@gentoo.org>2008-11-13 22:03:23 +0000
commit51ffda5307762a8fc84c0609572d53e0c1604c9e (patch)
tree0ca85078e1c321b00791928131b984528e89bc40
parentd150808f53c884fc74735549b7ee5196b28687f5 (diff)
downloadportage-51ffda5307762a8fc84c0609572d53e0c1604c9e.tar.gz
portage-51ffda5307762a8fc84c0609572d53e0c1604c9e.tar.bz2
portage-51ffda5307762a8fc84c0609572d53e0c1604c9e.zip
Bug #244485 - Document src_prepare() and src_configure() phase functions.
svn path=/main/trunk/; revision=11891
-rw-r--r--man/ebuild.516
1 files changed, 15 insertions, 1 deletions
diff --git a/man/ebuild.5 b/man/ebuild.5
index 00a37e71e..1059643be 100644
--- a/man/ebuild.5
+++ b/man/ebuild.5
@@ -470,8 +470,22 @@ patches and other pre configure/compile modifications should be done here.
.br
Initial working directory of $WORKDIR.
.TP
+.B src_prepare
+All preparation of source code, such as application of patches, should be done
+here. This function is supported beginning with \fBEAPI 2\fR.
+.br
+Initial working directory of $S.
+.TP
+.B src_configure
+All necessary steps for configuration should be done here. This function is
+supported beginning with \fBEAPI 2\fR.
+.br
+Initial working directory of $S.
+.TP
.B src_compile
-All necessary steps for configuration and compilation should be done in here.
+With less than \fBEAPI 2\fR, all necessary steps for both configuration and
+compilation should be done here. Beginning with \fBEAPI 2\fR, only compilation
+steps should be done here.
.br
Initial working directory of $S.
.TP