diff options
author | Rong-En Fan <rafan@FreeBSD.org> | 2008-08-31 16:17:22 +0000 |
---|---|---|
committer | Rong-En Fan <rafan@FreeBSD.org> | 2008-08-31 16:17:22 +0000 |
commit | 67adfe6d377fe5da0a2fd94dc4af9a3beed5fbb6 (patch) | |
tree | 11d563ce20adc9feee7cbe59cf383e65c40de44d /net/rtptools/Makefile | |
parent | Add p5-Finance-QuoteTW, fetch quotes of mutual funds in Taiwan. (diff) |
- Fix plist when NOPORTDOCS=1
- Use DOCSDIR, PLIST_FILES
Reported by: QAT
Notes
Notes:
svn path=/head/; revision=219523
Diffstat (limited to 'net/rtptools/Makefile')
-rw-r--r-- | net/rtptools/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/net/rtptools/Makefile b/net/rtptools/Makefile index c757f4d4b6b3..31151d8492f6 100644 --- a/net/rtptools/Makefile +++ b/net/rtptools/Makefile @@ -15,13 +15,15 @@ COMMENT= A set of tools to record, playback and monitor RTPv2 data streams GNU_CONFIGURE= yes +PLIST_FILES= bin/rtpdump bin/rtpplay bin/rtpsend bin/rtptrans DOCFILES= README ChangeLog.html rtptools.html +PORTDOCS= ${DOCSFILES} post-install: .if !defined(NOPORTDOCS) - ${MKDIR} ${PREFIX}/share/doc/rtptools + ${MKDIR} ${DOCSDIR} .for i in ${DOCFILES} - ${INSTALL_DATA} ${WRKSRC}/${i} ${PREFIX}/share/doc/rtptools + ${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}/ .endfor .endif |