blob: 5c16c60e53dc468a438ec4cc9b7a7457d325b312 (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
# New ports collection makefile for: nedi
# Date created: 2007-02-04
# Whom: cristi
#
# $FreeBSD$
#
PORTNAME= nedi
DISTVERSION= 1.0.w
PORTREVISION= 1
CATEGORIES= net-mgmt
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/w
EXTRACT_SUFX= .tgz
MAINTAINER= cristi@net.utcluj.ro
COMMENT= Network Discovery and Monitoring tool
RUN_DEPENDS= ${SITE_PERL}/Net/SNMP.pm:${PORTSDIR}/net-mgmt/p5-Net-SNMP \
${SITE_PERL}/Net/Telnet/Cisco.pm:${PORTSDIR}/net-mgmt/p5-Telnet-Cisco \
${SITE_PERL}/Algorithm/Diff.pm:${PORTSDIR}/devel/p5-Algorithm-Diff \
${SITE_PERL}/${PERL_ARCH}/DBI.pm:${PORTSDIR}/databases/p5-DBI
WRKSRC= ${WRKDIR}/${PORTNAME}
NO_BUILD= yes
USE_PERL5= yes
OPTIONS= GD "Use GD" OFF
LATEST_LINK= ${PORTNAME}${PKGNAMESUFFIX}
.include <bsd.port.options.mk>
USE_PHP= session snmp mysql
WANT_PHP_WEB= yes
.if defined(WITH_GD) && !defined(WITHOUT_GD)
USE_PHP+= gd
.endif
NEDIDIR= ${PREFIX}/www/nedi
SUB_FILES= pkg-message
SUB_LIST= NEDIDIR=${NEDIDIR}
post-patch:
@${REINPLACE_CMD} -e 's|/var/nedi|${NEDIDIR}|' ${WRKSRC}/html/inc/libgraph.php
@${REINPLACE_CMD} -e "s|'/etc|'${PREFIX}/etc|" ${WRKSRC}/html/inc/libmisc.php
@${FIND} ${WRKSRC} -name *.bak -or -name *.orig -delete
do-install:
@ ${MKDIR} -m 755 ${NEDIDIR}
@ ${CP} -r ${WRKSRC}/* ${NEDIDIR}
@ ${MV} ${NEDIDIR}/seedlist ${PREFIX}/etc/nedi.seedlist.sample
@ ${MV} ${NEDIDIR}/nedi.conf ${PREFIX}/etc/nedi.conf.sample
@ ${CHOWN} www ${NEDIDIR}/rrd
post-install:
@ ${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>
|