* Temporarily removed fceux from net

* Renamed wpa_supplicant to wpa-supplicant
This commit is contained in:
PktSurf 2022-08-06 13:22:50 +05:30
parent 0ce1c5846b
commit 627ca6e566
7 changed files with 1 additions and 169 deletions

View file

@ -22,7 +22,6 @@ mplayer
spacefm
gtypist
testdisk
fceux
wmstickynotes
audacious
ace

View file

@ -1 +0,0 @@
[ -x /etc/rc.d/rc.gtk ] && /etc/rc.d/rc.gtk

View file

@ -1,45 +0,0 @@
app=fceux
version=2.2.3
build=1sml
homepage="https://github.com/TASEmulators/fceux"
download="https://github.com/TASEmulators/fceux/archive/refs/tags/fceux-2.2.3.tar.gz"
desc="An 8-bit NES emulator based on FCE Ultra"
requires="libgd gtk2"
build() {
mkandenterbuilddir
rm -rf $app-$version
tar xf $srcdir/$app-$version.tar.?z*
cd $app-$version
fixbuilddirpermissions
# cc/gcc should either be in /bin or /usr/bin else the SCostruct file in
# scons will fail with a stupid error that zlib.h was not found, even
# though zlib is there.
# g++ is needed in /bin or /usr/bin else midway compile will fail.
applypatch $srcdir/ioapi.patch
applypatch $srcdir/scons-python3.patch
sed -i \
-e "s|symbols', 1|symbols', 0|" \
-e "s|release', 0|release', 1|" \
SConstruct
scons install -i --prefix=$pkg
# Delete low res icon and replace below, also delete unneeded .dll files
#rm -f $pkg/usr/share/pixmaps/fceux.png
#rm -f $pkg/usr/share/$PRGNAME/*.dll
cp COPYING $pkgdocs/
mkfinalpkg
}
sha512sums="
cd8053f0cef3df30e3d009bf0a53ef59d9fa2b342d03300a75caafb0591e62a6bfbc6c12b3efe72e0aba050dc58e401daf54298328979e5b1b9552a91b1d1459 fceux-2.2.3.tar.lz
799b42272c637c90e7389b7907e9d36956a0640366d80ea71a4416237178461f4f39b863c230f878b0adfa7ceec4ed2379b58e07dcecd2c49269739e3e158c03 ioapi.patch
2c2cf6d7eac03a4cf7f66118e0f8af9562eb5497c2e3159952eced1edee5f38c983ede704536eade645f5c028635b8ff0ceca8769dcf0d50b3159a1666660ae0 scons-python3.patch
"

View file

