svn commit: r390093 - in head/emulators/pipelight: . files

Dmitry Marakasov amdmi3 at FreeBSD.org
Fri Jun 19 00:33:35 UTC 2015


Author: amdmi3
Date: Fri Jun 19 00:33:34 2015
New Revision: 390093
URL: https://svnweb.freebsd.org/changeset/ports/390093

Log:
  - Fix build failure due to gpg error (gpg: failed to create temporary file)
  - Add missing include fixing another build failure
  - Whitespace fix

Added:
  head/emulators/pipelight/files/patch-src_linux_libpipelight_configloader.c   (contents, props changed)
Modified:
  head/emulators/pipelight/Makefile

Modified: head/emulators/pipelight/Makefile
==============================================================================
--- head/emulators/pipelight/Makefile	Fri Jun 19 00:30:59 2015	(r390092)
+++ head/emulators/pipelight/Makefile	Fri Jun 19 00:33:34 2015	(r390093)
@@ -57,8 +57,11 @@ RUN_DEPENDS+=	${LOCALBASE}/bin/wine:${PO
 .endif
 
 pre-configure:
-		${LN} -s ${DISTDIR}/${DIST_SUBDIR}/pluginloader.tar.gz ${WRKSRC}/pluginloader-v${DISTVERSION}.tar.gz
-		${LN} -s ${DISTDIR}/${DIST_SUBDIR}/pluginloader.tar.gz.sig ${WRKSRC}/pluginloader-v${DISTVERSION}.tar.gz.sig
+	${LN} -s ${DISTDIR}/${DIST_SUBDIR}/pluginloader.tar.gz \
+		${WRKSRC}/pluginloader-v${DISTVERSION}.tar.gz
+	${LN} -s ${DISTDIR}/${DIST_SUBDIR}/pluginloader.tar.gz.sig \
+		${WRKSRC}/pluginloader-v${DISTVERSION}.tar.gz.sig
+	${MKDIR} ${WRKDIR}/.gnupg
 
 post-stage:
 	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/pipelight/libpipelight.so

Added: head/emulators/pipelight/files/patch-src_linux_libpipelight_configloader.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/emulators/pipelight/files/patch-src_linux_libpipelight_configloader.c	Fri Jun 19 00:33:34 2015	(r390093)
@@ -0,0 +1,17 @@
+--- src/linux/libpipelight/configloader.c.orig	2015-01-11 04:48:05 UTC
++++ src/linux/libpipelight/configloader.c
+@@ -46,6 +46,7 @@
+ #include <string>								// for std::string
+ #include <map>									// for std::map
+ #include <dlfcn.h>
++#include <errno.h>
+ 
+ #include "common/common.h"
+ #include "configloader.h"
+@@ -663,4 +664,4 @@ bool loadPluginInformation(){
+ err:
+ 	fclose(file);
+ 	return false;
+-}
+\ No newline at end of file
++}


More information about the svn-ports-all mailing list