blob: 4e267e56ef2885c62ea2300a710540f2d536ad2b (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-shells/gentoo-bashcomp/gentoo-bashcomp-20050516.ebuild,v 1.13 2008/05/04 12:20:46 pva Exp $
DESCRIPTION="Gentoo-specific bash command-line completions (emerge, ebuild, equery, etc)"
HOMEPAGE="http://developer.berlios.de/projects/gentoo-bashcomp/"
SRC_URI="mirror://berlios/${PN}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 mips ppc ppc64 s390 sparc x86"
IUSE=""
RDEPEND=">=app-shells/bash-completion-20050121-r3"
src_install() {
make DESTDIR="${D}" install || die "make install failed"
dodoc AUTHORS ChangeLog TODO
}
pkg_postinst() {
local g="${ROOT}/etc/bash_completion.d/gentoo"
if [[ -e "${g}" && ! -L "${g}" ]] ; then
echo
ewarn "The gentoo completion functions have moved to /usr/share/bash-completion."
ewarn "Please run etc-update to replace /etc/bash_completion.d/gentoo with a symlink."
echo
fi
}
|