summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Sandall2010-04-27 21:58:49 -0700
committerEric Sandall2010-04-27 21:59:13 -0700
commit0e9c10dc327798006a281e9f913b8c03e93c6b0d (patch)
tree45f9e213e595dddbfbe7cb1e32567d0885f8dc23
parent3ae74a7d421aa2ea5bb62c29abcd2f61351d8536 (diff)
gametable: Added a shared whiteboard client
-rw-r--r--ChangeLog3
-rwxr-xr-xbin-games/gametable/BUILD1
-rwxr-xr-xbin-games/gametable/DEPENDS1
-rwxr-xr-xbin-games/gametable/DETAILS25
-rw-r--r--bin-games/gametable/Gametable%202.0.RC7.zip.sigbin0 -> 287 bytes
-rw-r--r--bin-games/gametable/HISTORY3
-rwxr-xr-xbin-games/gametable/INSTALL16
7 files changed, 49 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index cdd6989..2eba150 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2010-04-26 Eric Sandall <sandalle@sourcemage.org>
+ * bin-games/gametable: Added a shared whiteboard client
+
2010-04-12 Mark Bainter <mbainter@sourcemage.org>
* FUNCTIONS: Removed duplicated code and improved get_*_kernel_config(),
applied Ismael Luceno's improvements
diff --git a/bin-games/gametable/BUILD b/bin-games/gametable/BUILD
new file mode 100755
index 0000000..27ba77d
--- /dev/null
+++ b/bin-games/gametable/BUILD
@@ -0,0 +1 @@
+true
diff --git a/bin-games/gametable/DEPENDS b/bin-games/gametable/DEPENDS
new file mode 100755
index 0000000..26b5537
--- /dev/null
+++ b/bin-games/gametable/DEPENDS
@@ -0,0 +1 @@
+depends JAVA
diff --git a/bin-games/gametable/DETAILS b/bin-games/gametable/DETAILS
new file mode 100755
index 0000000..b9175ac
--- /dev/null
+++ b/bin-games/gametable/DETAILS
@@ -0,0 +1,25 @@
+ SPELL=gametable
+ VERSION=2.0.RC7
+ SOURCE=Gametable%20${VERSION}.zip
+ SOURCE_GPG="gurus.gpg:$SOURCE.sig:WORKS_FOR_ME"
+SOURCE_DIRECTORY="$BUILD_DIRECTORY/Gametable ${VERSION}"
+ SOURCE_URL[0]=https://sourceforge.net/projects/gametable/files/Gametable%20${VERSION:0:3}/Gametable%20${VERSION}/$SOURCE/download
+ LICENSE[0]=http://gametable.sourceforge.net/Gametable/Legal.html
+ WEB_SITE=http://gametable.sourceforge.net/
+ ENTERED=20100426
+ SHORT="Shared whiteboard client"
+ DOCS=""
+cat << EOF
+Gametable is a shared whiteboard client optimized for the tabletop gaming
+experience. It is written in Java to offer broad cross-platform support and
+holds simplicity and ease of use as its highest ideals, while still
+supporting the needs of the game. The learning curve with Gametable is
+virtually non-existent. Gametable comes with pre-installed image sets,
+enabling the immediate creation of custom content.
+
+Among the included features are Dice-rolling, Dice macros, Rulers, Tiles and
+Avatars-called Underlays and Pogs, Simple drawing tools, and Simple card and
+deck support.
+
+Best of all, Gametable is Open Source, and is free for all to download, use, and enjoy!
+EOF
diff --git a/bin-games/gametable/Gametable%202.0.RC7.zip.sig b/bin-games/gametable/Gametable%202.0.RC7.zip.sig
new file mode 100644
index 0000000..4a2d47f
--- /dev/null
+++ b/bin-games/gametable/Gametable%202.0.RC7.zip.sig
Binary files differ
diff --git a/bin-games/gametable/HISTORY b/bin-games/gametable/HISTORY
new file mode 100644
index 0000000..788fc1c
--- /dev/null
+++ b/bin-games/gametable/HISTORY
@@ -0,0 +1,3 @@
+2010-04-26 Eric Sandall <sandalle@sourcemage.org>
+ * DETAILS, DEPENDS, BUILD, INSTALL: Created
+
diff --git a/bin-games/gametable/INSTALL b/bin-games/gametable/INSTALL
new file mode 100755
index 0000000..ca74082
--- /dev/null
+++ b/bin-games/gametable/INSTALL
@@ -0,0 +1,16 @@
+create_group games &&
+mkdir -p "$INSTALL_ROOT/usr/share/games/$SPELL" &&
+chgrp games "$INSTALL_ROOT/usr/share/games/$SPELL" &&
+chgrp -R games . &&
+cp -arv * "$INSTALL_ROOT/usr/share/games/$SPELL/" &&
+
+cat << EOF > "$INSTALL_ROOT/usr/games/$SPELL"
+#!/bin/sh
+
+cd "$INSTALL_ROOT/usr/share/games/$SPELL" &&
+java -jar gametable.jar
+cd -
+EOF
+
+chgrp games "$INSTALL_ROOT/usr/games/$SPELL" &&
+chmod 0750 "$INSTALL_ROOT/usr/games/$SPELL"