commit: fd0ed8f1e80230b71d48405f3a9b83622d4247c4
Author: Mike Frysinger <vapier <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 14 04:15:12 2015 +0000
Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org>
CommitDate: Fri Aug 14 04:15:34 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd0ed8f1
eclass: more misc doc fixes
eclass/dotnet.eclass | 12 ++++++++----
eclass/mozcoreconf-v3.eclass | 2 +-
2 files changed, 9 insertions(+), 5 deletions(-)
diff --git a/eclass/dotnet.eclass b/eclass/dotnet.eclass
index 989b0b0..16d45dd 100644
--- a/eclass/dotnet.eclass
+++ b/eclass/dotnet.eclass
@@ -36,7 +36,8 @@ for x in ${USE_DOTNET}; do
done
# @FUNCTION: dotnet_pkg_setup
-# @DESCRIPTION: This function set FRAMEWORK
+# @DESCRIPTION:
+# This function set FRAMEWORK.
dotnet_pkg_setup() {
for x in ${USE_DOTNET} ; do
case ${x} in
@@ -79,14 +80,16 @@ export XDG_CONFIG_HOME="${T}"
unset MONO_AOT_CACHE
# @FUNCTION: exbuild
-# @DESCRIPTION: run xbuild with Release configuration and configurated
FRAMEWORK
+# @DESCRIPTION:
+# Run xbuild with Release configuration and configurated FRAMEWORK.
exbuild() {
elog "xbuild ""$@"" /p:Configuration=Release /tv:4.0
/p:TargetFrameworkVersion=v""${FRAMEWORK}"" || die"
xbuild "$@" /p:Configuration=Release /tv:4.0
/p:TargetFrameworkVersion=v"${FRAMEWORK}" || die
}
# @FUNCTION: egacinstall
-# @DESCRIPTION: install package to GAC
+# @DESCRIPTION:
+# Install package to GAC.
egacinstall() {
use !prefix && has "${EAPI:-0}" 0 1 2 && ED="${D}"
gacutil -i "${1}" \
@@ -97,7 +100,8 @@ egacinstall() {
}
# @FUNCTION: dotnet_multilib_comply
-# @DESCRIPTION: multilib comply
+# @DESCRIPTION:
+# multilib comply
dotnet_multilib_comply() {
use !prefix && has "${EAPI:-0}" 0 1 2 && ED="${D}"
local dir finddirs=() mv_command=${mv_command:-mv}
diff --git a/eclass/mozcoreconf-v3.eclass b/eclass/mozcoreconf-v3.eclass
index 01c14ee..62751ba 100644
--- a/eclass/mozcoreconf-v3.eclass
+++ b/eclass/mozcoreconf-v3.eclass
@@ -103,7 +103,7 @@ moz_pkgsetup() {
}
# @FUNCTION: mozconfig_init
-# @DESCRIPTION
+# @DESCRIPTION:
# Initialize mozilla configuration and populate with core settings.
# This should be called in src_configure before any other mozconfig_*
functions.
mozconfig_init() {