aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbin/ebuild-helpers/doman8
1 files changed, 5 insertions, 3 deletions
diff --git a/bin/ebuild-helpers/doman b/bin/ebuild-helpers/doman
index 85d5e2b4f..e428b7292 100755
--- a/bin/ebuild-helpers/doman
+++ b/bin/ebuild-helpers/doman
@@ -30,13 +30,15 @@ for x in "$@" ; do
suffix=${realname##*.}
fi
- if ! hasq "${EAPI:-0}" 0 1 && \
- [[ $x =~ (.*)\.([a-z][a-z](_[A-Z][A-Z])?)\.(.*) ]] ; then
+ if hasq "${EAPI:-0}" 2 3 || [[ -z ${i18n} ]] \
+ && ! hasq "${EAPI:-0}" 0 1 \
+ && [[ $x =~ (.*)\.([a-z][a-z](_[A-Z][A-Z])?)\.(.*) ]]
+ then
name=${BASH_REMATCH[1]##*/}.${BASH_REMATCH[4]}
mandir=${BASH_REMATCH[2]}/man${suffix:0:1}
else
name=${x##*/}
- mandir=${i18n}man${suffix:0:1}
+ mandir=${i18n#/}man${suffix:0:1}
fi