openbsd-ports/mbone/rtptools/Makefile
espie a111b996b4 Fake
use a do-install target for vat, as this is simplest, and don't forget
the man page in the package...
2000-06-06 23:14:18 +00:00

36 lines
861 B
Makefile

# $OpenBSD: Makefile,v 1.7 2000/06/06 23:14:18 espie Exp $
DISTNAME= rtptools-1.9
CATEGORIES= mbone
MASTER_SITES= ftp://ftp.cs.columbia.edu/pub/schulzrinne/rtptools/
MAINTAINER= angelos@openbsd.org
LICENSE_TYPE= NONE
PERMIT_PACKAGE_CDROM= YES
PERMIT_PACKAGE_FTP= YES
PERMIT_DISTFILES_CDROM= YES
PERMIT_DISTFILES_FTP= YES
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)
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/rtptools
.for i in ${DOCFILES}
${INSTALL_DATA} ${WRKSRC}/${i} ${PREFIX}/share/doc/rtptools
.endfor
.endif
.include <bsd.port.mk>