blob: 1b2848acf26d2b0ac21e904e298b8c6953a5eefd (
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-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-common/logilab-common-0.10.0.ebuild,v 1.1 2005/05/27 17:40:13 liquidx Exp $
inherit distutils
DESCRIPTION="Several modules providing low level functionality shared among some python projects developed by logilab."
HOMEPAGE="http://www.logilab.org/projects/common/"
SRC_URI="ftp://ftp.logilab.org/pub/common/${P#logilab-}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~s390 ~sparc ~x86"
IUSE="doc"
DEPEND=""
S=${WORKDIR}/${P#logilab-}
PYTHON_MODNAME="logilab"
src_install() {
distutils_src_install
if use doc; then
dohtml -r doc/html/*
fi
}
|