979c5f2548
- avcodec/ttaenc: Reallocate packet if its too small - configure: build fix for P5600 with mips code restructuring - mips: add support for R6 - pgssubdec: fix subpicture output colorspace and range - avcodec/ac3dec: Reset SPX when switching from EAC3 to AC3 - avfilter/vf_drawtext: Check return code of load_glyph() - avformat/mux: Check that deinit is set before calling it - avcodec/takdec: add code that got somehow lost in process of REing - avcodec/apedec: fix decoding of stereo files with one channel full of silence - avcodec/avpacket: Fix off by 5 error - avcodec/h264: Fix for H.264 configuration parsing - avcodec/bmp_parser: Ensure remaining_size is not too small in startcode packet crossing corner case - avcodec/pngdec: Fix alpha detection with skip_frame - Changelog: Make formating consistent - avfilter/src_movie: fix how we check for overflows with seek_point - avcodec/j2kenc: Add attribution to OpenJPEG project:
36 lines
1.1 KiB
Makefile
36 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.3 2016/04/29 19:26:25 adam Exp $
|
|
|
|
PKGNAME= ${DISTNAME:S/ffmpeg/ffplay3/}
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://ffmpeg.org/
|
|
COMMENT= Simple SDL frontend for FFmpeg
|
|
|
|
DISTINFO_FILE= ${.CURDIR}/../ffmpeg3/distinfo
|
|
|
|
CONFIGURE_ARGS+= --disable-ffmpeg
|
|
CONFIGURE_ARGS+= --disable-ffprobe
|
|
CONFIGURE_ARGS+= --disable-ffserver
|
|
CONFIGURE_ARGS+= --disable-encoders
|
|
CONFIGURE_ARGS+= --disable-decoders
|
|
CONFIGURE_ARGS+= --disable-hwaccels
|
|
CONFIGURE_ARGS+= --disable-muxers
|
|
CONFIGURE_ARGS+= --disable-demuxers
|
|
CONFIGURE_ARGS+= --disable-parsers
|
|
CONFIGURE_ARGS+= --disable-bsfs
|
|
CONFIGURE_ARGS+= --disable-protocols
|
|
CONFIGURE_ARGS+= --disable-devices
|
|
CONFIGURE_ARGS+= --disable-filters
|
|
CONFIGURE_ARGS+= --enable-ffplay
|
|
CONFIGURE_ARGS+= --enable-dct
|
|
CONFIGURE_ARGS+= --enable-mdct
|
|
CONFIGURE_ARGS+= --enable-rdft
|
|
|
|
INSTALLATION_DIRS+= bin ${PKGMANDIR}/man1
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/ffplay3 ${DESTDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/doc/ffplay3.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1
|
|
|
|
.include "../../devel/SDL/buildlink3.mk"
|
|
.include "../../multimedia/ffmpeg3/buildlink3.mk"
|
|
.include "../../multimedia/ffmpeg3/Makefile.common"
|