mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
games/fceux: Updated to subversion revision r2668.
Rewritten the patch to fix underlinking. Modified the definition of CFLAGS to let the build system get them. Various cleanups. Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
This commit is contained in:
parent
0713c4ca79
commit
63fb4f0580
4 changed files with 54 additions and 44 deletions
|
@ -1,22 +0,0 @@
|
|||
diff -up fceu2.1.5/SConstruct.00 fceu2.1.5/SConstruct
|
||||
--- fceu2.1.5/SConstruct.00 2011-06-11 08:32:32.807001855 -0700
|
||||
+++ fceu2.1.5/SConstruct 2011-06-11 08:33:05.347001851 -0700
|
||||
@@ -11,7 +11,7 @@ opts.AddVariables(
|
||||
BoolVariable('LUA', 'Enable Lua support', 1),
|
||||
BoolVariable('NEWPPU', 'Enable new PPU core', 1),
|
||||
BoolVariable('CREATE_AVI', 'Enable avi creation support (SDL only)', 1),
|
||||
- BoolVariable('LOGO', 'Enable a logoscreen when creating avis (SDL only)', '1'),
|
||||
+ BoolVariable('LOGO', 'Enable a logoscreen when creating avis (SDL only)', '0'),
|
||||
BoolVariable('GTK', 'Enable GTK2 GUI (SDL only)', 1),
|
||||
BoolVariable('GTK3', 'Enable GTK3 GUI (BROKEN/EXPERIMENTAL)', 0),
|
||||
)
|
||||
@@ -70,6 +70,9 @@ else:
|
||||
env.ParseConfig('pkg-config --cflags --libs gtk+-3.0')
|
||||
env.Append(CPPDEFINES=["_GTK3"])
|
||||
env.Append(CCFLAGS = ["-D_GTK"])
|
||||
+ env.Append(LIBS =["-lz"])
|
||||
+ env.Append(LIBS =["-ldl"])
|
||||
+
|
||||
### Lua platform defines
|
||||
### Applies to all files even though only lua needs it, but should be ok
|
||||
if env['LUA']:
|
31
games/fceux/fceux-r2668.patch
Normal file
31
games/fceux/fceux-r2668.patch
Normal file
|
@ -0,0 +1,31 @@
|
|||
diff -Naur fceur2668.orig/SConstruct fceur2668/SConstruct
|
||||
--- fceur2668.orig/SConstruct 2012-09-11 11:58:00.000000000 +0200
|
||||
+++ fceur2668/SConstruct 2012-09-17 11:11:09.082042995 +0200
|
||||
@@ -19,7 +19,7 @@
|
||||
BoolVariable('LUA', 'Enable Lua support', 1),
|
||||
BoolVariable('NEWPPU', 'Enable new PPU core', 1),
|
||||
BoolVariable('CREATE_AVI', 'Enable avi creation support (SDL only)', 1),
|
||||
- BoolVariable('LOGO', 'Enable a logoscreen when creating avis (SDL only)', '1'),
|
||||
+ BoolVariable('LOGO', 'Enable a logoscreen when creating avis (SDL only)', '0'),
|
||||
BoolVariable('GTK', 'Enable GTK2 GUI (SDL only)', 1),
|
||||
BoolVariable('GTK3', 'Enable GTK3 GUI (SDL only)', 0),
|
||||
BoolVariable('CLANG', 'Compile with llvm-clang instead of gcc', 0)
|
||||
@@ -30,8 +30,8 @@
|
||||
env = Environment(options = opts)
|
||||
|
||||
#### Uncomment this for a public release ###
|
||||
-# env.Append(CPPDEFINES=["PUBLIC_RELEASE"])
|
||||
-# env['DEBUG'] = 0
|
||||
+env.Append(CPPDEFINES=["PUBLIC_RELEASE"])
|
||||
+env['DEBUG'] = 0
|
||||
############################################
|
||||
|
||||
# LSB_FIRST must be off for PPC to compile
|
||||
@@ -97,6 +97,7 @@
|
||||
env.ParseConfig('pkg-config --cflags --libs gtk+-3.0')
|
||||
env.Append(CPPDEFINES=["_GTK3"])
|
||||
env.Append(CCFLAGS = ["-D_GTK"])
|
||||
+ env.Append(LIBS =["-lz","-ldl"])
|
||||
|
||||
### Lua platform defines
|
||||
### Applies to all files even though only lua needs it, but should be ok
|
|
@ -5,7 +5,7 @@
|
|||
# Written by M.Dinslage (daedra1980@gmail.com)
|
||||
|
||||
PRGNAM=fceux
|
||||
VERSION=${VERSION:-2.1.5}
|
||||
VERSION=${VERSION:-r2668}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
|
@ -23,16 +23,16 @@ PKG=$TMP/package-$PRGNAM
|
|||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
if [ "$ARCH" = "i486" ]; then
|
||||
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||
SLKCFLAGS="'-O2', '-march=i486', '-mtune=i686'"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
SLKCFLAGS="'-O2', '-march=i686', '-mtune=i686'"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "x86_64" ]; then
|
||||
SLKCFLAGS="-O2 -fPIC"
|
||||
SLKCFLAGS="'-O2', '-fPIC'"
|
||||
LIBDIRSUFFIX="64"
|
||||
else
|
||||
SLKCFLAGS="-O2"
|
||||
SLKCFLAGS="'-O2'"
|
||||
LIBDIRSUFFIX=""
|
||||
fi
|
||||
|
||||
|
@ -41,10 +41,9 @@ set -e # Exit on most errors
|
|||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
tar xvf $CWD/$PRGNAM-$VERSION.src.tar.bz2
|
||||
rm -rf fceu$VERSION
|
||||
tar xvf $CWD/$PRGNAM-$VERSION.src.tar.?z*
|
||||
cd fceu$VERSION
|
||||
patch -p1 < $CWD/fceux-2.1.5-underlink.patch
|
||||
chown -R root:root .
|
||||
find . \
|
||||
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
|
||||
|
@ -52,26 +51,28 @@ find . \
|
|||
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
||||
-exec chmod 644 {} \;
|
||||
|
||||
# Fix underlinking and disable debug with a patch
|
||||
patch -p1 < $CWD/fceux-r2668.patch
|
||||
# Default prefix is /usr, set our CFLAGS
|
||||
sed -i \
|
||||
-e "s|/local||" \
|
||||
-e "s|'-Wall'|${SLKCFLAGS}, '-Wall'|" \
|
||||
SConstruct
|
||||
|
||||
scons
|
||||
|
||||
#Install binary
|
||||
mkdir -p $PKG/usr/games
|
||||
install -m 0755 bin/fceux $PKG/usr/games
|
||||
install -m 0755 -D bin/$PRGNAM $PKG/usr/games/$PRGNAM
|
||||
|
||||
#install man pages
|
||||
#install the man page
|
||||
mkdir -p $PKG/usr/man/man6
|
||||
install -m 0644 documentation/fceux.6 $PKG/usr/man/man6
|
||||
gzip -c documentation/$PRGNAM.6 > $PKG/usr/man/man6/$PRGNAM.6.gz
|
||||
|
||||
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
|
||||
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||
|
||||
find $PKG/usr/man -type f -exec gzip -9 {} \;
|
||||
for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a \
|
||||
bin/fceux.chm COPYING INSTALL README-SDL TODO-PROJECT \
|
||||
$PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a documentation/* COPYING *.txt *.md $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
#Add icon and application launcher
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
PRGNAM="fceux"
|
||||
VERSION="2.1.5"
|
||||
VERSION="r2668"
|
||||
HOMEPAGE="http://fceux.com/web/home.html"
|
||||
DOWNLOAD="http://downloads.sourceforge.net/fceultra/fceux-2.1.5.src.tar.bz2"
|
||||
MD5SUM="e8b20e62bbbb061b1a59d51b47c827bd"
|
||||
DOWNLOAD="http://ponce.cc/slackware/sources/repo/fceux-r2668.src.tar.xz"
|
||||
MD5SUM="42dd2194ddf292baf9a55475faf27d9d"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES="scons"
|
||||
REQUIRES="lua scons"
|
||||
MAINTAINER="M.Dinslage"
|
||||
EMAIL="daedra1980@gmail.com"
|
||||
|
|
Loading…
Reference in a new issue