blob: 3c6b3bdcaa5f601168befe2b49fd49ad4ae57e70 (
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-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pysnmp/pysnmp-4.0.1a.ebuild,v 1.1 2005/04/14 20:06:03 kloeri Exp $
inherit distutils
DESCRIPTION="SNMP framework in Python. Not a wrapper."
HOMEPAGE="http://pysnmp.sf.net/"
SRC_URI="mirror://sourceforge/pysnmp/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~x86 ~sparc ~ppc"
IUSE=""
src_install(){
distutils_src_install
dodoc CHANGES COMPATIBILITY
dohtml -r docs/
cp -r examples ${D}/usr/share/doc/${PF}
}
|