blob: c70586089fce02fca57fe07df14c686f5bb8b1d6 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/bpython/bpython-0.9.2.ebuild,v 1.2 2009/06/07 10:57:44 grozin Exp $
EAPI=2
inherit distutils
DESCRIPTION="Syntax highlighting and autocompletion for the python interpreter"
HOMEPAGE="http://www.${PN}-interpreter.org/"
SRC_URI="${HOMEPAGE}/releases/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND="dev-python/setuptools"
# setuptools is needed at runtime for the wrapper script
RDEPEND="${DEPEND}
dev-python/pygments
dev-python/pyparsing"
DOCS="sample.ini"
src_prepare() {
distutils_src_prepare
epatch "${FILESDIR}"/${P}.patch
}
|