aboutsummaryrefslogtreecommitdiff
path: root/net-mgmt/netmond/Makefile
blob: 1232007b9b34baa161441107382fb7ff96e1f7a9 (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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# New ports collection makefile for:	netmond
# Date created:				2004 Mar 30
# Whom:					vfom@narod.ru
#
# $FreeBSD$
#

PORTNAME=	netmond
PORTVERSION=	2.2b6
PORTREVISION=	5
CATEGORIES=	net-mgmt
MASTER_SITES=	http://freebsd.unixfreunde.de/sources/ \
		ftp://ftp.risp.ru/pub/RinetSoftware/
DISTNAME=	netmond-2.2-b6
EXTRACT_SUFX=	.tgz

PATCH_SITES=	http://freebsd.unixfreunde.de/sources/ \
		http://vfom.narod.ru/download/
PATCH_VERSION=	1
PATCHFILES=	${DISTNAME}.patch${PATCH_VERSION}${EXTRACT_SUFX}  ${DISTNAME}.docs${EXTRACT_SUFX}

MAINTAINER=	ports@FreeBSD.org
COMMENT=	Netmond - IP network monitoring daemon

USERS=	netmon
GROUPS=	${USERS}

#MK_IFGRAPH=	yes
PATCHDIR=	${WRKDIR}/patches

.if defined(MK_IFGRAPH)
LIB_DEPENDS=	gd.4:${PORTSDIR}/graphics/gd
.else
CONFIGURE_ARGS=	--without-ifgraph
.endif

GNU_CONFIGURE=	yes
USE_BISON=	build

BINOWN=		root
BINGRP=		netmon
BINMODE=	0550

PLIST_FILES=	sbin/netmond sbin/netmond_watchdog sbin/netmondctl \
		etc/netmond.conf.sample
.if defined(MK_IFGRAPH)
PLIST_FILES+=	sbin/ifgraph
.endif

USE_RC_SUBR=	netmond.sh

SUB_FILES+=	pkg-message netmond_watchdog netmondctl

PORTDOCS=	README README.ru CHANGES README.port.eng README.port.ru index.html netmond.css en/ ru/

post-extract:
	${MKDIR} ${PATCHDIR}
	${TAR} -zxf ${DISTDIR}/${DISTNAME}.patch${PATCH_VERSION}${EXTRACT_SUFX} -C ${PATCHDIR}
	${CP} ${PATCHDIR}/pipe.c ${WRKSRC}

do-install:
	${INSTALL_PROGRAM} ${WRKSRC}/netmond      ${PREFIX}/sbin/netmond
.if defined(MK_IFGRAPH)
	${INSTALL_PROGRAM} ${WRKSRC}/ifgraph      ${PREFIX}/sbin/ifgraph
.endif
	${INSTALL_SCRIPT}   ${WRKDIR}/netmond_watchdog ${PREFIX}/sbin/netmond_watchdog
	${INSTALL_SCRIPT}   ${WRKDIR}/netmondctl ${PREFIX}/sbin/netmondctl
	${INSTALL_DATA} ${WRKSRC}/netmon.conf.sample ${PREFIX}/etc/netmond.conf.sample
	${CHMOD} u+s ${PREFIX}/sbin/netmond
.if !defined(NOPORTDOCS)
	${MKDIR}  ${DOCSDIR}
	${CHMOD} 755 ${DOCSDIR}
	${TAR}  -zxf ${DISTDIR}/${DISTNAME}.docs${EXTRACT_SUFX} -C ${DOCSDIR}
.endif

post-install:
	${CAT} ${PKGMESSAGE}

.include <bsd.port.mk>