# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/eclass/bash-completion.eclass,v 1.17 2008/07/17 09:38:08 pva Exp $ # @ECLASS: bash-completion.eclass # @MAINTAINER: # shell-tools@gentoo.org. # # Original author: Aaron Walker # @BLURB: An Interface for installing contributed bash-completion scripts # @DESCRIPTION: # Simple eclass that provides an interface for installing # contributed (ie not included in bash-completion proper) # bash-completion scripts. # @ECLASS-VARIABLE: BASH_COMPLETION_NAME # @DESCRIPTION: # Install the completion script with this name (see also dobashcompletion) EXPORT_FUNCTIONS pkg_postinst IUSE="bash-completion" # bash-completion-config is deprecated in favor of eselect, # however, eselect currently lacks stable keywords. RDEPEND="bash-completion? ( || ( app-admin/eselect app-shells/bash-completion-config ) )" # @FUNCTION: dobashcompletion # @USAGE: < file > [ new_file ] # @DESCRIPTION: # First arg, , is required and is the location of the bash-completion # script to install. If the variable BASH_COMPLETION_NAME is set in the # ebuild, dobashcompletion will install as # /usr/share/bash-completion/$BASH_COMPLETION_NAME. If it is not set, # dobashcompletion will check if a second arg [new_file] was passed, installing as # the specified name. Failing both these checks, dobashcompletion will # install the file as /usr/share/bash-completion/${PN}. dobashcompletion() { [[ -z "$1" ]] && die "usage: dobashcompletion " [[ -z "${BASH_COMPLETION_NAME}" ]] && BASH_COMPLETION_NAME="${2:-${PN}}" if useq bash-completion ; then insinto /usr/share/bash-completion newins "$1" "${BASH_COMPLETION_NAME}" || die "Failed to install $1" fi } # @FUNCTION: bash-completion_pkg_postinst # @DESCRIPTION: # The bash-completion pkg_postinst function, which is exported bash-completion_pkg_postinst() { if useq bash-completion ; then echo einfo "To enable command-line completion for ${PN}, run:" einfo if has_version app-admin/eselect ; then einfo " eselect bashcomp enable ${BASH_COMPLETION_NAME:-${PN}}" else einfo " bash-completion-config --install ${BASH_COMPLETION_NAME:-${PN}}" einfo einfo "to install locally, or" einfo einfo " bash-completion-config --global --install ${BASH_COMPLETION_NAME:-${PN}}" einfo einfo "to install system-wide." einfo "Read bash-completion-config(1) for more information." fi echo fi }