blob: bd81522f8d33cea377f3ff6866e257f506a258cf (
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/bash-completion-1.0-r5.ebuild,v 1.9 2009/10/03 16:51:00 maekke Exp $
EAPI="2"
inherit eutils
DESCRIPTION="Programmable Completion for bash"
HOMEPAGE="http://bash-completion.alioth.debian.org/"
SRC_URI="mirror://debian/pool/main/b/bash-completion/${PN}_${PV}.orig.tar.gz ->
bash-completion-1.0.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86"
IUSE=""
DEPEND=""
RDEPEND="app-admin/eselect
|| (
>=app-shells/bash-2.05a
app-shells/zsh
)
sys-apps/miscfiles
!<=games-misc/cowsay-3.03-r1"
PDEPEND="app-shells/gentoo-bashcomp"
src_prepare() {
epatch "${FILESDIR}/${PN}-1.0-gentoo.patch"
epatch "${FILESDIR}/${PN}-1.0-bash4.patch"
# module-init-tools-3.8 changed locations
sed -i 's:/sbin/lsmod:/bin/lsmod:' bash_completion
# Fixed in next release
epatch "${FILESDIR}/${PN}-1.0-shadow-compat.patch"
}
src_install() {
emake DESTDIR="${D}" install || die
# Upstream will soon be splitting this for us.
# split /etc/bash_completion into three parts:
# 1. /usr/share/bash-completion/.pre -- hidden from eselect
# 2. /usr/share/bash-completion/base -- eselectable
# 3. /usr/share/bash-completion/.post -- hidden from eselect
dodir /usr/share/bash-completion
awk -v D="$D" '
BEGIN { out=".pre" }
/^# A lot of the following one-liners/ { out="base" }
/^# start of section containing completion functions called by other functions/ { out=".pre" }
/^# start of section containing completion functions for bash built-ins/ { out="base" }
/^# source completion directory/ { out="" }
/^unset -f have/ { out=".post" }
out != "" { print > D"/usr/share/bash-completion/"out }' \
bash_completion || die "failed to split bash_completion"
dodir /etc/profile.d
cp bash_completion.sh "${D}/etc/profile.d/bash-completion.sh" \
|| die "cp failed"
dodoc AUTHORS CHANGES README TODO || die "dodocs failes"
# bug 146726
rm "${D}/etc/bash_completion.d/svk" || die "rm failed"
# Upstream provides no easy way to move modules. sigh
dodir /usr/share/bash-completion
mv "${D}"/etc/bash_completion.d/* "${D}/usr/share/bash-completion/" \
|| die "installation failed to move files"
# cleanup the mess
rm -r "${D}"/etc/bash_completion{,.d} || die "rm failed"
}
pkg_postinst() {
elog "Any user can enable the base completions without editing their"
elog ".bashrc by running:"
elog
elog " eselect bashcomp enable base"
elog
elog "The system administrator can also be enable this globally with"
elog
elog " eselect bashcomp enable --global base"
elog
elog "Additional completion functions can also be enabled or"
elog "disabled using eselect's bashcomp module."
elog
elog "If you use non-login shells you still need to source"
elog "/etc/profile.d/bash-completion.sh in your ~/.bashrc."
if has_version 'app-shells/zsh' ; then
elog "If you are interested in using the provided bash completion functions with"
elog "zsh, valuable tips on the effective use of bashcompinit are available:"
elog " http://www.zsh.org/mla/workers/2003/msg00046.html"
#elog " http://zshwiki.org/ZshSwitchingTo" (doesn't exist)
elog
fi
}
|