31 lines
734 B
Makefile
31 lines
734 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 1998/09/14 01:51:05 marc Exp $
|
|
#
|
|
|
|
DISTNAME= rtptools-1.9
|
|
CATEGORIES= mbone
|
|
MASTER_SITES= ftp://ftp.cs.columbia.edu/pub/schulzrinne/rtptools/
|
|
|
|
MAINTAINER= angelos@openbsd.org
|
|
|
|
MAKE_ENV= ARCH=openbsd CC=cc
|
|
|
|
BINFILES= rtpdump rtpplay rtpsend rtptrans
|
|
DOCFILES= README CHANGES.html rtptools.html
|
|
|
|
post-extract:
|
|
${LN} -s ${WRKSRC}/freebsd ${WRKSRC}/openbsd
|
|
${LN} -s ${WRKSRC}/Makefile.freebsd ${WRKSRC}/Makefile.openbsd
|
|
|
|
do-install:
|
|
.for i in ${BINFILES}
|
|
${INSTALL_PROGRAM} ${WRKSRC}/openbsd/${i} ${PREFIX}/bin
|
|
.endfor
|
|
.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>
|