# 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-20080521.ebuild,v 1.1 2008/05/21 19:00:17 nyhm Exp $ DESCRIPTION="Gentoo-specific bash command-line completions (emerge, ebuild, equery, etc)" HOMEPAGE="http://www.gentoo.org/" SRC_URI="mirror://gentoo/${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" src_install() { emake DESTDIR="${D}" install || die "emake install failed" dodoc AUTHORS ChangeLog NEWS 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 }