blob: 8349d5f231939835257c456cbd6cd9d7267badce (
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
29
30
31
32
33
34
35
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pysnmp/pysnmp-4.1.10a.ebuild,v 1.1 2008/06/23 06:39:57 dev-zero 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="~amd64 ~ia64 ~ppc ~sparc ~x86"
IUSE=""
DEPEND=">=dev-python/pyasn1-0.0.6a
dev-python/pycrypto"
RDEPEND="${DEPEND}"
src_install(){
distutils_src_install
dodoc CHANGES
dohtml docs/*.{html,gif}
insinto /usr/share/doc/${PF}
doins -r examples docs/mibs
}
pkg_postinst() {
distutils_pkg_postinst
elog "You may also be interested in the following packages: "
elog "dev-python/pysnmp-apps - example programs using pysnmp"
elog "dev-python/pysnmp-mibs - IETF and other mibs"
elog "net-libs/libsmi - to dump MIBs in python format"
}
|