aboutsummaryrefslogtreecommitdiffstats
path: root/multimedia/spook/Makefile
blob: d6a897158953b88d34a625d8bdd4e311de9b69af (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
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
64
65
66
67
68
69
70
71
# New ports collection makefile for:    spook
# Date created:     1 Sep 2008
# Whom:         Bruce M Simpson <bms@FreeBSD.org>
#
# $FreeBSD$
#

PORTNAME=   spook
PORTVERSION=    20050207
PORTREVISION=   3
CATEGORIES= multimedia
MASTER_SITES=   http://www.litech.org/spook/dist/

MAINTAINER= ports@FreeBSD.org
COMMENT=    Embedded RTP/RTSP/HTTP video streamer

# TODO: FireWire IIDC support (needs libraw1394, libdc1394).
# TODO: Test with Luigi-ified V4L input drivers e.g. pwc, etc.

OPTIONS= \
    JPEG    "With JPEG encoding support" on \
    MPEG4   "With MPEG4 encoding support" off \
    V4L "With V4L input support" on

USE_BZIP2=  yes
USE_GMAKE=  yes

GNU_CONFIGURE=  yes
USE_AUTOTOOLS=  autoconf aclocal automake
AUTOMAKE_ARGS=  --add-missing

NOMAN=      defined

SUB_FILES=  pkg-message

LDFLAGS+=   -L${LOCALBASE}/lib
CFLAGS+=    -I${LOCALBASE}/include

.include <bsd.port.pre.mk>

.if !defined(WITHOUT_JPEG)
LIB_DEPENDS+=       jpeg.11:${PORTSDIR}/graphics/jpeg
CONFIGURE_ARGS+=    --enable-encoder-jpeg
.endif

.if defined(WITH_MPEG4)
LIB_DEPENDS+=       xvidcore.4:${PORTSDIR}/multimedia/xvid
CONFIGURE_ARGS+=    --enable-encoder-mpeg4
.endif

.if !defined(WITHOUT_V4L)
BUILD_DEPENDS+=     ${LOCALBASE}/include/linux/videodev.h:${PORTSDIR}/multimedia/v4l_compat
CONFIGURE_ARGS+=    --enable-input-v4l
.endif

PLIST_FILES=    bin/spook bin/spookctl etc/spook.conf.dist

.if !defined(NOPORTDOCS)
PORTDOCS=   README
.endif

do-install:
.if !defined(NOPORTDOCS)
    @${MKDIR} ${DOCSDIR}
    ${INSTALL_MAN} ${WRKSRC}/README ${DOCSDIR}
.endif
    ${INSTALL_PROGRAM} ${WRKSRC}/spook ${PREFIX}/bin
    ${INSTALL_PROGRAM} ${WRKSRC}/spookctl ${PREFIX}/bin
    ${INSTALL_DATA} ${WRKSRC}/spook.conf.dist ${PREFIX}/etc

.include <bsd.port.post.mk>