blob: 4d173e658878c731a53ba73d71987c4cd714551d (
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-ruby/snmplib/snmplib-0.5.1.ebuild,v 1.2 2005/08/02 12:43:52 dholm Exp $
inherit ruby
IUSE=""
USE_RUBY="any"
MY_P="${P/snmplib/snmp}"
S="${WORKDIR}/${MY_P}"
DESCRIPTION="SNMP library implemented in pure Ruby"
HOMEPAGE="http://snmplib.rubyforge.org/"
SRC_URI="http://rubyforge.org/frs/download.php/5337/${MY_P}.tgz"
KEYWORDS="~ppc x86"
LICENSE="Ruby"
SLOT="0"
DEPEND="virtual/ruby"
src_install() {
ruby setup.rb install --prefix=${D} || die
dodoc README
docinto examples
dodoc ${S}/examples/*
}
|