- Update to 2.1.3
PR: ports/146134 Submitted by: Chris Petrik <chris@officialunix.com> (maintainer)
This commit is contained in:
parent
06361be82f
commit
6cf1829168
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=253676
3 changed files with 16 additions and 17 deletions
|
@ -6,8 +6,7 @@
|
|||
#
|
||||
|
||||
PORTNAME= fceux
|
||||
PORTVERSION= 2.1.1
|
||||
PORTREVISION= 2
|
||||
PORTVERSION= 2.1.3
|
||||
CATEGORIES= emulators
|
||||
MASTER_SITES= SF/fceultra/Source%20Code/${PORTVERSION}%20src/
|
||||
DISTNAME= ${PORTNAME}-${PORTVERSION}.src
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
MD5 (fceux-2.1.1.src.tar.bz2) = d669309a3fb15c002fffb24a801c2a9b
|
||||
SHA256 (fceux-2.1.1.src.tar.bz2) = 5f668de5870e28e4b52fcf8816c17831c0f9597307bd643c226a616a1766bdab
|
||||
SIZE (fceux-2.1.1.src.tar.bz2) = 3263945
|
||||
MD5 (fceux-2.1.3.src.tar.bz2) = 2943e3be634b4c1c1f5114e03c681af4
|
||||
SHA256 (fceux-2.1.3.src.tar.bz2) = 19731bb145ca2a2300657671b1a720892a343f9a55ef42282b6a1c152e6f7514
|
||||
SIZE (fceux-2.1.3.src.tar.bz2) = 4809647
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
--- SConstruct.bak 2009-10-22 02:59:15.000000000 -0500
|
||||
+++ SConstruct 2009-10-22 03:01:00.000000000 -0500
|
||||
@@ -14,7 +14,7 @@
|
||||
BoolVariable('LOGO', 'Enable a logoscreen when creating avis (SDL only)', '1')
|
||||
--- 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)
|
||||
|
@ -9,7 +9,7 @@
|
|||
|
||||
# LSB_FIRST must be off for PPC to compile
|
||||
if platform.system == "ppc":
|
||||
@@ -35,6 +35,8 @@
|
||||
@@ -37,6 +37,8 @@
|
||||
env.Append(CCFLAGS = os.environ['CFLAGS'].split())
|
||||
if os.environ.has_key('LDFLAGS'):
|
||||
env.Append(LINKFLAGS = os.environ['LDFLAGS'].split())
|
||||
|
@ -18,16 +18,16 @@
|
|||
|
||||
print "platform: ", env['PLATFORM']
|
||||
|
||||
@@ -51,9 +53,9 @@
|
||||
@@ -53,9 +55,9 @@
|
||||
env.Append(LIBS = ["rpcrt4", "comctl32", "vfw32", "winmm", "ws2_32", "comdlg32", "ole32", "gdi32", "htmlhelp"])
|
||||
else:
|
||||
conf = Configure(env)
|
||||
- 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 not conf.CheckLib('z', autoadd=1):
|
||||
print 'Did not find libz or z.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']:
|
||||
# Add compiler and linker flags from pkg-config
|
||||
env.ParseConfig('pkg-config --cflags --libs gtk+-2.0')
|
||||
|
|
Loading…
Reference in a new issue