Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 19 Jun 2015 00:33:34 +0000 (UTC)
From:      Dmitry Marakasov <amdmi3@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r390093 - in head/emulators/pipelight: . files
Message-ID:  <201506190033.t5J0XYI1048480@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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
++}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201506190033.t5J0XYI1048480>