diff options
author | 2009-09-03 16:23:11 +0000 | |
---|---|---|
committer | 2009-09-03 16:23:11 +0000 | |
commit | aa9a857ba10d93e53896c512bcaed1f2f6bf10f2 (patch) | |
tree | fdab4763f8b166505f8a19e3bdd26b6f54466eb7 /www-client/pybugz/pybugz-0.8.0.ebuild | |
parent | Version bump, 2 new bindings, Many bug fixes, binding updates, new supports (diff) | |
download | historical-aa9a857ba10d93e53896c512bcaed1f2f6bf10f2.tar.gz historical-aa9a857ba10d93e53896c512bcaed1f2f6bf10f2.tar.bz2 historical-aa9a857ba10d93e53896c512bcaed1f2f6bf10f2.zip |
version bump
Package-Manager: portage-2.2_rc40/cvs/Linux i686
Diffstat (limited to 'www-client/pybugz/pybugz-0.8.0.ebuild')
-rw-r--r-- | www-client/pybugz/pybugz-0.8.0.ebuild | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/www-client/pybugz/pybugz-0.8.0.ebuild b/www-client/pybugz/pybugz-0.8.0.ebuild new file mode 100644 index 000000000000..9cc2c7d409ff --- /dev/null +++ b/www-client/pybugz/pybugz-0.8.0.ebuild @@ -0,0 +1,32 @@ +# 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.8.0.ebuild,v 1.1 2009/09/03 16:23:11 williamh Exp $ + +EAPI="2" +SUPPORT_PYTHON_ABIS="1" +RESTRICT_PYTHON_ABIS="3*" +PYTHON_MODNAME="bugz" + +inherit bash-completion 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]" +RDEPEND="${DEPEND} + zsh-completion? ( app-shells/zsh )" + +src_install() { + distutils_src_install + + dobashcompletion contrib/bash-completion bugz + + if use zsh-completion ; then + insinto /usr/share/zsh/site-functions + newins contrib/zsh-completion _pybugz + fi +} |