summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2003-09-10 05:27:31 +0000
committerMike Frysinger <vapier@gentoo.org>2003-09-10 05:27:31 +0000
commit0c0186e57f9c188f3c71c04a35825c8e134cf141 (patch)
tree764612f703bdba5335d790064606b1f53a330c24 /games-strategy/dopewars/files
parentminor version update. resolves bug 27641 (diff)
downloadgentoo-2-0c0186e57f9c188f3c71c04a35825c8e134cf141.tar.gz
gentoo-2-0c0186e57f9c188f3c71c04a35825c8e134cf141.tar.bz2
gentoo-2-0c0186e57f9c188f3c71c04a35825c8e134cf141.zip
mmm strategy games
Diffstat (limited to 'games-strategy/dopewars/files')
-rw-r--r--games-strategy/dopewars/files/digest-dopewars-1.5.81
-rw-r--r--games-strategy/dopewars/files/digest-dopewars-1.5.91
-rw-r--r--games-strategy/dopewars/files/dopewars-1.5.8-gentoo.diff58
3 files changed, 60 insertions, 0 deletions
diff --git a/games-strategy/dopewars/files/digest-dopewars-1.5.8 b/games-strategy/dopewars/files/digest-dopewars-1.5.8
new file mode 100644
index 000000000000..10e57826ed9e
--- /dev/null
+++ b/games-strategy/dopewars/files/digest-dopewars-1.5.8
@@ -0,0 +1 @@
+MD5 d2321652075806ac21b2716dbb416b29 dopewars-1.5.8.tar.gz 1168140
diff --git a/games-strategy/dopewars/files/digest-dopewars-1.5.9 b/games-strategy/dopewars/files/digest-dopewars-1.5.9
new file mode 100644
index 000000000000..b705ba032dc4
--- /dev/null
+++ b/games-strategy/dopewars/files/digest-dopewars-1.5.9
@@ -0,0 +1 @@
+MD5 77cdbc59e7550cfda7dfb7f6b7a01050 dopewars-1.5.9.tar.gz 1181836
diff --git a/games-strategy/dopewars/files/dopewars-1.5.8-gentoo.diff b/games-strategy/dopewars/files/dopewars-1.5.8-gentoo.diff
new file mode 100644
index 000000000000..539966062659
--- /dev/null
+++ b/games-strategy/dopewars/files/dopewars-1.5.8-gentoo.diff
@@ -0,0 +1,58 @@
+diff -NurB dopewars-1.5.8/src/dopewars.c dopewars-1.5.8-patched/src/dopewars.c
+--- dopewars-1.5.8/src/dopewars.c 2002-10-19 15:44:27.000000000 -0500
++++ dopewars-1.5.8-patched/src/dopewars.c 2002-11-07 00:03:31.000000000 -0500
+@@ -2345,7 +2345,8 @@
+ path = g_strdup_printf("file://%s\\", bindir);
+ g_free(bindir);
+ #else
+- path = g_strdup_printf("file://%s/doc/%s-%s/", DPDATADIR, PACKAGE, VERSION);
++ path = g_strdup_printf("file://%s/doc/%s-%s/html/",
++ DPDATADIR, PACKAGE, VERSION);
+ #endif
+ return path;
+ }
+@@ -2887,7 +2888,7 @@
+ * Stub function to report an error if the Curses client is requested and
+ * it isn't compiled in.
+ */
+-void CursesLoop(void)
++void CursesLoop(struct CMDLINE *cmdline)
+ {
+ g_print(_("No curses client available - rebuild the binary passing the\n"
+ "--enable-curses-client option to configure, or use a windowed\n"
+@@ -2902,9 +2903,10 @@
+ */
+ #ifdef CYGWIN
+ gboolean GtkLoop(HINSTANCE hInstance, HINSTANCE hPrevInstance,
+- gboolean ReturnOnFail)
++ struct CMDLINE *cmdline, gboolean ReturnOnFail)
+ #else
+-gboolean GtkLoop(int *argc, char **argv[], gboolean ReturnOnFail)
++gboolean GtkLoop(int *argc, char **argv[], struct CMDLINE *cmdline,
++ gboolean ReturnOnFail)
+ #endif
+ {
+ if (!ReturnOnFail) {
+diff -NurB dopewars-1.5.8/src/dopewars.h dopewars-1.5.8-patched/src/dopewars.h
+--- dopewars-1.5.8/src/dopewars.h 2002-08-30 13:15:42.000000000 -0500
++++ dopewars-1.5.8-patched/src/dopewars.h 2002-11-07 00:01:51.000000000 -0500
+@@ -456,15 +456,16 @@
+ gchar *GetLocalConfigFile(void);
+
+ #ifndef CURSES_CLIENT
+-void CursesLoop(void);
++void CursesLoop(struct CMDLINE *cmdline);
+ #endif
+
+ #ifndef GUI_CLIENT
+ #ifdef CYGWIN
+ gboolean GtkLoop(HINSTANCE hInstance, HINSTANCE hPrevInstance,
+- gboolean ReturnOnFail);
++ struct CMDLINE *cmdline, gboolean ReturnOnFail);
+ #else
+-gboolean GtkLoop(int *argc, char **argv[], gboolean ReturnOnFail);
++gboolean GtkLoop(int *argc, char **argv[], struct CMDLINE *cmdline,
++ gboolean ReturnOnFail);
+ #endif
+ #endif
+