aboutsummaryrefslogtreecommitdiffstats
path: root/multimedia/ffmpeg045/Makefile
blob: 77f823afa071e0fdf599133ccd4ac0d6c87277d8 (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
72
73
74
75
# New ports collection makefile for:    ffmpeg
# Date created:     Tue Sep 25 15:52:09 BRT 2001
# Whom:         Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
#
# $FreeBSD$
#

PORTNAME=   ffmpeg
PORTVERSION=    0.4.5
PORTREVISION=   2
CATEGORIES= graphics
MASTER_SITES=   ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}

MAINTAINER= lioux@FreeBSD.org

BUILD_DEPENDS=  nasm:${PORTSDIR}/devel/nasm
LIB_DEPENDS=    gnugetopt.1:${PORTSDIR}/devel/libgnugetopt

WRKSRC=     ${WRKDIR}/${PORTNAME}

ONLY_FOR_ARCHS= i386
HAS_CONFIGURE=  yes
USE_GMAKE=  yes
USE_REINPLACE=  yes
MAKE_ARGS=  MAKE="${GMAKE}" LOCALBASE="${LOCALBASE}"
CONFIGURE_ARGS= --cc="${CC}" --prefix="${PREFIX}" \
        --disable-grab

DOC_FILES=  README
# under subdir doc
DOC_DOCFILES=   FAQ README.dev README.tech \
        TODO bench.txt ffmpeg.txt \
        ffserver.txt
HEADER_FILES=   libavcodec/avcodec.h libavcodec/common.h \
        libavcodec/dsputil.h
LIB_FILES=  libav/libav.a libavcodec/libavcodec.a

.ifdef(WITHOUT_MMX)
CONFIGURE_ARGS+=    --disable-mmx
.endif

.ifndef(WITHOUT_MMX)
pre-everything::
    @${ECHO_MSG} "Define WITHOUT_MMX if your system does not support MMX"
.endif

post-patch:
    @${REINPLACE_CMD} -e "s!/etc/ffserver.conf!${PREFIX}/etc/ffserver.conf!g" \
        ${WRKSRC}/ffserver.c

post-install:
.ifndef(NOPORTDOCS)
    @${MKDIR} ${DOCSDIR}
.for file in ${DOC_FILES}
    @${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
.endfor
.for file in ${DOC_DOCFILES}
    @${INSTALL_DATA} ${WRKSRC}/doc/${file} ${DOCSDIR}
.endfor
.endif
    @${INSTALL_DATA} ${WRKSRC}/doc/ffserver.conf \
        ${PREFIX}/etc/ffserver.conf.sample
.for file in ${HEADER_FILES}
# fix header references prior to installation
    @${REINPLACE_CMD} -e 's|"common.h"|<libavcodec/common.h>|' \
        ${WRKSRC}/${file}
    @${MKDIR} ${PREFIX}/include/${file:H}
    @${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/include/${file}
.endfor
.for file in ${LIB_FILES}
    @${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/lib/${file:T}
.endfor

.include <bsd.port.mk>