aboutsummaryrefslogtreecommitdiff
path: root/bin/doman
blob: a53c0def7b519838778114231b49d9b75e2843db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/bin/bash
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /local/data/ulm/cvs/history/var/cvsroot/gentoo-src/portage/bin/doman,v 1.18 2005/05/04 23:50:33 vapier Exp $

if [ $# -lt 1 ] ; then
	echo "$0: at least one argument needed" 1>&2
	exit 1
fi

PORTAGE_COMPRESS=${PORTAGE_COMPRESS:-gzip}
PORTAGE_COMPRESS_FLAGS=${PORTAGE_COMPRESS_FLAGS:--9}

BASE="/usr/share"
i18n=""

for x in "$@" ; do
	if [ "${x:0:6}" == "-i18n=" ] ; then
		i18n="${x:6}/"
	fi
	if [ "${x}" == ".keep" ] ; then
		continue
	fi

	suffix=${x##*.}

	case ${suffix} in
		gz|bz2|Z)
			compressed=${suffix}
			realname=${x%.*}
			suffix=${realname##*.}
			;;
		*)
			realname=${x}
			compressed=""
			;;
	esac

	mandir=${i18n}man${suffix:0:1}

	if echo ${mandir} | egrep -q 'man[0-9n](|f|p|pm)$' -; then
		if [ -s "${x}" ] ; then
			if [ ! -d "${D}${BASE}/man/${mandir}" ] ; then
				install -d "${D}${BASE}/man/${mandir}"
			fi

			install -m0644 "${x}" "${D}${BASE}/man/${mandir}"

			if [ -z "${compressed}" ] ; then
				"${PORTAGE_COMPRESS}" ${PORTAGE_COMPRESS_FLAGS} -f \
					"${D}${BASE}/man/${mandir}/${x##*/}"
			fi
		else
			echo "doman: ${x} does not exist" 1>&2
		fi
	else
		echo "doman: '${x}' is probably not a man page; skipping" 1>&2
	fi
done