blob: 91c92d7d2653c4f66e492382908aef09f8cb97b8 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-client/pybugz/pybugz-0.7.4.ebuild,v 1.1 2009/05/01 23:13:52 williamh Exp $
EAPI=2
inherit distutils
DESCRIPTION="Command line interface to (Gentoo) Bugzilla"
HOMEPAGE="http://www.liquidx.net/pybugz"
SRC_URI="http://pybugz.googlecode.com/files/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="zsh-completion"
DEPEND="|| ( >=dev-lang/python-2.5[readline]
( >=dev-lang/python-2.4[readline]
dev-python/elementtree ) )"
RDEPEND="zsh-completion? ( app-shells/zsh )"
src_install() {
distutils_src_install
if use zsh-completion ; then
insinto /usr/share/zsh/site-functions
newins contrib/zsh-completion _pybugz
fi
}
|