diff options
author | wxs <wxs@FreeBSD.org> | 2012-11-23 22:35:43 +0800 |
---|---|---|
committer | wxs <wxs@FreeBSD.org> | 2012-11-23 22:35:43 +0800 |
commit | d34de8dc866a9704a12d45819a09c8f1690ca225 (patch) | |
tree | 5e68017d5520a3798c69c899d1089d4a2e277928 /emulators/fceux | |
parent | dfa4ef1c55c9679ac7cb6c7881deb455bc746fff (diff) | |
download | freebsd-ports-gnome-d34de8dc866a9704a12d45819a09c8f1690ca225.tar.gz freebsd-ports-gnome-d34de8dc866a9704a12d45819a09c8f1690ca225.tar.zst freebsd-ports-gnome-d34de8dc866a9704a12d45819a09c8f1690ca225.zip |
Update to 2.1.5
PR: ports/172200
Submitted by: Chris Petrik <c.petrik.sosa@gmail.com>
Approved by: maintainer timeout
Feature safe: yes
Diffstat (limited to 'emulators/fceux')
-rw-r--r-- | emulators/fceux/Makefile | 5 | ||||
-rw-r--r-- | emulators/fceux/distinfo | 4 | ||||
-rw-r--r-- | emulators/fceux/files/patch-SConstruct | 30 | ||||
-rw-r--r-- | emulators/fceux/files/patch-file.c | 10 |
4 files changed, 20 insertions, 29 deletions
diff --git a/emulators/fceux/Makefile b/emulators/fceux/Makefile index 5cd03ce3007c..0cad5ef0edfa 100644 --- a/emulators/fceux/Makefile +++ b/emulators/fceux/Makefile @@ -6,10 +6,9 @@ # PORTNAME= fceux -PORTVERSION= 2.1.4a -PORTREVISION= 3 +PORTVERSION= 2.1.5 CATEGORIES= emulators -MASTER_SITES= SF/fceultra/Source%20Code/2.1.4%20src/ +MASTER_SITES= SF/fceultra/Source%20Code/2.1.5%20src/ DISTNAME= ${PORTNAME}-${PORTVERSION}.src MAINTAINER= davide.italiano@gmail.com diff --git a/emulators/fceux/distinfo b/emulators/fceux/distinfo index 085abbd96cc6..af697e6e48ec 100644 --- a/emulators/fceux/distinfo +++ b/emulators/fceux/distinfo @@ -1,2 +1,2 @@ -SHA256 (fceux-2.1.4a.src.tar.bz2) = 267aef2cf05c510f66eca8330060c495a3c18ad22c73bda42df73d8d8330df3a -SIZE (fceux-2.1.4a.src.tar.bz2) = 5083564 +SHA256 (fceux-2.1.5.src.tar.bz2) = ee6b1ee6a0347e325032f6655a5caa289e2b0458f7fccddccd5137f1cd63bf9f +SIZE (fceux-2.1.5.src.tar.bz2) = 7322199 diff --git a/emulators/fceux/files/patch-SConstruct b/emulators/fceux/files/patch-SConstruct index fdaa48df29b9..352c4433b7b8 100644 --- a/emulators/fceux/files/patch-SConstruct +++ b/emulators/fceux/files/patch-SConstruct @@ -1,33 +1,15 @@ ---- SConstruct 2010-03-30 21:41:39.000000000 -0600 -+++ SConstruct.bak 2010-04-28 20:52:16.000000000 -0500 -@@ -16,7 +16,7 @@ - BoolVariable('GTK_LITE', 'Enable GTK2 for dialogs only', 0) - ) - --env = Environment(options = opts) -+env = Environment(ENV = os.environ, options = opts) - - # LSB_FIRST must be off for PPC to compile - if platform.system == "ppc": -@@ -37,6 +37,8 @@ - env.Append(CCFLAGS = os.environ['CFLAGS'].split()) - if os.environ.has_key('LDFLAGS'): - env.Append(LINKFLAGS = os.environ['LDFLAGS'].split()) -+ env['CPPPATH'] = Split(env['CPPPATH']) -+ env['LIBPATH'] = Split(env['LIBPATH']) - - print "platform: ", env['PLATFORM'] - -@@ -53,9 +55,9 @@ - env.Append(LIBS = ["rpcrt4", "comctl32", "vfw32", "winmm", "ws2_32", "comdlg32", "ole32", "gdi32", "htmlhelp"]) +--- SConstruct.bak 2012-09-30 14:49:24.000000000 -0500 ++++ SConstruct 2012-09-30 14:50:46.000000000 -0500 +@@ -56,9 +56,9 @@ else: conf = Configure(env) + assert conf.CheckLibWithHeader('z', 'zlib.h', 'C', 'inflate;', 1), "please install: zlib" - if not conf.CheckLib('SDL'): - print 'Did not find libSDL or SDL.lib, exiting!' - Exit(1) + ###if not conf.CheckLib('SDL'): + ### print 'Did not find libSDL or SDL.lib, exiting!' + ### Exit(1) - if env['GTK'] or env['GTK_LITE']: + + if env['GTK']: # Add compiler and linker flags from pkg-config - env.ParseConfig('pkg-config --cflags --libs gtk+-2.0') diff --git a/emulators/fceux/files/patch-file.c b/emulators/fceux/files/patch-file.c new file mode 100644 index 000000000000..bd04b8b8cf4a --- /dev/null +++ b/emulators/fceux/files/patch-file.c @@ -0,0 +1,10 @@ +--- src/file.cpp.bak 2012-09-30 18:58:51.000000000 -0500 ++++ src/file.cpp 2012-09-30 18:59:15.000000000 -0500 +@@ -310,7 +310,7 @@ + if(magic==0x088b1f) { + // maybe gzip... + +- void* gzfile = gzopen(fileToOpen.c_str(),"rb"); ++ gzFile gzfile = gzopen(fileToOpen.c_str(),"rb"); + if(gzfile) { + delete fp; |