Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master z-rejected grimoire by Ismael Luceno (b0a13f650c3ff8abca271f86b80c6c9cf977cbaa)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Ismael Luceno <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master z-rejected grimoire by Ismael Luceno (b0a13f650c3ff8abca271f86b80c6c9cf977cbaa)
  • Date: Mon, 5 Jan 2015 06:35:47 -0600

GIT changes to master z-rejected grimoire by Ismael Luceno
<ismael AT sourcemage.org>:

z-games/snes9x/BUILD | 8 ++++----
z-games/snes9x/CONFIGURE | 2 ++
z-games/snes9x/DETAILS | 10 +++++-----
z-games/snes9x/HISTORY | 9 +++++++++
z-games/snes9x/INSTALL | 5 +++++
z-games/snes9x/PRE_BUILD | 10 ----------
6 files changed, 25 insertions(+), 19 deletions(-)

New commits:
commit b0a13f650c3ff8abca271f86b80c6c9cf977cbaa
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

snes9x 1.53

- Switched to main mirror
- Sources now compressed with bzip2
- New UNIX build system, no need to patch it
- install rule not provided anymore, do manually

commit aff018574145b26d0086619320ac592f3adebb70
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

snes9x: Add netplay support knob

commit fc3df503bbef1ac0f7c439d32b9ba6833553139f
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

snes9x: Shorten short description

diff --git a/z-games/snes9x/BUILD b/z-games/snes9x/BUILD
index 6027dea..7cde6e2 100755
--- a/z-games/snes9x/BUILD
+++ b/z-games/snes9x/BUILD
@@ -1,5 +1,5 @@
-OPTS="$SNES_OPTS $OPTS" &&
-cd snes9x &&
-make_single &&
-default_games_build &&
+OPTS="$SNES_OPTS $OPTS" &&
+cd "$SOURCE_DIRECTORY"/unix &&
+make_single &&
+default_games_build &&
make_normal
diff --git a/z-games/snes9x/CONFIGURE b/z-games/snes9x/CONFIGURE
index 3d4f3c4..f66fbdd 100755
--- a/z-games/snes9x/CONFIGURE
+++ b/z-games/snes9x/CONFIGURE
@@ -1,3 +1,5 @@
+config_query_option SNES_OPTS "Enable netplay support?" y \
+ --enable-netplay --disable-netplay &&
config_query_option SNES_OPTS "Do you want sound support?" y \
"--with-sound" "--without-sound" &&
config_query_option SNES_OPTS "Do you want glide support?" n \
diff --git a/z-games/snes9x/DETAILS b/z-games/snes9x/DETAILS
index 3e8e086..65af15c 100755
--- a/z-games/snes9x/DETAILS
+++ b/z-games/snes9x/DETAILS
@@ -1,16 +1,16 @@
SPELL=snes9x
- VERSION=1.43
- SOURCE=$SPELL-$VERSION-src.tar.gz
+ VERSION=1.53
+ SOURCE=$SPELL-$VERSION-src.tar.bz2
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION-src
- SOURCE_URL[0]=http://www.lysator.liu.se/$SPELL/$VERSION/$SOURCE
+ SOURCE_URL[0]=http://files.ipherswipsite.com/$SPELL/$SOURCE
WEB_SITE=http://www.snes9x.com/
-
SOURCE_HASH=sha512:99b985d20f5af608be4136c43ac3863667a8dda5b10b897aff7004e0165b047d9590791be3f31e94dd4744f31cae9163ca5ea948126a8eb828bc75743bcdd1f4
+
SOURCE_HASH=sha512:3ded506d1b3b6cff4e8e3de77ad557d97981eb97ea23ffc68ce5abbbd4677aca819776f1d11b9aa47f5b1a785b19455acf6ad4dbc536d3581d62c192ebdfbd8c
LICENSE[0]="non-commercial license (see license.txt in package)"
REJECT="non-commercial license (see license.txt in package)"
ENTERED=20040108
MAKE_NJOBS=1
DOCS="README.UNIX snes9x/CHANGES.TXT"
- SHORT="Snes9x is a portable, freeware Super Nintendo
Entertainment System (SNES) emulator."
+ SHORT="Super Nintendo Entertainment System (SNES) emulator"
cat << EOF
Snes9x is a portable, freeware Super Nintendo Entertainment System (SNES)
emulator. It basically allows you to play most games designed for the SNES
and
diff --git a/z-games/snes9x/HISTORY b/z-games/snes9x/HISTORY
index 22efa2f..81bc62e 100644
--- a/z-games/snes9x/HISTORY
+++ b/z-games/snes9x/HISTORY
@@ -1,3 +1,12 @@
+2015-01-05 Ismael Luceno <ismael AT sourcemage.org>
+ * DETAILS: Shortened short description
+ * CONFIGURE: Added netplay support knob
+ * BUILD, DETAILS, INSTALL, PRE_BUILD: updated spell to 1.53
+ Switched SOURCE_URL[0] to main mirror
+ Switched SOURCE to .tar.bz2
+ Removed PRE_BUILD, not needed anymore
+ Install rule not provided anymore, do manually
+
2006-10-03 Juuso Alasuutari <iuso AT sourcemage.org>
* DETAILS: [automated] Removed UPDATED.

diff --git a/z-games/snes9x/INSTALL b/z-games/snes9x/INSTALL
new file mode 100755
index 0000000..4fe8727
--- /dev/null
+++ b/z-games/snes9x/INSTALL
@@ -0,0 +1,5 @@
+bindir="$INSTALL_ROOT"/usr/games/ &&
+docdir="$INSTALL_ROOT"/usr/share/doc/"$SPELL-$VERSION" &&
+cd "$SOURCE_DIRECTORY" &&
+install -m755 -D -t "$bindir" unix/snes9x &&
+find docs unix/docs -type f -exec install -m644 -D -t "$docdir" '{}' +
diff --git a/z-games/snes9x/PRE_BUILD b/z-games/snes9x/PRE_BUILD
deleted file mode 100755
index 607b2d3..0000000
--- a/z-games/snes9x/PRE_BUILD
+++ /dev/null
@@ -1,10 +0,0 @@
-default_pre_build
&&
-cd ${SOURCE_DIRECTORY}
&&
-sedit "s/@OPTIMIZE@/$CFLAGS/" snes9x/Makefile.in
&&
-sedit "s/-lm/& $LDFLAGS/" snes9x/Makefile.in
&&
-sedit 's/ [^ ]*zlib[^ ]*//' snes9x/Makefile.in
&&
-sedit 's/GUIOBJS)$/& $(OPENGLOBJS)/' snes9x/Makefile.in
&&
-sedit
's:$(exec_prefix)/bin/$(SNES9XBIN):$(exec_prefix)/games/$(SNES9XBIN):' \
-snes9x/Makefile.in
&&
-#HACK to have sorcery query for config_loc
-ln snes9x/configure configure



  • [SM-Commit] GIT changes to master z-rejected grimoire by Ismael Luceno (b0a13f650c3ff8abca271f86b80c6c9cf977cbaa), Ismael Luceno, 01/05/2015

Archive powered by MHonArc 2.6.24.

Top of Page