version 0.10.8 - kmvc: Clip pixel position to valid range - kmvc: use fixed sized arrays in the context - indeo: use a typedef for the mc function pointer - lavc: check for overflow in init_get_bits - mjpegdec: properly report unsupported disabled features - jpegls: return meaningful errors - jpegls: factorize return paths - jpegls: check the scan offset - wavpack: validate samples size parsed in wavpack_decode_block - ljpeg: use the correct number of components in yuv - mjpeg: Validate sampling factors - mjpegdec: validate parameters in mjpeg_decode_scan_progressive_ac - wavpack: check packet size early - wavpack: return meaningful errors - apetag: use int64_t for filesize - tiff: do not overread the source buffer - Prepare for 0.8.8 Release - smacker: fix an off by one in huff.length computation - smacker: check the return value of smacker_decode_tree - smacker: pad the extradata allocation - smacker: check frame size validity - vmdav: convert to bytestream2 - 4xm: don't rely on get_buffer() initializing the frame. - 4xm: check the return value of read_huffman_tables(). - 4xm: use the correct logging context - 4xm: reject frames not compatible with the declared version - 4xm: check bitstream_size boundary before using it - 4xm: do not overread the source buffer in decode_p_block - avfiltergraph: check for sws opts being non-NULL before using them - bmv: check for len being valid in bmv_decode_frame() - dfa: check for invalid access in decode_wdlt() - indeo3: check motion vectors - indeo3: fix data size check - indeo3: switch parsing the header to bytestream2 - lavf: make sure stream probe data gets freed. - oggdec: fix faulty cleanup prototype - oma: Validate sample rates - qdm2: check that the FFT size is a power of 2 - rv10: check that extradata is large enough - xmv: check audio track parameters validity - xmv: do not leak memory in the error paths in xmv_read_header() - aac: check the maximum number of channels - indeo3: fix off by one in MV validity check, Bug #503 - id3v2: check for end of file while unescaping tags - wav: Always seek to an even offset, Bug #500, LP: #1174737 - proresdec: support mixed interlaced/non-interlaced content
63 lines
1.8 KiB
Makefile
63 lines
1.8 KiB
Makefile
# $NetBSD: Makefile,v 1.13 2013/08/03 09:22:58 obache Exp $
|
|
|
|
PKGNAME= ffmpeg010-20130731.${DISTVERSION}
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://ffmpeg.mplayerhq.hu/
|
|
COMMENT= Decoding, encoding and streaming software
|
|
|
|
CONFIGURE_ARGS+= --enable-avfilter
|
|
#CONFIGURE_ARGS+= --enable-avfilter-lavf
|
|
CONFIGURE_ARGS+= --enable-postproc
|
|
CONFIGURE_ARGS+= --incdir=${PREFIX}/include/ffmpeg010
|
|
CONFIGURE_ARGS+= --libdir=${PREFIX}/lib/ffmpeg010
|
|
CONFIGURE_ARGS+= --shlibdir=${PREFIX}/lib/ffmpeg010
|
|
CONFIGURE_ARGS+= --datadir=${PREFIX}/share/ffmpeg010
|
|
#CONFIGURE_ARGS+= --build-suffix=010
|
|
CONFIGURE_ARGS+= --progs-suffix=010
|
|
|
|
LDFLAGS+= ${COMPILER_RPATH_FLAG}${PREFIX}/lib/ffmpeg010
|
|
|
|
INSTALLATION_DIRS= lib share/examples/ffmpeg010 share/doc/ffmpeg010
|
|
|
|
CONF_FILES+= ${PREFIX}/share/examples/ffmpeg010/ffserver.conf \
|
|
${PKG_SYSCONFDIR}/ffserver.conf
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.include "../../mk/compiler.mk"
|
|
|
|
# disable asm on i386 for non-gcc and gcc < 4.2
|
|
# no alignment options needed for gcc >= 4.6 on i386
|
|
|
|
.if ${MACHINE_ARCH} == "i386"
|
|
.if !empty(MACHINE_PLATFORM:MDarwin-*-i386)
|
|
CONFIGURE_ARGS+= --disable-asm
|
|
.elif !empty(CC_VERSION:Mgcc-4.[2345]*)
|
|
CFLAGS+=-mstackrealign -mpreferred-stack-boundary=4
|
|
.elif !empty(CC_VERSION:Mgcc-[123]*) \
|
|
|| !empty(CC_VERSION:Mgcc-4.[01]*) \
|
|
|| empty(CC_VERSION:Mgcc*)
|
|
CONFIGURE_ARGS+= --disable-asm
|
|
.endif
|
|
.endif
|
|
|
|
# "error: can't find a register in class 'GENERAL_REGS' while reloading 'asm'"
|
|
CFLAGS.SunOS+= -DBROKEN_RELOCATIONS=1
|
|
|
|
TEST_TARGET= check
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/doc/*.txt \
|
|
${DESTDIR}${PREFIX}/share/doc/ffmpeg010
|
|
${INSTALL_DATA} ${WRKSRC}/doc/ffserver.conf \
|
|
${DESTDIR}${PREFIX}/share/examples/ffmpeg010
|
|
|
|
.include "options.mk"
|
|
|
|
.include "../../mk/compiler.mk"
|
|
|
|
.if !empty(PKGSRC_COMPILER:Mclang)
|
|
CFLAGS+= -no-integrated-as
|
|
.endif
|
|
|
|
.include "../../multimedia/ffmpeg010/Makefile.common"
|