summaryrefslogtreecommitdiff
path: root/net-mgmt
diff options
context:
space:
mode:
authorAkinori MUSHA <knu@FreeBSD.org>2000-08-31 18:09:43 +0000
committerAkinori MUSHA <knu@FreeBSD.org>2000-08-31 18:09:43 +0000
commit3802f14ef2d91a9d9a190026ab5fb8ebe20302c9 (patch)
tree11ef1dce6779338fe102084f24d6eed07eba7d5f /net-mgmt
parent* read command in ash already has the functionality (diff)
Add ruby-snmp, Ruby interface to UCD-SNMP library.
Notes
Notes: svn path=/head/; revision=32158
Diffstat (limited to 'net-mgmt')
-rw-r--r--net-mgmt/ruby-snmp/Makefile52
-rw-r--r--net-mgmt/ruby-snmp/distinfo1
-rw-r--r--net-mgmt/ruby-snmp/files/patch-aa45
-rw-r--r--net-mgmt/ruby-snmp/pkg-comment1
-rw-r--r--net-mgmt/ruby-snmp/pkg-descr6
-rw-r--r--net-mgmt/ruby-snmp/pkg-plist8
6 files changed, 113 insertions, 0 deletions
diff --git a/net-mgmt/ruby-snmp/Makefile b/net-mgmt/ruby-snmp/Makefile
new file mode 100644
index 000000000000..851dbf33e82f
--- /dev/null
+++ b/net-mgmt/ruby-snmp/Makefile
@@ -0,0 +1,52 @@
+# New ports collection makefile for: Ruby-SNMP
+# Date created: 1 Sep 2000
+# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
+#
+# $FreeBSD$
+#
+
+PORTNAME= snmp
+PORTVERSION= 0.2.1
+CATEGORIES= net ruby
+MASTER_SITES= http://w3cic.riken.go.jp/~tsuruoka/
+PKGNAMEPREFIX= ruby-
+DISTNAME= ruby${PORTNAME}-${PORTVERSION}
+EXTRACT_SUFX= .tgz
+DIST_SUBDIR= ruby
+
+MAINTAINER= knu@FreeBSD.org
+
+BUILD_DEPENDS= ruby:${PORTSDIR}/lang/ruby
+LIB_DEPENDS= snmp.4:${PORTSDIR}/net/ucd-snmp
+RUN_DEPENDS= ruby:${PORTSDIR}/lang/ruby
+
+WRKSRC= ${WRKDIR}/SNMP
+INSTALL_TARGET= site-install
+CONFIGURE_ARGS= --with-snmp-dir="${LOCALBASE}"
+
+PLIST_SUB= RUBY_VER="${RUBY_VER}" RUBY_ARCH="${RUBY_ARCH}"
+
+RUBY?= ${LOCALBASE}/bin/ruby
+RUBY_VER?= 1.4
+RUBY_ARCH?= ${ARCH}-freebsd${OSREL}
+
+DOCS_EN= mib_view.html \
+ rubysnmp.html \
+ sampleout.html \
+ snmp_module.html \
+ snmp_session.html \
+ snmp_var.html
+
+do-configure:
+ @cd ${WRKSRC}; \
+ ${SETENV} ${CONFIGURE_ENV} ${RUBY} extconf.rb ${CONFIGURE_ARGS}
+
+post-install:
+.if !defined(NOPORTDOCS)
+ ${MKDIR} ${PREFIX}/share/doc/ruby/snmp
+.for f in ${DOCS_EN}
+ ${INSTALL_DATA} ${WRKSRC}/${f} ${PREFIX}/share/doc/ruby/snmp/
+.endfor
+.endif
+
+.include <bsd.port.mk>
diff --git a/net-mgmt/ruby-snmp/distinfo b/net-mgmt/ruby-snmp/distinfo
new file mode 100644
index 000000000000..fcb93d287454
--- /dev/null
+++ b/net-mgmt/ruby-snmp/distinfo
@@ -0,0 +1 @@
+MD5 (ruby/rubysnmp-0.2.1.tgz) = 0c30ae623895aa5304c808fddf34dd81
diff --git a/net-mgmt/ruby-snmp/files/patch-aa b/net-mgmt/ruby-snmp/files/patch-aa
new file mode 100644
index 000000000000..8e10fe8dbe29
--- /dev/null
+++ b/net-mgmt/ruby-snmp/files/patch-aa
@@ -0,0 +1,45 @@
+--- extconf.rb.orig Mon Jul 10 19:18:51 2000
++++ extconf.rb Fri Sep 1 01:53:44 2000
+@@ -1,15 +1,11 @@
+-require './mkmf.rb'
++require 'mkmf.rb'
+
+ def crash(str)
+ printf " extconf failure:%s\n", str
+ exit 1
+ end
+
+-if /linux/ =~ RUBY_PLATFORM
+- $LDFLAGS = "-L/usr/lib"
+-else
+- $LDFLAGS = "-L/usr/local/lib"
+-end
++dir_config('snmp')
+
+ # Headers
+ ruby_h = have_header("ruby.h")
+@@ -35,8 +31,10 @@
+ EOF
+
+ # Libraies
++have_library("crypto") if test(?e, "/usr/lib/libcrypto.so");
++
+ snmpsessinit = have_library("snmp", "snmp_sess_init")
+-unless snmpsessinit or snmpsessopen or snmpsessclose or snmpsessread or snmpsesssend
++unless snmpsessinit # or snmpsessopen or snmpsessclose or snmpsessread or snmpsesssend
+ crash "This module require snmp_sess_(init|open|close|read|send) functions."
+ end
+
+@@ -51,10 +49,10 @@
+ $CFLAGS = "-DNO_SNMP_FREE " + $CFLAGS
+ end
+
+-unless try_link(header+<<EOF, "-lsnmp")
++if try_link(header+<<EOF, "-lsnmp")
+
+ void main() {
+- init_snmp("snmpapp");
++ init_snmp();
+ }
+ EOF
+ $CFLAGS = "-DVOID_INIT_SNMP " + $CFLAGS
diff --git a/net-mgmt/ruby-snmp/pkg-comment b/net-mgmt/ruby-snmp/pkg-comment
new file mode 100644
index 000000000000..273e18db69f3
--- /dev/null
+++ b/net-mgmt/ruby-snmp/pkg-comment
@@ -0,0 +1 @@
+Ruby interface to UCD-SNMP library
diff --git a/net-mgmt/ruby-snmp/pkg-descr b/net-mgmt/ruby-snmp/pkg-descr
new file mode 100644
index 000000000000..b2d233893508
--- /dev/null
+++ b/net-mgmt/ruby-snmp/pkg-descr
@@ -0,0 +1,6 @@
+Ruby SNMP is UCD-SNMP library interface for the Ruby.
+
+The current version only supports SNMPv1 GET and GETNEXT requests.
+
+Author: Nobuhiko Tsuruoka <tsuruoka@postman.riken.go.jp>
+WWW: http://w3cic.riken.go.jp/~tsuruoka/
diff --git a/net-mgmt/ruby-snmp/pkg-plist b/net-mgmt/ruby-snmp/pkg-plist
new file mode 100644
index 000000000000..661480ab4dd7
--- /dev/null
+++ b/net-mgmt/ruby-snmp/pkg-plist
@@ -0,0 +1,8 @@
+lib/ruby/site_ruby/%%RUBY_VER%%/%%RUBY_ARCH%%/snmp.so
+share/doc/ruby/snmp/mib_view.html
+share/doc/ruby/snmp/rubysnmp.html
+share/doc/ruby/snmp/sampleout.html
+share/doc/ruby/snmp/snmp_module.html
+share/doc/ruby/snmp/snmp_session.html
+share/doc/ruby/snmp/snmp_var.html
+@dirrm share/doc/ruby/snmp