blob: 6ba7345a5fb3e8c364dbba12cd6f7158442dcdc5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/logging/logging-0.4.9.6.ebuild,v 1.3 2007/07/11 06:19:47 mr_bones_ Exp $
inherit distutils
DESCRIPTION="Logging module for Python"
HOMEPAGE="http://www.red-dove.com/python_logging.html"
SRC_URI="http://www.red-dove.com/logging-${PV}.tar.gz"
LICENSE="logging"
SLOT="0"
KEYWORDS="~amd64 ~ia64 ~ppc ~x86"
IUSE=""
DEPEND="virtual/python"
DOCS="liblogging.tex"
src_install() {
distutils_src_install
dohtml python_logging.html default.css
insinto /usr/share/doc/${PF}
doins -r test
}
|