| 1 | # Copyright 1999-2005 Gentoo Foundation |
1 | # Copyright 1999-2005 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/bash-completion.eclass,v 1.11 2005/05/08 01:35:58 ka0ttic Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/bash-completion.eclass,v 1.12 2005/06/13 14:06:54 ka0ttic Exp $ |
| 4 | # |
4 | # |
| 5 | # Simple eclass that provides an interface for installing |
5 | # Simple eclass that provides an interface for installing |
| 6 | # contributed (ie not included in bash-completion proper) |
6 | # contributed (ie not included in bash-completion proper) |
| 7 | # bash-completion scripts. |
7 | # bash-completion scripts. |
| 8 | # |
8 | # |
| … | |
… | |
| 41 | bash-completion_pkg_postinst() { |
41 | bash-completion_pkg_postinst() { |
| 42 | if useq bash-completion ; then |
42 | if useq bash-completion ; then |
| 43 | echo |
43 | echo |
| 44 | einfo "To enable command-line completion for ${PN}, run:" |
44 | einfo "To enable command-line completion for ${PN}, run:" |
| 45 | einfo |
45 | einfo |
| 46 | if has_version app-admin/eclectic ; then |
46 | if has_version app-admin/eselect ; then |
| 47 | einfo " eclectic bashcomp enable ${BASH_COMPLETION_NAME:-${PN}}" |
47 | einfo " eselect bashcomp enable ${BASH_COMPLETION_NAME:-${PN}}" |
| 48 | else |
48 | else |
| 49 | einfo " bash-completion-config --install ${BASH_COMPLETION_NAME:-${PN}}" |
49 | einfo " bash-completion-config --install ${BASH_COMPLETION_NAME:-${PN}}" |
| 50 | einfo |
50 | einfo |
| 51 | einfo "to install locally, or" |
51 | einfo "to install locally, or" |
| 52 | einfo |
52 | einfo |