blob: ae9fddfde2addd6e8718e227cc2f0369b7d02391 (
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
36
37
38
39
40
41
42
43
44
45
46
47
|
# New ports collection makefile for: netqc
# Date created: Sep 28 2001
# Whom: Radoslav Vasilev <rvasilev@uni-svishtov.bg>
#
# $FreeBSD$
#
PORTNAME= netqc
PORTVERSION= 1.2.1
PORTREVISION= 1
CATEGORIES= net-mgmt
MASTER_SITES= # disappeared
BROKEN= "mastersite disappeared"
DEPRECATED= ${BROKEN}
EXPIRATION_DATE= 2005-12-12
MAINTAINER= rvasilev@uni-svishtov.bg
COMMENT= Network Monitoring System based on Net-Snmp
LIB_DEPENDS= snmp.4:${PORTSDIR}/net-mgmt/net-snmp4
GNU_CONFIGURE= yes
USE_GMAKE= yes
USE_MYSQL= yes
DEFAULT_MYSQL_VER= 323
WANT_MYSQL_VER= 323
USE_REINPLACE= yes
MAN1= netqc.1
DOCFILES= COPYING README
.include <bsd.port.pre.mk>
post-patch:
${REINPLACE_CMD} -e "s,varargs.h,stdarg.h," ${WRKSRC}/poll.c
post-install:
${INSTALL_DATA} ${WRKSRC}/conf ${PREFIX}/etc/netqc.conf.sample
.for file in ${MAN1}
${INSTALL_MAN} ${WRKSRC}/${file} ${MANPREFIX}/man/man1/${file}
.endfor
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${DOCFILES:S,^,${WRKSRC}/,} ${DOCSDIR}
.endif
.include <bsd.port.post.mk>
|