Date: Thu, 15 Sep 2016 11:59:43 +0000 (UTC) From: Thomas Zander <riggs@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422188 - in head/multimedia: mencoder mplayer mplayer/files Message-ID: <201609151159.u8FBxhsk054538@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: riggs Date: Thu Sep 15 11:59:43 2016 New Revision: 422188 URL: https://svnweb.freebsd.org/changeset/ports/422188 Log: Update to recent upstream snapshot as of 2016-09-12 While on it: - Add missing USE_XORG=xext for X11 OPTION - Import patch by bar@ to deal with certain other ports e.g. x11/slim Added: head/multimedia/mplayer/files/patch-gui_wm_ws.c (contents, props changed) Modified: head/multimedia/mencoder/Makefile head/multimedia/mencoder/distinfo head/multimedia/mplayer/Makefile head/multimedia/mplayer/Makefile.common head/multimedia/mplayer/distinfo Modified: head/multimedia/mencoder/Makefile ============================================================================== --- head/multimedia/mencoder/Makefile Thu Sep 15 11:36:56 2016 (r422187) +++ head/multimedia/mencoder/Makefile Thu Sep 15 11:59:43 2016 (r422188) @@ -3,7 +3,6 @@ PORTNAME= mencoder PORTVERSION= ${MPLAYER_PORT_VERSION}.${MPLAYER_SNAPSHOT_DATE:S/-//g} -PORTREVISION= 2 CATEGORIES= multimedia audio MAINTAINER= riggs@FreeBSD.org Modified: head/multimedia/mencoder/distinfo ============================================================================== --- head/multimedia/mencoder/distinfo Thu Sep 15 11:36:56 2016 (r422187) +++ head/multimedia/mencoder/distinfo Thu Sep 15 11:59:43 2016 (r422188) @@ -1,2 +1,3 @@ -SHA256 (mplayer-1.3.0.20160508.tar.xz) = a7c09980636f27ad2b15186e753736719e99f30e674e6e2c04566f7245a8b627 -SIZE (mplayer-1.3.0.20160508.tar.xz) = 12499244 +TIMESTAMP = 1473848106 +SHA256 (mplayer-1.3.0.20160912.tar.xz) = 8be40d3205c95dbea494ee6250e63a119ee04a785664301b0079e9e97e3c7ec8 +SIZE (mplayer-1.3.0.20160912.tar.xz) = 12736924 Modified: head/multimedia/mplayer/Makefile ============================================================================== --- head/multimedia/mplayer/Makefile Thu Sep 15 11:36:56 2016 (r422187) +++ head/multimedia/mplayer/Makefile Thu Sep 15 11:59:43 2016 (r422188) @@ -78,7 +78,7 @@ PLIST_SUB+= GMPLAYER="@comment " .endif #GUI && X11 .if ${PORT_OPTIONS:MX11} -USE_XORG= x11 xproto xscrnsaver +USE_XORG= x11 xext xproto xscrnsaver .if ${PORT_OPTIONS:MXVIDEO} USE_XORG+= xv .else Modified: head/multimedia/mplayer/Makefile.common ============================================================================== --- head/multimedia/mplayer/Makefile.common Thu Sep 15 11:36:56 2016 (r422187) +++ head/multimedia/mplayer/Makefile.common Thu Sep 15 11:59:43 2016 (r422188) @@ -5,7 +5,7 @@ # $FreeBSD$ MPLAYER_PORT_VERSION= 1.3.0 -MPLAYER_SNAPSHOT_DATE= 2016-05-08 +MPLAYER_SNAPSHOT_DATE= 2016-09-12 MASTER_SITES= LOCAL/riggs/mplayer DISTNAME= mplayer-${MPLAYER_PORT_VERSION}.${MPLAYER_SNAPSHOT_DATE:S/-//g} WRKSRC= ${WRKDIR}/mplayer-export-${MPLAYER_SNAPSHOT_DATE} Modified: head/multimedia/mplayer/distinfo ============================================================================== --- head/multimedia/mplayer/distinfo Thu Sep 15 11:36:56 2016 (r422187) +++ head/multimedia/mplayer/distinfo Thu Sep 15 11:59:43 2016 (r422188) @@ -1,2 +1,3 @@ -SHA256 (mplayer-1.3.0.20160508.tar.xz) = a7c09980636f27ad2b15186e753736719e99f30e674e6e2c04566f7245a8b627 -SIZE (mplayer-1.3.0.20160508.tar.xz) = 12499244 +TIMESTAMP = 1473836368 +SHA256 (mplayer-1.3.0.20160912.tar.xz) = 8be40d3205c95dbea494ee6250e63a119ee04a785664301b0079e9e97e3c7ec8 +SIZE (mplayer-1.3.0.20160912.tar.xz) = 12736924 Added: head/multimedia/mplayer/files/patch-gui_wm_ws.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/mplayer/files/patch-gui_wm_ws.c Thu Sep 15 11:59:43 2016 (r422188) @@ -0,0 +1,23 @@ +--- gui/wm/ws.c.orig 2015-11-18 16:16:39 UTC ++++ gui/wm/ws.c +@@ -193,8 +193,18 @@ void wsInit(Display *display) + int localdisp = 1; + + if (dispname && *dispname != ':') { +- localdisp = 0; +- wsUseXShm = False; ++ // check [Bug 206050] x11/slim: force use unix sockets ++ //localdisp = 0; ++ //wsUseXShm = False; ++ const char *udspfx = "unix:"; ++ size_t strsz = strlen(udspfx); ++ char substr[strsz]; ++ strncpy(substr, dispname, strsz); ++ substr[strsz] = '\0'; ++ if(strcmp(substr, udspfx) != 0) { ++ localdisp = 0; ++ wsUseXShm = False; ++ } + } + + mp_msg(MSGT_GPLAYER, MSGL_DBG2, "[ws] display name: %s => %s display.\n", dispname, localdisp ? "local" : "REMOTE");
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201609151159.u8FBxhsk054538>