30 lines
692 B
Makefile
30 lines
692 B
Makefile
# New ports collection makefile for: rtplib
|
|
# Date created: 18 Jun 2002
|
|
# Whom: Joseph Koshy <jkoshy@freebsd.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= rtplib
|
|
PORTVERSION= 1.0b2
|
|
CATEGORIES= devel mbone
|
|
MASTER_SITES= http://www-out.bell-labs.com:80/project/RTPlib/
|
|
|
|
MAINTAINER= jkoshy@freebsd.org
|
|
|
|
RTP_HEADERS= rtp_api.h rtp_highlevel.h rtp_lowlevel.h
|
|
|
|
RESTRICTED= "Source recipient must acknowledge license"
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
pre-install:
|
|
.for header in ${RTP_HEADERS}
|
|
${INSTALL_DATA} ${WRKSRC}/${header} ${PREFIX}/include/${header}
|
|
.endfor
|
|
.ifndef NOPORTDOCS
|
|
${MKDIR} ${PREFIX}/share/doc/rtplib
|
|
${INSTALL_DATA} ${WRKSRC}/rtp_api.html ${PREFIX}/share/doc/rtplib
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|