blob: 3ec100d3037a96852fb4bd2061b759afc900078f (
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
|
# New ports collection makefile for: ipcad
# Date created: 15 April 2001
# Whom: Lev Walkin <vlm@lionet.info>
#
# $FreeBSD$
#
PORTNAME= ipcad
PORTVERSION= 3.7
PORTREVISION= 1
CATEGORIES= net-mgmt
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \
http://ipcad.sourceforge.net/ \
http://lionet.info/soft/
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= vlm@lionet.info
COMMENT= IP accounting daemon with Cisco-like RSH and NetFlow export modes
USE_RC_SUBR= ipcad
SUB_FILES= pkg-message
PKGMESSAGE= ${WRKDIR}/pkg-message
MANCOMPRESSED= no
MAN5= ipcad.conf.5
MAN8= ipcad.8
.include <bsd.port.pre.mk>
.if ${OSVERSION} >= 700015
BROKEN= Does not compile on FreeBSD >= 7.0
.endif
post-patch:
@${REINPLACE_CMD} -e 's|-pthread|${PTHREAD_LIBS}|g ; \
s|/usr/local|${PREFIX}|g' ${WRKSRC}/configure
post-install:
@${STRIP_CMD} ${PREFIX}/bin/ipcad
${INSTALL_MAN} ${WRKSRC}/ipcad.8 ${MANPREFIX}/man/man8
${INSTALL_MAN} ${WRKSRC}/ipcad.conf.5 ${MANPREFIX}/man/man5
@${CAT} ${PKGMESSAGE}
.include <bsd.port.post.mk>
|