diff options
author | Joseph Koshy <jkoshy@FreeBSD.org> | 2002-06-18 10:42:25 +0000 |
---|---|---|
committer | Joseph Koshy <jkoshy@FreeBSD.org> | 2002-06-18 10:42:25 +0000 |
commit | a16dc5bcad389053e4edf5a25fad7a8d2ff42f95 (patch) | |
tree | 62ea2c382b9cdaa109df1d9445029d5291cfc03b | |
parent | Update to exim-3.36. (diff) |
`RTPlib', a library for developing applications over RTP.
Notes
Notes:
svn path=/head/; revision=61504
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/rtplib/Makefile | 30 | ||||
-rw-r--r-- | devel/rtplib/distinfo | 1 | ||||
-rw-r--r-- | devel/rtplib/pkg-comment | 1 | ||||
-rw-r--r-- | devel/rtplib/pkg-descr | 9 | ||||
-rw-r--r-- | devel/rtplib/pkg-plist | 7 |
6 files changed, 49 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index 1b62b80aa4bb..7585704e26cf 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -611,6 +611,7 @@ SUBDIR += robodoc SUBDIR += rpc2 SUBDIR += rtems-gcc + SUBDIR += rtplib SUBDIR += ruby-amstd SUBDIR += ruby-aspectr SUBDIR += ruby-avl diff --git a/devel/rtplib/Makefile b/devel/rtplib/Makefile new file mode 100644 index 000000000000..102d121b6414 --- /dev/null +++ b/devel/rtplib/Makefile @@ -0,0 +1,30 @@ +# 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> diff --git a/devel/rtplib/distinfo b/devel/rtplib/distinfo new file mode 100644 index 000000000000..8e4d4581700e --- /dev/null +++ b/devel/rtplib/distinfo @@ -0,0 +1 @@ +MD5 (rtplib-1.0b2.tar.gz) = 048024c183d59dc607c679aea31b57cc diff --git a/devel/rtplib/pkg-comment b/devel/rtplib/pkg-comment new file mode 100644 index 000000000000..68ae1aea3898 --- /dev/null +++ b/devel/rtplib/pkg-comment @@ -0,0 +1 @@ +A library for developing applications over RTP diff --git a/devel/rtplib/pkg-descr b/devel/rtplib/pkg-descr new file mode 100644 index 000000000000..a7741f2d24b1 --- /dev/null +++ b/devel/rtplib/pkg-descr @@ -0,0 +1,9 @@ +The RTP Library provides a high level interface for developing +applications that make use of the Real Time Transport Protocol +(RTP). This protocol was developed in the Audio/Video Working Group +of the Internet Engineering Task Force (IETF), and has been published +as RFC1889. This library is based on the most recent version of the +specification, incorporating some of the newest features, including +RTCP scalability algorithms. + +WWW: http://www-out.bell-labs.com:80/project/RTPlib/ diff --git a/devel/rtplib/pkg-plist b/devel/rtplib/pkg-plist new file mode 100644 index 000000000000..770cca345213 --- /dev/null +++ b/devel/rtplib/pkg-plist @@ -0,0 +1,7 @@ +lib/librtp.a +lib/librtpunix.a +include/rtp_api.h +include/rtp_highlevel.h +include/rtp_lowlevel.h +%%PORTDOCS%%share/doc/rtplib/rtp_api.html +%%PORTDOCS%%@dirrm share/doc/rtplib |