353ad9c72e
Update GStreamer1-vaapi to 0.7.0. * Spell GStreamer consistently. [1] * Fix typo in py3kplist in py3-gstreamer1 [1] * Improve plugins COMMENTS (more improvements welcome) * Actually include the gstreamer1-libav update this time. PR: 204204 [1] (based on) Submitted by: olivierd@ [1]
48 lines
1 KiB
Makefile
48 lines
1 KiB
Makefile
# Created by: Michael Johnson <ahze@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= gstreamer1-plugins-core
|
|
PORTVERSION= ${GST1_VERSION}${GST1_MINIMAL_VERSION}
|
|
PORTREVISION= 0
|
|
CATEGORIES= multimedia audio
|
|
MASTER_SITES= # empty
|
|
DISTFILES= # empty
|
|
EXTRACT_ONLY= # empty
|
|
|
|
MAINTAINER= multimedia@FreeBSD.org
|
|
COMMENT= Core set of typical audio and video GStreamer plugins
|
|
|
|
NO_BUILD= yes
|
|
GST_DIR= lib/gstreamer-1.0
|
|
PLIST_FILES= ${GST_DIR}/.gstreamer-plugins-core.keep
|
|
|
|
USE_GSTREAMER1=yes
|
|
|
|
OPTIONS_DEFINE= DVD
|
|
OPTIONS_DEFAULT=DVD
|
|
DVD_DESC= Include DVD related plugins
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
# Audio plugins
|
|
USE_GSTREAMER1+= mad ogg vorbis
|
|
|
|
# Graphics plugins
|
|
USE_GSTREAMER1+= png
|
|
|
|
# Misc plugins
|
|
USE_GSTREAMER1+= pango
|
|
|
|
# Multimedia plugins
|
|
USE_GSTREAMER1+= libav good theora
|
|
|
|
.if ${PORT_OPTIONS:MDVD}
|
|
# dvd related plugins plugins
|
|
USE_GSTREAMER1+= a52dec dvdread resindvd dts
|
|
.endif
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/${GST_DIR}
|
|
${TOUCH} -f ${STAGEDIR}${PREFIX}/${GST_DIR}/.gstreamer-plugins-core.keep
|
|
|
|
.include <bsd.port.mk>
|