svn commit: r472799 - in head/games/frogatto: . files

Steve Wills swills at FreeBSD.org
Tue Jun 19 15:43:02 UTC 2018


Author: swills
Date: Tue Jun 19 15:43:01 2018
New Revision: 472799
URL: https://svnweb.freebsd.org/changeset/ports/472799

Log:
  games/frogatto: Fix line endings on patch
  
  Submitted by:	Green Dog <fiziologus at gmail.com> (via private email)

Modified:
  head/games/frogatto/Makefile   (contents, props changed)
  head/games/frogatto/files/patch-src-surface_cache.cpp   (contents, props changed)

Modified: head/games/frogatto/Makefile
==============================================================================
--- head/games/frogatto/Makefile	Tue Jun 19 15:42:54 2018	(r472798)
+++ head/games/frogatto/Makefile	Tue Jun 19 15:43:01 2018	(r472799)
@@ -22,11 +22,12 @@ LIB_DEPENDS=	libboost_thread.so:devel/boost-libs \
 USE_GITHUB=	yes
 GH_ACCOUNT=	frogatto
 
-USES=		gmake pkgconfig
+USES=		gmake pkgconfig dos2unix
 ALL_TARGET=	game server
 USE_GL=		glew glu
 USE_SDL=	sdl image mixer ttf
 USE_CXXSTD=	c++11
+DOS2UNIX_FILES=	src/surface_cache.cpp
 
 PLIST_FILES=	bin/${PORTNAME} bin/${PORTNAME}-server
 

Modified: head/games/frogatto/files/patch-src-surface_cache.cpp
==============================================================================
--- head/games/frogatto/files/patch-src-surface_cache.cpp	Tue Jun 19 15:42:54 2018	(r472798)
+++ head/games/frogatto/files/patch-src-surface_cache.cpp	Tue Jun 19 15:43:01 2018	(r472799)
@@ -1,11 +1,11 @@
 --- src/surface_cache.cpp.orig	2018-06-16 13:59:29.319430000 +0300
 +++ src/surface_cache.cpp	2018-06-16 14:00:09.140102000 +0300
 @@ -116,7 +116,7 @@
- 	}
- #endif // ANDROID
- 	//std::cerr << "loading image '" << fname << "'\n";
--	if(surf.get() == false || surf->w == 0) {
-+	if(surf.get() == nullptr || surf->w == 0) {
- 		if(key != "") {
- 			std::cerr << "failed to load image '" << key << "'\n";
- 		}
+ 	}
+ #endif // ANDROID
+ 	//std::cerr << "loading image '" << fname << "'\n";
+-	if(surf.get() == false || surf->w == 0) {
++	if(surf.get() == nullptr || surf->w == 0) {
+ 		if(key != "") {
+ 			std::cerr << "failed to load image '" << key << "'\n";
+ 		}


More information about the svn-ports-all mailing list