blob: b76908e311c17516fa0cb60c5266e0f3279d8352 (
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
|
# New ports collection makefile for: pipemeter
# Date created: 2003-12-02
# Whom: Len Sassaman
#
# $FreeBSD$
#
PORTNAME= pipemeter
PORTVERSION= 0.9.1
CATEGORIES= sysutils
MASTER_SITES= http://ports.abditum.com/pipemeter/ \
http://spamaps.org/files/pipemeter/
MAINTAINER= rabbi@abditum.com
COMMENT= Measure speed of data going through a pipe
GNU_CONFIGURE= yes
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
MAN1= pipemeter.1
PORTDOCS= Changelog README
PLIST_FILES= bin/pipemeter
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/pipemeter ${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/pipemeter.1 ${MAN1PREFIX}/man/man1
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}
.endif
.include <bsd.port.mk>
|