Skip to content

Commit

Permalink
eclass: more misc doc fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
vapier committed Aug 14, 2015
1 parent ef56e60 commit fd0ed8f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
12 changes: 8 additions & 4 deletions eclass/dotnet.eclass
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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}" \
Expand All @@ -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}
Expand Down
2 changes: 1 addition & 1 deletion eclass/mozcoreconf-v3.eclass
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit fd0ed8f

Please sign in to comment.