svn commit: r354247 - head/multimedia/libxine

Juergen Lock nox at FreeBSD.org
Fri May 16 17:27:40 UTC 2014


Author: nox
Date: Fri May 16 17:27:39 2014
New Revision: 354247
URL: http://svnweb.freebsd.org/changeset/ports/354247
QAT: https://qat.redports.org/buildarchive/r354247/

Log:
  - Fix plist with older nvidia-driver versions that don't support opengl 2.0 .
  - Bump PORTREVISION.
  
  Reported by:	Garrett Garrison

Modified:
  head/multimedia/libxine/Makefile

Modified: head/multimedia/libxine/Makefile
==============================================================================
--- head/multimedia/libxine/Makefile	Fri May 16 17:21:44 2014	(r354246)
+++ head/multimedia/libxine/Makefile	Fri May 16 17:27:39 2014	(r354247)
@@ -3,7 +3,7 @@
 
 PORTNAME=	xine
 PORTVERSION=	1.2.4
-PORTREVISION=	9
+PORTREVISION=	10
 CATEGORIES=	multimedia ipv6
 MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}-lib/${PORTVERSION}
 PKGNAMEPREFIX=	lib
@@ -65,7 +65,8 @@ OPTIONS_DEFINE=	CACA ESOUND JACK GNOMEVF
 DOCSDIR=	${PREFIX}/share/doc/xine-lib
 # Please sync with XINE_PLUGINSDIR in multimedia/xine
 # and multimedia/vdr-plugin-xineliboutput
-PLIST_SUB=	PLUGINSDIR="lib/xine/plugins/2.3"
+PLUGINSDIR=	lib/xine/plugins/2.3
+PLIST_SUB=	PLUGINSDIR="${PLUGINSDIR}"
 
 .include <bsd.port.options.mk>
 
@@ -226,4 +227,12 @@ post-patch:
 		's|{libdir}/pkgconfig|{prefix}/libdata/pkgconfig|' \
 		${WRKSRC}/configure
 
+# XXX older nvidia-driver versions don't support opengl 2.0 so this
+# plugin might not get built:
+post-install:
+.if !exists(${STAGEDIR}${PREFIX}/${PLUGINSDIR}/xineplug_vo_out_opengl2.so)
+	${REINPLACE_CMD} -e '/xineplug_vo_out_opengl2.so/d' \
+		${TMPPLIST}
+.endif
+
 .include <bsd.port.post.mk>


More information about the svn-ports-all mailing list