blob: 724992bab604be7d19548972ef1c61ec0d031c86 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# New ports collection makefile for: jmref
# Date created: 2009-08-06
# Whom: Steve Wills <steve@mouf.net>
#
# $FreeBSD$
#
PORTNAME= jmref
PORTVERSION= 17.1
CATEGORIES= multimedia
MASTER_SITES= http://iphome.hhi.de/suehring/tml/download/
DISTNAME= jm${PORTVERSION}
MAINTAINER= steve@mouf.net
COMMENT= JM Reference Software
USE_ZIP= yes
USE_GMAKE= yes
WRKSRC= ${WRKDIR}/JM
PLIST_FILES= bin/ldecod bin/lencod \
bin/rtp_loss bin/rtpdump
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/bin/ldecod.exe ${PREFIX}/bin/ldecod
${INSTALL_PROGRAM} ${WRKSRC}/bin/lencod.exe ${PREFIX}/bin/lencod
${INSTALL_PROGRAM} ${WRKSRC}/bin/rtp_loss.exe ${PREFIX}/bin/rtp_loss
${INSTALL_PROGRAM} ${WRKSRC}/bin/rtpdump.exe ${PREFIX}/bin/rtpdump
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 700000
BROKEN= does not compile on 6.x
.endif
.include <bsd.port.post.mk>
|