summaryrefslogtreecommitdiffstats
path: root/bin/doman
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2009-03-12 00:28:45 +0000
committerZac Medico <zmedico@gentoo.org>2009-03-12 00:28:45 +0000
commitc9cf1a3a0bb3dc6ca5f801e6886fb4f0be90c767 (patch)
tree5e55a40e4c13d8c9ddd779ea6c4d395117d1fa99 /bin/doman
parentbc188208fd239d4f9f2be6ad5ab1ebdac3706572 (diff)
downloadportage-c9cf1a3a0bb3dc6ca5f801e6886fb4f0be90c767.tar.gz
portage-c9cf1a3a0bb3dc6ca5f801e6886fb4f0be90c767.tar.bz2
portage-c9cf1a3a0bb3dc6ca5f801e6886fb4f0be90c767.zip
Move ebuild helpers into an ebuild-helpers subdirectory.
svn path=/main/trunk/; revision=13063
Diffstat (limited to 'bin/doman')
-rwxr-xr-xbin/doman62
1 files changed, 0 insertions, 62 deletions
diff --git a/bin/doman b/bin/doman
deleted file mode 100755
index 48abc39fd..000000000
--- a/bin/doman
+++ /dev/null
@@ -1,62 +0,0 @@
-#!/bin/bash
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-source "${PORTAGE_BIN_PATH:-/usr/lib/portage/bin}"/isolated-functions.sh
-
-if [[ $# -lt 1 ]] ; then
- echo "$0: at least one argument needed" 1>&2
- exit 1
-fi
-
-i18n=""
-
-ret=0
-
-for x in "$@" ; do
- if [[ ${x:0:6} == "-i18n=" ]] ; then
- i18n=${x:6}/
- continue
- fi
- if [[ ${x:0:6} == ".keep_" ]] ; then
- continue
- fi
-
- suffix=${x##*.}
-
- # These will be automatically decompressed by ecompressdir.
- if hasq ${suffix} Z gz bz2 ; then
- realname=${x%.*}
- suffix=${realname##*.}
- fi
-
- if ! 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}
- fi
-
-
- if [[ ${mandir} =~ man[0-9n](f|p|pm)?$ ]] ; then
- if [[ -s ${x} ]] ; then
- if [[ ! -d ${D}/usr/share/man/${mandir} ]] ; then
- install -d "${D}/usr/share/man/${mandir}"
- fi
-
- install -m0644 "${x}" "${D}/usr/share/man/${mandir}/${name}"
- ((ret+=$?))
- elif [[ ! -e ${x} ]] ; then
- echo "!!! ${0##*/}: $x does not exist" 1>&2
- ((++ret))
- fi
- else
- vecho "doman: '${x}' is probably not a man page; skipping" 1>&2
- ((++ret))
- fi
-done
-
-exit ${ret}