summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2003-11-22 01:37:57 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2003-11-22 01:37:57 +0000
commit801c57148f9d79d27e3604193bcfdc2867e76198 (patch)
tree775bedbe39ce979adcc13d7f7c17b9ba426e08fe /games-strategy/dopewars/files
parentfix gtk2 USE handling per Spider; mark stable on ppc (diff)
downloadgentoo-2-801c57148f9d79d27e3604193bcfdc2867e76198.tar.gz
gentoo-2-801c57148f9d79d27e3604193bcfdc2867e76198.tar.bz2
gentoo-2-801c57148f9d79d27e3604193bcfdc2867e76198.zip
clean version 1.5.8 from portage
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/dopewars-1.5.8-gentoo.diff58
2 files changed, 0 insertions, 59 deletions
diff --git a/games-strategy/dopewars/files/digest-dopewars-1.5.8 b/games-strategy/dopewars/files/digest-dopewars-1.5.8
deleted file mode 100644
index 10e57826ed9e..000000000000
--- a/games-strategy/dopewars/files/digest-dopewars-1.5.8
+++ /dev/null
@@ -1 +0,0 @@
-MD5 d2321652075806ac21b2716dbb416b29 dopewars-1.5.8.tar.gz 1168140
diff --git a/games-strategy/dopewars/files/dopewars-1.5.8-gentoo.diff b/games-strategy/dopewars/files/dopewars-1.5.8-gentoo.diff
deleted file mode 100644
index 539966062659..000000000000
--- a/games-strategy/dopewars/files/dopewars-1.5.8-gentoo.diff
+++ /dev/null
@@ -1,58 +0,0 @@
-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
-