svn commit: r416727 - head/multimedia/plexmediaserver

Mark Felder feld at FreeBSD.org
Sat Jun 11 16:30:02 UTC 2016


Author: feld
Date: Sat Jun 11 16:30:01 2016
New Revision: 416727
URL: https://svnweb.freebsd.org/changeset/ports/416727

Log:
  multimedia/plexmediaserver: Required change for newer plex slave port
  
  Older verisons of Plex we have to create a symlink for this python
  library, but newer versions of Plex ship a duplicate file. We'll just
  attempt to delete it whether or not it exists and intentionally symlink
  it later.

Modified:
  head/multimedia/plexmediaserver/Makefile

Modified: head/multimedia/plexmediaserver/Makefile
==============================================================================
--- head/multimedia/plexmediaserver/Makefile	Sat Jun 11 16:22:01 2016	(r416726)
+++ head/multimedia/plexmediaserver/Makefile	Sat Jun 11 16:30:01 2016	(r416727)
@@ -45,6 +45,9 @@ post-patch:
 	${FIND} ${WRKSRC}/Resources -name '*.so' -exec ${STRIP_CMD} {} \+
 	${STRIP_CMD} ${WRKSRC}/lib* ${WRKSRC}/Resources/Plex*
 	${RM} ${WRKSRC}/start.sh
+	# Older verisons of Plex we have to create a symlink
+	# Newer versions of Plex ship a duplicate file; we'll just symlink
+	${RM} ${WRKSRC}/libpython2.7.so
 
 do-install:
 	(cd ${WRKSRC} && ${COPYTREE_SHARE} \* ${STAGEDIR}/${DATADIR})


More information about the svn-ports-head mailing list