@ -1,13 +0,0 @@
--- a/src/utils/ioapi.h.bak 2018-09-20 12:25:16.118605266 +0530
+++ b/src/utils/ioapi.h 2018-09-20 12:25:56.974424536 +0530
@@ -108,6 +108,10 @@
extern "C" {
#endif
+#ifdef _Z_OF
+#undef OF
+#define OF _Z_OF
+#endif
#define ZLIB_FILEFUNC_SEEK_CUR (1)
#define ZLIB_FILEFUNC_SEEK_END (2)

View file

@ -1,108 +0,0 @@
--- fceux-2.2.3/SConstruct.orig 2019-07-26 18:04:29.368573309 +0000
+++ fceux-2.2.3/SConstruct 2019-07-26 18:04:31.975265342 +0000
@@ -46,30 +46,30 @@
# Default compiler flags:
env.Append(CCFLAGS = ['-Wall', '-Wno-write-strings', '-Wno-sign-compare'])
-if os.environ.has_key('PLATFORM'):
+if os.environ.get('PLATFORM'):
env.Replace(PLATFORM = os.environ['PLATFORM'])
-if os.environ.has_key('CC'):
+if os.environ.get('CC'):
env.Replace(CC = os.environ['CC'])
-if os.environ.has_key('CXX'):
+if os.environ.get('CXX'):
env.Replace(CXX = os.environ['CXX'])
-if os.environ.has_key('WINDRES'):
+if os.environ.get('WINDRES'):
env.Replace(WINDRES = os.environ['WINDRES'])
-if os.environ.has_key('CFLAGS'):
+if os.environ.get('CFLAGS'):
env.Append(CCFLAGS = os.environ['CFLAGS'].split())
-if os.environ.has_key('CXXFLAGS'):
+if os.environ.get('CXXFLAGS'):
env.Append(CXXFLAGS = os.environ['CXXFLAGS'].split())
-if os.environ.has_key('CPPFLAGS'):
+if os.environ.get('CPPFLAGS'):
env.Append(CPPFLAGS = os.environ['CPPFLAGS'].split())
-if os.environ.has_key('LDFLAGS'):
+if os.environ.get('LDFLAGS'):
env.Append(LINKFLAGS = os.environ['LDFLAGS'].split())
-if os.environ.has_key('PKG_CONFIG_PATH'):
+if os.environ.get('PKG_CONFIG_PATH'):
env['ENV']['PKG_CONFIG_PATH'] = os.environ['PKG_CONFIG_PATH']
-if not os.environ.has_key('PKG_CONFIG_PATH') and env['PLATFORM'] == 'darwin':
+if not os.environ.get('PKG_CONFIG_PATH') and env['PLATFORM'] == 'darwin':
env['ENV']['PKG_CONFIG_PATH'] = "/usr/local/lib/pkgconfig:/opt/X11/lib/pkgconfig"
-if os.environ.has_key('PKG_CONFIG_LIBDIR'):
+if os.environ.get('PKG_CONFIG_LIBDIR'):
env['ENV']['PKG_CONFIG_LIBDIR'] = os.environ['PKG_CONFIG_LIBDIR']
-print "platform: ", env['PLATFORM']
+print ("platform: ", env['PLATFORM'])
# compile with clang
if env['CLANG']:
@@ -103,18 +103,18 @@
assert conf.CheckLibWithHeader('z', 'zlib.h', 'c', 'inflate;', 1), "please install: zlib"
if env['SDL2']:
if not conf.CheckLib('SDL2'):
- print 'Did not find libSDL2 or SDL2.lib, exiting!'
+ print ('Did not find libSDL2 or SDL2.lib, exiting!')
Exit(1)
env.Append(CPPDEFINES=["_SDL2"])
env.ParseConfig('pkg-config sdl2 --cflags --libs')
else:
if not conf.CheckLib('SDL'):
- print 'Did not find libSDL or SDL.lib, exiting!'
+ print ('Did not find libSDL or SDL.lib, exiting!')
Exit(1)
env.ParseConfig('sdl-config --cflags --libs')
if env['GTK']:
if not conf.CheckLib('gtk-x11-2.0'):
- print 'Could not find libgtk-2.0, exiting!'
+ print ('Could not find libgtk-2.0, exiting!')
Exit(1)
# Add compiler and linker flags from pkg-config
config_string = 'pkg-config --cflags --libs gtk+-2.0'
@@ -153,7 +153,7 @@
env.Append(CCFLAGS = ["-I/usr/include/lua"])
lua_available = True
if lua_available == False:
- print 'Could not find liblua, exiting!'
+ print ('Could not find liblua, exiting!')
Exit(1)
else:
env.Append(CCFLAGS = ["-Isrc/lua/src"])
@@ -167,7 +167,7 @@
gd = conf.CheckLib('gd', autoadd=1)
if gd == 0:
env['LOGO'] = 0
- print 'Did not find libgd, you won\'t be able to create a logo screen for your avis.'
+ print ('Did not find libgd, you won\'t be able to create a logo screen for your avis.')
if env['OPENGL'] and conf.CheckLibWithHeader('GL', 'GL/gl.h', 'c', autoadd=1):
conf.env.Append(CCFLAGS = "-DOPENGL")
@@ -181,8 +181,8 @@
if env['FRAMESKIP']:
env.Append(CPPDEFINES = ['FRAMESKIP'])
-print "base CPPDEFINES:",env['CPPDEFINES']
-print "base CCFLAGS:",env['CCFLAGS']
+print ("base CPPDEFINES:",env['CPPDEFINES'])
+print ("base CCFLAGS:",env['CCFLAGS'])
if env['DEBUG']:
env.Append(CPPDEFINES=["_DEBUG"], CCFLAGS = ['-g', '-O0'])
--- fceux-2.2.3/src/SConscript.orig 2019-07-26 18:08:11.297535443 +0000
+++ fceux-2.2.3/src/SConscript 2019-07-26 18:08:33.857781956 +0000
@@ -33,7 +33,7 @@
platform_files = SConscript('drivers/sdl/SConscript')
file_list.append(platform_files)
-print env['LINKFLAGS']
+print (env['LINKFLAGS'])
if env['PLATFORM'] == 'win32':
fceux = env.Program('fceux.exe', file_list)

View file

@ -36,7 +36,7 @@ build() {
install -m 0755 $srcdir/wpa_connect_action.sh $pkg/etc/wpa_connect_action.sh
mkdir -p $pkg/var/run/wpa_supplicant
preprunitservice wpa_supplicant down
preprunitservice wpa-supplicant down
mkfinalpkg
}