From owner-svn-ports-head@FreeBSD.ORG Fri Jun 19 00:33:35 2015 Return-Path: Delivered-To: svn-ports-head@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6E0FBE34; Fri, 19 Jun 2015 00:33:35 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 431B1ACF; Fri, 19 Jun 2015 00:33:35 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t5J0XZXN048485; Fri, 19 Jun 2015 00:33:35 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t5J0XYI1048480; Fri, 19 Jun 2015 00:33:34 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201506190033.t5J0XYI1048480@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 19 Jun 2015 00:33:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r390093 - in head/emulators/pipelight: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Jun 2015 00:33:35 -0000 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 // for std::string + #include // for std::map + #include ++#include + + #include "common/common.h" + #include "configloader.h" +@@ -663,4 +664,4 @@ bool loadPluginInformation(){ + err: + fclose(file); + return false; +-} +\ No newline at end of file ++}