2013-04-27 22:56:38 +02:00
|
|
|
# Created by: Michael Johnson <ahze@FreeBSD.org>
|
2005-05-26 22:53:54 +02:00
|
|
|
# $FreeBSD$
|
2006-04-30 01:03:03 +02:00
|
|
|
# $MCom: ports/multimedia/gstreamer-plugins-all/Makefile,v 1.8 2006/01/25 18:54:32 ahze Exp $
|
2005-05-26 22:53:54 +02:00
|
|
|
|
|
|
|
PORTNAME= gstreamer-plugins-all
|
2006-05-16 18:25:25 +02:00
|
|
|
PORTVERSION= 1.3.${GST_VERSION}.${GST_SHLIB_VERSION}
|
2014-09-10 22:50:31 +02:00
|
|
|
PORTREVISION= 15
|
2005-05-26 22:53:54 +02:00
|
|
|
CATEGORIES= multimedia
|
|
|
|
MASTER_SITES= # empty
|
|
|
|
DISTFILES= # empty
|
|
|
|
EXTRACT_ONLY= # empty
|
|
|
|
|
2006-06-09 20:00:35 +02:00
|
|
|
MAINTAINER= multimedia@FreeBSD.org
|
2005-05-26 22:53:54 +02:00
|
|
|
COMMENT= Meta-port of all gstreamer plugins with options
|
|
|
|
|
|
|
|
NO_BUILD= yes
|
2013-11-01 23:14:07 +01:00
|
|
|
NO_INSTALL= yes
|
|
|
|
NO_MTREE= yes
|
2005-05-26 22:53:54 +02:00
|
|
|
USE_GSTREAMER= yes
|
2013-11-01 23:14:07 +01:00
|
|
|
|
2012-06-04 22:57:31 +02:00
|
|
|
.include "${.CURDIR}/../../Mk/bsd.gstreamer.mk"
|
|
|
|
|
2013-04-23 16:20:25 +02:00
|
|
|
.for all in ${_GSTREAMER_PLUGINS}
|
2014-05-05 11:45:36 +02:00
|
|
|
OPTIONS_DEFINE+= ${all:tu}
|
|
|
|
${all:tu}_DESC= ${all} plugin
|
|
|
|
OPTIONS_DEFAULT+= ${all:tu}
|
2012-06-04 22:57:31 +02:00
|
|
|
.endfor
|
2005-05-26 22:53:54 +02:00
|
|
|
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
|
|
|
|
# Weed out gst-plugins that can not be packaged. or are broken.
|
|
|
|
.if defined(PACKAGE_BUILDING)
|
2012-06-04 22:57:31 +02:00
|
|
|
PORT_OPTIONS:= ${PORT_OPTIONS:NFAAC} # Mp4 Dolby license , no package
|
|
|
|
PORT_OPTIONS:= ${PORT_OPTIONS:NLAME} # MP3 License , no package
|
|
|
|
PORT_OPTIONS:= ${PORT_OPTIONS:NPEG2ENC} # Broken
|
|
|
|
PORT_OPTIONS:= ${PORT_OPTIONS:NVDPAU} # Needs to be build agains running kernel
|
2008-03-31 15:55:26 +02:00
|
|
|
.endif
|
2005-05-26 22:53:54 +02:00
|
|
|
|
2012-06-04 22:57:31 +02:00
|
|
|
.if ${ARCH} != "i386"
|
|
|
|
PORT_OPTIONS:= ${PORT_OPTIONS:NSPC} # i386 only
|
|
|
|
.endif
|
2005-05-26 22:53:54 +02:00
|
|
|
|
2012-06-04 22:57:31 +02:00
|
|
|
.for f in ${OPTIONS_DEFINE}
|
2014-05-05 11:45:36 +02:00
|
|
|
.if ${PORT_OPTIONS:M${f:tu}}
|
|
|
|
USE_GSTREAMER+= ${f:tl}
|
2005-05-26 22:53:54 +02:00
|
|
|
.endif
|
|
|
|
.endfor
|
|
|
|
|
|
|
|
.include <bsd.port.post.mk>
|