mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-24 04:33:24 +00:00
0f1584cebf
Approved by: adamw (mentor) Differential Revision: https://reviews.freebsd.org/D9125
30 lines
727 B
Makefile
30 lines
727 B
Makefile
# Created by: Larry Rosenman <ler@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= iog
|
|
PORTVERSION= 1.03
|
|
PORTREVISION= 5
|
|
CATEGORIES= net-mgmt
|
|
MASTER_SITES= http://www.dynw.com/iog/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Graphs Byte Counts for switches/routers/etc
|
|
|
|
NO_BUILD= yes
|
|
NO_ARCH= yes
|
|
USES= perl5 shebangfix tar:tgz
|
|
SHEBANG_FILES= ${PORTNAME}
|
|
PLIST_SUB= VERSION=${PORTVERSION}
|
|
USERS= iog
|
|
|
|
IOGDIR= ${PREFIX}/iog/iog-${PORTVERSION}
|
|
|
|
do-install:
|
|
${FIND} ${WRKSRC} -name '*.bak' -or -name '*.orig' -delete
|
|
${MKDIR} -m 755 ${STAGEDIR}${IOGDIR}
|
|
${INSTALL} ${COPY} -m 0600 ${WRKSRC}/iog.cfg ${WRKSRC}/iog.cfg.sample
|
|
${CP} -R ${WRKSRC}/* ${STAGEDIR}${IOGDIR}
|
|
${LN} -sf ${IOGDIR} ${STAGEDIR}${PREFIX}/iog/iog
|
|
|
|
.include <bsd.port.mk>
|