aboutsummaryrefslogtreecommitdiff
blob: 03b10a8da5168e902232291d05d39309988a1153 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/bash
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

source "${PORTAGE_BIN_PATH}"/isolated-functions.sh || exit 1

# replaced by controllable compression in EAPI 4
___eapi_has_docompress && exit 0

if ! ___eapi_has_prefix_variables; then
	ED=${D}
fi

ret=0

while IFS= read -r -d '' mandir ; do
	mandir=${mandir#${ED}}
	prepman "${mandir%/man}"
	((ret|=$?))
done < <(find "${ED}" -type d -name man -print0)

exit ${ret}