Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 477024 | Differences between
and this patch

Collapse All | Expand All

(-)gentoo-bashcomp-20121024.ebuild (-8 / +7 lines)
Lines 1-9 Link Here
1
# Copyright 1999-2012 Gentoo Foundation
1
# Copyright 1999-2013 Gentoo Foundation
2
# Distributed under the terms of the GNU General Public License v2
2
# Distributed under the terms of the GNU General Public License v2
3
# $Header: /var/cvsroot/gentoo-x86/app-shells/gentoo-bashcomp/gentoo-bashcomp-20121024.ebuild,v 1.1 2012/10/24 04:34:01 dirtyepic Exp $
3
# $Header: /var/cvsroot/gentoo-x86/app-shells/gentoo-bashcomp/gentoo-bashcomp-20121024.ebuild,v 1.1 2012/10/24 04:34:01 dirtyepic Exp $
4
4
5
EAPI=4
5
EAPI=5
6
inherit eutils prefix
6
inherit bash-completion-r1 eutils prefix
7
7
8
DESCRIPTION="Gentoo-specific bash command-line completions (emerge, ebuild, equery, repoman, layman, etc)"
8
DESCRIPTION="Gentoo-specific bash command-line completions (emerge, ebuild, equery, repoman, layman, etc)"
9
HOMEPAGE="http://www.gentoo.org/"
9
HOMEPAGE="http://www.gentoo.org/"
Lines 14-20 Link Here
14
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris"
14
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris"
15
IUSE=""
15
IUSE=""
16
16
17
RDEPEND="app-shells/bash-completion"
17
RDEPEND=">=app-shells/bash-completion-2.1-r1"
18
18
19
src_prepare() {
19
src_prepare() {
20
	eprefixify gentoo
20
	eprefixify gentoo
Lines 23-32 Link Here
23
src_compile() {	:; } # There is a useless Makefile in the distfile
23
src_compile() {	:; } # There is a useless Makefile in the distfile
24
24
25
src_install() {
25
src_install() {
26
	insinto /usr/share/bash-completion
26
	insinto "$(get_bashcompdir)"
27
	doins gentoo 	|| die "failed to install gentoo module"
27
	doins gentoo repoman layman
28
	doins repoman 	|| die "failed to install repoman module"
28
29
	doins layman 	|| die "failed to install layman module"
30
	dodoc AUTHORS ChangeLog TODO
29
	dodoc AUTHORS ChangeLog TODO
31
}
30
}
32
31

Return to bug 477024