summaryrefslogtreecommitdiff
blob: 6fbb580388406a89fde9cca1b9dad1aa08b64e57 (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
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2
# Author: Thilo Bangert <bangert@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/bash-completion-20020427.ebuild,v 1.1 2002/04/28 00:21:55 bangert Exp $

S=${WORKDIR}/bash_completion

DESCRIPTION="Programmable Completion for bash (includes emerge and ebuild commands)."
SRC_URI="http://www.caliban.org/files/bash/${P}.tar.gz"
HOMEPAGE="http://www.caliban.org/bash/index.shtml#completion"

RDEPEND=">=sys-apps/bash-2.05a"


src_install () {

    insinto /etc
    doins bash_completion

    insinto /etc/bash_completion.d

    doins contrib/
    doins contrib/dict
    doins contrib/harbour
    doins contrib/isql
    doins contrib/larch
    doins contrib/lilypond
    doins contrib/p4
    doins contrib/ri
    
    doins ${FILESDIR}/gentoo.completion

    dodoc COPYING Changelog README

}

pkg_postinst() {

    echo
    einfo "See /usr/share/doc/${P}/README.gz on how to "
    einfo "add completion support to your bash"
    echo

}