blob: a4024439f9aa11e567719b8d07830bc094b1f18b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pychecker/pychecker-0.8.11.ebuild,v 1.4 2002/10/20 18:47:32 vapier Exp $
S=${WORKDIR}/${P}
DESCRIPTION="PyChecker is a tool for finding common bugs in python source code."
SRC_URI="mirror://sourceforge/pychecker/${P}.tar.gz"
HOMEPAGE="http://pychecker.sourceforge.net/"
DEPEND="virtual/python"
SLOT="0"
KEYWORDS="x86 sparc sparc64 alpha"
LICENSE="BSD"
inherit distutils
src_install(){
mydoc="pycheckrc TODO"
distutils_src_install
}
|