blob: aaa6f4ad22f22b3fa8bf1e3d63db49ef61995049 (
plain) (
blame)
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
36
37
38
39
40
41
42
43
|
# 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_PKGNAMEPREFIX}
DISTNAME= ruby${PORTNAME}-${PORTVERSION}
EXTRACT_SUFX= .tgz
DIST_SUBDIR= ruby
MAINTAINER= knu@FreeBSD.org
LIB_DEPENDS= snmp.4:${PORTSDIR}/net/net-snmp
USE_RUBY= yes
USE_RUBY_EXTCONF= yes
WRKSRC= ${WRKDIR}/SNMP
INSTALL_TARGET= site-install
CONFIGURE_ARGS= --with-snmp-dir="${LOCALBASE}"
DOCS_EN= mib_view.html \
rubysnmp.html \
sampleout.html \
snmp_module.html \
snmp_session.html \
snmp_var.html
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${RUBY_DOCDIR}/snmp
.for f in ${DOCS_EN}
${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_DOCDIR}/snmp/
.endfor
.endif
.include <bsd.port.mk>
|