blob: 8dfa5d3d8d07f0667277e2afd155eb3c48709da4 (
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
|
# New ports collection makefile for: rtptools
# Date created: 5 January 1998
# Whom: fenner
#
# $FreeBSD$
#
PORTNAME= rtptools
PORTVERSION= 1.17
CATEGORIES= mbone
MASTER_SITES= http://www.cs.columbia.edu/IRT/software/rtptools/src/
MAINTAINER= fenner@FreeBSD.org
GNU_CONFIGURE= yes
DOCFILES= README ChangeLog.html rtptools.html
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${PREFIX}/share/doc/rtptools
.for i in ${DOCFILES}
${INSTALL_DATA} ${WRKSRC}/${i} ${PREFIX}/share/doc/rtptools
.endfor
.endif
.include <bsd.port.mk>
|