diff options
Diffstat (limited to 'app-shells/bash-completion-config/bash-completion-config-0.8-r1.ebuild')
-rw-r--r-- | app-shells/bash-completion-config/bash-completion-config-0.8-r1.ebuild | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/app-shells/bash-completion-config/bash-completion-config-0.8-r1.ebuild b/app-shells/bash-completion-config/bash-completion-config-0.8-r1.ebuild deleted file mode 100644 index 6bb4d8234a4d..000000000000 --- a/app-shells/bash-completion-config/bash-completion-config-0.8-r1.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion-config/bash-completion-config-0.8-r1.ebuild,v 1.2 2005/04/08 12:30:03 corsair Exp $ - -MY_PN="bashcomp-config" -MY_P="${MY_PN}-${PV}" -S="${WORKDIR}/${MY_P}" - -DESCRIPTION="Utility to easily add/remove bash-completions to your environment" -HOMEPAGE="http://developer.berlios.de/projects/bashcomp-config/" -SRC_URI="http://download.berlios.de/${MY_PN}/${MY_P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 mips ppc ppc64 ~ppc-macos s390 sparc x86" -IUSE="" - -DEPEND=">=app-shells/bash-2.05" - -src_install() { - make DESTDIR="${D}" install || die "make install failed" - dodoc AUTHORS TODO ChangeLog README - - insinto /usr/share/bash-completion - newins ${FILESDIR}/bashcomp ${PN} || die "failed to install bashcomp" -} - -# remove files that bashcomp-config provides for non-Gentoo platforms -pkg_preinst() { - [[ -e ${ROOT}/etc/profile.d/bash-completion ]] && rm -fr ${D}/etc - rm -fr ${D}/usr/share/${PN} -} - -pkg_postinst() { - echo - einfo "To enable command-line completion for bash-completion-config," - einfo "run the following as root:" - einfo - einfo " bash-completion-config --global --install bash-completion-config" - echo -} |