| 1 |
# Copyright 1999-2011 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/sys-apps/ack/ack-1.94.ebuild,v 1.1 2011/03/09 17:16:11 tove Exp $
|
| 4 |
|
| 5 |
EAPI=3
|
| 6 |
|
| 7 |
MODULE_AUTHOR=PETDANCE
|
| 8 |
inherit perl-module bash-completion
|
| 9 |
|
| 10 |
DESCRIPTION="ack is a tool like grep, aimed at programmers with large trees of heterogeneous source code"
|
| 11 |
HOMEPAGE="http://betterthangrep.com/ ${HOMEPAGE}"
|
| 12 |
|
| 13 |
LICENSE="Artistic-2"
|
| 14 |
SLOT="0"
|
| 15 |
KEYWORDS="~amd64 ~x86 ~x86-interix ~amd64-linux ~x86-linux ~x86-macos"
|
| 16 |
IUSE=""
|
| 17 |
|
| 18 |
SRC_TEST=do
|
| 19 |
|
| 20 |
DEPEND=">=dev-perl/File-Next-1.02"
|
| 21 |
RDEPEND="${DEPEND}"
|
| 22 |
|
| 23 |
src_install() {
|
| 24 |
perl-module_src_install
|
| 25 |
dobashcompletion etc/ack.bash_completion.sh
|
| 26 |
}
|
| 27 |
|
| 28 |
pkg_postinst() {
|
| 29 |
bash-completion_pkg_postinst
|
| 30 |
}
|