blob: dbfa8aa1542ccd00affdcfc407e1100cb8b99484 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/eclass/bash-completion.eclass,v 1.5 2004/11/07 01:42:54 ka0ttic Exp $
#
# Simple eclass that provides an interface for installing
# contributed (ie not included in bash-completion proper)
# bash-completion scripts.
#
# Author: Aaron Walker <ka0ttic@gentoo.org>
#
# Please assign any bug reports to shell-tools@gentoo.org.
ECLASS="bash-completion"
INHERITED="${INHERITED} ${ECLASS}"
EXPORT_FUNCTIONS pkg_postinst
IUSE="${IUSE} bash-completion"
#RDEPEND="${RDEPEND}
# bash-completion? ( app-shells/bash-completion-config )"
# dobashcompletion <file> <new file>
# First arg, <file>, is required and is the location of the bash-completion
# script to install. Second arg, <new file>, is optional and specifies an
# alternate filename to install as.
dobashcompletion() {
[ -z "$1" ] && die "usage: dobashcompletion <file> <new file>"
if useq bash-completion ; then
insinto /usr/share/bash-completion
newins "$1" "${2:-${1##*/}}" || die "Failed to install $1"
fi
}
bash-completion_pkg_postinst() {
if useq bash-completion ; then
echo
einfo "To enable command-line completion for ${PN}, run:"
# NOTE: this is temporary; bash-completion-config will be in RDEPEND
# once it goes stable and can be used as a dependency.
if has_version 'app-shells/bash-completion-config' ; then
einfo
einfo " bash-completion-config --install ${PN}"
einfo
einfo "to install locally, or"
einfo
einfo " bash-completion-config --global --install ${PN}"
einfo
einfo "to install system-wide."
einfo "Read bash-completion-config(1) for more information."
else
einfo " ln -s /usr/share/bash-completion/${PN} \\ "
einfo " /etc/bash_completion.d/"
fi
echo
fi
}
|