blob: 75a750f19fa97c1ab9683ec171f4858502d720a1 (
plain)
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
# $NetBSD: Makefile,v 1.22 2014/12/13 09:20:02 wiz Exp $
DISTNAME= live.2014.12.11
PKGNAME= lib${DISTNAME:S/./-/:S/.//g}
CATEGORIES= net
MASTER_SITES= http://www.live555.com/liveMedia/public/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://www.live555.com/liveMedia/
COMMENT= Set of C++ libraries for multimedia streaming
LICENSE= gnu-lgpl-v2.1
WRKSRC= ${WRKDIR}/live
USE_LANGUAGES= c c++
USE_TOOLS+= gmake
USE_LIBTOOL= YES
INSTALLATION_DIRS= bin lib include/BasicUsageEnvironment include/UsageEnvironment
INSTALLATION_DIRS+= include/groupsock include/liveMedia
INSTALLATION_DIRS+= share/examples/liblive
.include "../../mk/bsd.fast.prefs.mk"
.if ${OPSYS} == "SunOS"
. if ${MACHINE_ARCH} == "x86_64"
LIVE_BITNESS= -64bit
. else
LIVE_BITNESS= -32bit
. endif
.else
LIVE_BITNESS= # empty
.endif
do-configure:
${CP} ${FILESDIR}/config.netbsd ${WRKSRC}
${CP} ${FILESDIR}/config.netbsd ${WRKSRC}/config.dragonfly
${CP} ${FILESDIR}/config.netbsd ${WRKSRC}/config.darwin
cd ${WRKSRC} && ${SH} ./genMakefiles ${LOWER_OPSYS}${LIVE_BITNESS}
do-install:
.for lib in BasicUsageEnvironment UsageEnvironment groupsock liveMedia
cd ${WRKSRC}/${lib} && \
${LIBTOOL} --mode=install ${INSTALL_LIB} lib${lib}.la ${DESTDIR}${PREFIX}/lib
cd ${WRKSRC}/${lib}/include && \
for i in *.h *.hh ; do \
[ ! -f $$i ] || \
${INSTALL_DATA} $$i \
${DESTDIR}${PREFIX}/include/${lib} ; \
done
.endfor
.for bin in testMP3Streamer testMPEG1or2VideoStreamer \
testMPEG1or2AudioVideoStreamer testMPEG2TransportStreamer \
testMPEG4VideoStreamer testWAVAudioStreamer testAMRAudioStreamer\
vobStreamer testMP3Receiver testMPEG1or2VideoReceiver sapWatch \
testRelay testOnDemandRTSPServer \
openRTSP playSIP testMPEG1or2Splitter \
testMPEG1or2ProgramToTransportStream
cd ${WRKSRC}/testProgs && \
${LIBTOOL} --mode=install ${INSTALL_PROGRAM} \
${bin} ${DESTDIR}${PREFIX}/share/examples/liblive
.endfor
.include "../../mk/bsd.pkg.mk"
|