1a9a0e3e6e
- Mark port as depreciated, as done upstream - Mark port as supporting concurrency (and sort USE_PYTHON) - Fix python versioning (it does not depend on the python2 metaport)
38 lines
930 B
Makefile
38 lines
930 B
Makefile
# Created by: David Naylor <dbn@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= ffmpeg
|
|
PORTVERSION= 1.2.4
|
|
PORTREVISION= 5
|
|
CATEGORIES= multimedia python
|
|
MASTER_SITES= GH LOCAL/dbn/${PORTNAME}
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= dbn@FreeBSD.org
|
|
COMMENT= Python bindings for FFmpeg
|
|
|
|
LICENSE= LGPL20 LGPL21 LGPL3
|
|
LICENSE_COMB= dual
|
|
|
|
BUILD_DEPENDS= cython:lang/cython
|
|
LIB_DEPENDS= libavcodec.so:multimedia/ffmpeg
|
|
|
|
DEPRECATED= Depreciated upstream in favour of ffpyplayer
|
|
EXPIRATION_DATE=2017-06-31
|
|
|
|
MAKE_ENV= FFMPEG_LIBRARIES="SDL SDL_mixer" FFMPEG_LIBRARY_DIRS=${LOCALBASE}/lib \
|
|
FFMPEG_INCLUDES=${LOCALBASE}/include/SDL FFMPEG_ROOT=${LOCALBASE}
|
|
GH_ACCOUNT= tito
|
|
GH_PROJECT= ${PORTNAME}-android
|
|
GH_TAGNAME= 6636c3a
|
|
USE_GITHUB= yes
|
|
USES= python
|
|
USE_PYTHON= autoplist concurrent distutils
|
|
USE_SDL= mixer
|
|
WRKSRC_SUBDIR= python
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/ffmpeg/_ffmpeg.so
|
|
|
|
.include <bsd.port.mk>
|