View | Details | Raw Unified | Return to bug 86119
Collapse All | Expand All

(-)games/freedoko/Makefile (-3 / +2 lines)
Lines 6-13 Link Here
6
#
6
#
7
7
8
PORTNAME=	freedoko
8
PORTNAME=	freedoko
9
PORTVERSION=	0.6.9
9
PORTVERSION=	0.7.0
10
PORTREVISION=	1
11
CATEGORIES=	games
10
CATEGORIES=	games
12
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
11
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
13
MASTER_SITE_SUBDIR=	free-doko
12
MASTER_SITE_SUBDIR=	free-doko
Lines 30-36 Link Here
30
	@${FIND} ${WRKSRC} -name "*Makefile*" | ${XARGS} ${REINPLACE_CMD} -e \
29
	@${FIND} ${WRKSRC} -name "*Makefile*" | ${XARGS} ${REINPLACE_CMD} -e \
31
		's|\.\./data|$$(DATADIR)|g ; \
30
		's|\.\./data|$$(DATADIR)|g ; \
32
		 s|gtkmm-2.0|gtkmm-2.4|g ; \
31
		 s|gtkmm-2.0|gtkmm-2.4|g ; \
33
		 s|@echo $$(CXX)|@true $(CXX)|g ; \
32
		 s|@echo $$(CXX)|@true $$(CXX)|g ; \
34
		 s|@$$(CXX)|$$(CXX)|g ; \
33
		 s|@$$(CXX)|$$(CXX)|g ; \
35
		 s|make -C|$$(MAKE) -C|g'
34
		 s|make -C|$$(MAKE) -C|g'
36
	@${REINPLACE_CMD} -e \
35
	@${REINPLACE_CMD} -e \
(-)games/freedoko/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
MD5 (FreeDoko_0.6.9.src.zip) = cf1ae3d7c8d3a759ff10e6bc9e8b1013
1
MD5 (FreeDoko_0.7.0.src.zip) = e285266ef30c02e0f82dae79a938ade6
2
SIZE (FreeDoko_0.6.9.src.zip) = 7818155
2
SIZE (FreeDoko_0.7.0.src.zip) = 7668449
(-)games/freedoko/files/patch-ui-gtkmm-icongroup.cpp (+18 lines)
Line 0 Link Here
1
--- ui/gtkmm/icongroup.cpp.orig	Mon Aug 22 03:51:54 2005
2
+++ ui/gtkmm/icongroup.cpp	Wed Sep 14 18:20:53 2005
3
@@ -218,6 +218,7 @@
4
 	  << endl;
5
 	}
6
 #endif
7
+#if 0
8
 	if (icon.is_null()
9
 	    && ::setting(Setting::SHOW_AI_INFORMATION_TEAMS)
10
 	    && (game.humanno() == 1)
11
@@ -228,6 +229,7 @@
12
 	  icon->saturate_and_pixelate(copy, 5, true);
13
 	  icon = copy;
14
 	} // if (icon.is_null())
15
+#endif
16
 
17
 	if (icon)
18
 	  possible_icons.push_back(icon);
(-)games/freedoko/files/patch-ui-help.cpp (+171 lines)
Line 0 Link Here
1
--- ui/help.cpp.orig	Sun Aug  7 15:59:22 2005
2
+++ ui/help.cpp	Wed Sep 14 18:56:54 2005
3
@@ -49,7 +49,7 @@
4
    **
5
    **/
6
   string
7
-    Help::manual_directory()
8
+    manual_directory()
9
     {
10
 	vector<string> directory;
11
 
12
@@ -132,7 +132,7 @@
13
 	return ("http://free-doko.sourceforge.net/"
14
 		+ ::setting(Setting::HELP_DIRECTORY) + "/"
15
 		+ ::setting(Setting::LANGUAGE) + "/");
16
-    } // string Help::manual_directory()
17
+    } // string manual_directory()
18
 
19
   /**
20
    ** -> result
21
@@ -147,10 +147,10 @@
22
    **
23
    **/
24
   string
25
-    Help::operation_directory()
26
+    operation_directory()
27
     {
28
       return (manual_directory() + "operation/");
29
-    } // string Help::operation_directory()
30
+    } // string operation_directory()
31
 
32
   /**
33
    ** show the help page of the given location
34
@@ -165,7 +165,7 @@
35
    **
36
    **/
37
   void
38
-    Help::show(string const location)
39
+    show(string const location)
40
     {
41
 #ifndef WINDOWS
42
       ::system((::setting(Setting::BROWSER) + " " + location + " &").c_str());
43
@@ -174,7 +174,7 @@
44
 #endif
45
 
46
       return ;
47
-    } // void Help::show(string const location)
48
+    } // void show(string const location)
49
 
50
   /**
51
    ** show the manual help page of the given location
52
@@ -189,12 +189,12 @@
53
    **
54
    **/
55
   void
56
-    Help::show_manual(string const page)
57
+    show_manual(string const page)
58
     {
59
       show(manual_directory() + page + ".html");
60
 
61
       return ;
62
-    } // void Help::show_manual(string const page)
63
+    } // void show_manual(string const page)
64
 
65
   /**
66
    ** show the operation help page of the given location
67
@@ -209,12 +209,12 @@
68
    **
69
    **/
70
   void
71
-    Help::show_operation(string const page)
72
+    show_operation(string const page)
73
     {
74
       show(operation_directory() + page + ".html");
75
 
76
       return ;
77
-    } // void Help::show_operation(string const page)
78
+    } // void show_operation(string const page)
79
 
80
   /**
81
    ** shows the help for 'game_status'
82
@@ -231,10 +231,10 @@
83
    **
84
    **/
85
   void
86
-    Help::show(GameStatus const game_status)
87
+    show(GameStatus const game_status)
88
     {
89
       return ;
90
-    } // void Help::show(GameStatus const game_status)
91
+    } // void show(GameStatus const game_status)
92
 
93
   /**
94
    ** shows the help for the rule 'type'
95
@@ -251,10 +251,10 @@
96
    **
97
    **/
98
   void
99
-    Help::show(Rule::TypeBool const type)
100
+    show(Rule::TypeBool const type)
101
     {
102
       return ;
103
-    } // void Help::show(Rule::TypeBool const type)
104
+    } // void show(Rule::TypeBool const type)
105
 
106
   /**
107
    ** shows the help for the rule 'type'
108
@@ -271,10 +271,10 @@
109
    **
110
    **/
111
   void
112
-    Help::show(Rule::TypeUnsigned const type)
113
+    show(Rule::TypeUnsigned const type)
114
     {
115
       return ;
116
-    } // void Help::show(Rule::TypeUnsigned const type)
117
+    } // void show(Rule::TypeUnsigned const type)
118
 
119
   /**
120
    ** shows the help for the setting 'type'
121
@@ -291,10 +291,10 @@
122
    **
123
    **/
124
   void
125
-    Help::show(Setting::TypeBool const type)
126
+    show(Setting::TypeBool const type)
127
     {
128
       return ;
129
-    } // void Help::show(Setting::TypeBool const type)
130
+    } // void show(Setting::TypeBool const type)
131
 
132
   /**
133
    ** shows the help for the setting 'type'
134
@@ -311,10 +311,10 @@
135
    **
136
    **/
137
   void
138
-    Help::show(Setting::TypeUnsigned const type)
139
+    show(Setting::TypeUnsigned const type)
140
     {
141
       return ;
142
-    } // void Help::show(Setting::TypeUnsigned const type)
143
+    } // void show(Setting::TypeUnsigned const type)
144
 
145
   /**
146
    ** shows the help for the setting 'type'
147
@@ -331,10 +331,10 @@
148
    **
149
    **/
150
   void
151
-    Help::show(Setting::TypeString const type)
152
+    show(Setting::TypeString const type)
153
     {
154
       return ;
155
-    } // void Help::show(Setting::TypeString const type)
156
+    } // void show(Setting::TypeString const type)
157
 
158
   /**
159
    ** shows the help for the setting 'type'
160
@@ -351,9 +351,9 @@
161
    **
162
    **/
163
   void
164
-    Help::show(Setting::TypeCardsOrder const type)
165
+    show(Setting::TypeCardsOrder const type)
166
     {
167
       return ;
168
-    } // void Help::show(Setting::TypeCardsOrder const type)
169
+    } // void show(Setting::TypeCardsOrder const type)
170
 
171
 } // namespace Help
(-)games/freedoko/pkg-plist (-2 / +23 lines)
Lines 53-58 Link Here
53
%%PORTDOCS%%%%DOCSDIR%%/manual/de/faq.html
53
%%PORTDOCS%%%%DOCSDIR%%/manual/de/faq.html
54
%%PORTDOCS%%%%DOCSDIR%%/manual/de/files.html
54
%%PORTDOCS%%%%DOCSDIR%%/manual/de/files.html
55
%%PORTDOCS%%%%DOCSDIR%%/manual/de/index.html
55
%%PORTDOCS%%%%DOCSDIR%%/manual/de/index.html
56
%%PORTDOCS%%%%DOCSDIR%%/manual/de/installation.html
56
%%PORTDOCS%%%%DOCSDIR%%/manual/de/introduction.html
57
%%PORTDOCS%%%%DOCSDIR%%/manual/de/introduction.html
57
%%PORTDOCS%%%%DOCSDIR%%/manual/de/operation/_template.html
58
%%PORTDOCS%%%%DOCSDIR%%/manual/de/operation/_template.html
58
%%PORTDOCS%%%%DOCSDIR%%/manual/de/operation/ai_config.html
59
%%PORTDOCS%%%%DOCSDIR%%/manual/de/operation/ai_config.html
Lines 112-117 Link Here
112
%%PORTDOCS%%%%DOCSDIR%%/manual/de/operation/pictures/symbols/hyperswines.club.png
113
%%PORTDOCS%%%%DOCSDIR%%/manual/de/operation/pictures/symbols/hyperswines.club.png
113
%%PORTDOCS%%%%DOCSDIR%%/manual/de/operation/pictures/symbols/hyperswines.diamond.png
114
%%PORTDOCS%%%%DOCSDIR%%/manual/de/operation/pictures/symbols/hyperswines.diamond.png
114
%%PORTDOCS%%%%DOCSDIR%%/manual/de/operation/pictures/symbols/hyperswines.heart.png
115
%%PORTDOCS%%%%DOCSDIR%%/manual/de/operation/pictures/symbols/hyperswines.heart.png
116
%%PORTDOCS%%%%DOCSDIR%%/manual/de/operation/pictures/symbols/hyperswines.king.club.png
117
%%PORTDOCS%%%%DOCSDIR%%/manual/de/operation/pictures/symbols/hyperswines.king.diamond.png
118
%%PORTDOCS%%%%DOCSDIR%%/manual/de/operation/pictures/symbols/hyperswines.king.heart.png
119
%%PORTDOCS%%%%DOCSDIR%%/manual/de/operation/pictures/symbols/hyperswines.king.spade.png
115
%%PORTDOCS%%%%DOCSDIR%%/manual/de/operation/pictures/symbols/hyperswines.spade.png
120
%%PORTDOCS%%%%DOCSDIR%%/manual/de/operation/pictures/symbols/hyperswines.spade.png
116
%%PORTDOCS%%%%DOCSDIR%%/manual/de/operation/pictures/symbols/marriage.club.png
121
%%PORTDOCS%%%%DOCSDIR%%/manual/de/operation/pictures/symbols/marriage.club.png
117
%%PORTDOCS%%%%DOCSDIR%%/manual/de/operation/pictures/symbols/marriage.color.png
122
%%PORTDOCS%%%%DOCSDIR%%/manual/de/operation/pictures/symbols/marriage.color.png
Lines 152-157 Link Here
152
%%PORTDOCS%%%%DOCSDIR%%/manual/de/operation/pictures/symbols/swines-hyperswines.club.png
157
%%PORTDOCS%%%%DOCSDIR%%/manual/de/operation/pictures/symbols/swines-hyperswines.club.png
153
%%PORTDOCS%%%%DOCSDIR%%/manual/de/operation/pictures/symbols/swines-hyperswines.diamond.png
158
%%PORTDOCS%%%%DOCSDIR%%/manual/de/operation/pictures/symbols/swines-hyperswines.diamond.png
154
%%PORTDOCS%%%%DOCSDIR%%/manual/de/operation/pictures/symbols/swines-hyperswines.heart.png
159
%%PORTDOCS%%%%DOCSDIR%%/manual/de/operation/pictures/symbols/swines-hyperswines.heart.png
160
%%PORTDOCS%%%%DOCSDIR%%/manual/de/operation/pictures/symbols/swines-hyperswines.king.club.png
161
%%PORTDOCS%%%%DOCSDIR%%/manual/de/operation/pictures/symbols/swines-hyperswines.king.diamond.png
162
%%PORTDOCS%%%%DOCSDIR%%/manual/de/operation/pictures/symbols/swines-hyperswines.king.heart.png
163
%%PORTDOCS%%%%DOCSDIR%%/manual/de/operation/pictures/symbols/swines-hyperswines.king.spade.png
155
%%PORTDOCS%%%%DOCSDIR%%/manual/de/operation/pictures/symbols/swines-hyperswines.spade.png
164
%%PORTDOCS%%%%DOCSDIR%%/manual/de/operation/pictures/symbols/swines-hyperswines.spade.png
156
%%PORTDOCS%%%%DOCSDIR%%/manual/de/operation/pictures/symbols/swines.club.png
165
%%PORTDOCS%%%%DOCSDIR%%/manual/de/operation/pictures/symbols/swines.club.png
157
%%PORTDOCS%%%%DOCSDIR%%/manual/de/operation/pictures/symbols/swines.diamond.png
166
%%PORTDOCS%%%%DOCSDIR%%/manual/de/operation/pictures/symbols/swines.diamond.png
Lines 225-236 Link Here
225
%%DATADIR%%/cardsets/Altenburg/french/cards/spade/queen.png
234
%%DATADIR%%/cardsets/Altenburg/french/cards/spade/queen.png
226
%%DATADIR%%/cardsets/Altenburg/french/cards/spade/ten.png
235
%%DATADIR%%/cardsets/Altenburg/french/cards/spade/ten.png
227
%%DATADIR%%/cardsets/Altenburg/french/icons/contra.png
236
%%DATADIR%%/cardsets/Altenburg/french/icons/contra.png
237
%%DATADIR%%/cardsets/Altenburg/french/icons/dollen.png
238
%%DATADIR%%/cardsets/Altenburg/french/icons/doppelkopf.png
228
%%DATADIR%%/cardsets/Altenburg/french/icons/five_nines.png
239
%%DATADIR%%/cardsets/Altenburg/french/icons/five_nines.png
229
%%DATADIR%%/cardsets/Altenburg/french/icons/fox_highest_trump.png
240
%%DATADIR%%/cardsets/Altenburg/french/icons/fox_highest_trump.png
230
%%DATADIR%%/cardsets/Altenburg/french/icons/genscher.png
241
%%DATADIR%%/cardsets/Altenburg/french/icons/genscher.png
231
%%DATADIR%%/cardsets/Altenburg/french/icons/hyperswines.club.png
242
%%DATADIR%%/cardsets/Altenburg/french/icons/hyperswines.club.png
232
%%DATADIR%%/cardsets/Altenburg/french/icons/hyperswines.diamond.png
243
%%DATADIR%%/cardsets/Altenburg/french/icons/hyperswines.diamond.png
233
%%DATADIR%%/cardsets/Altenburg/french/icons/hyperswines.heart.png
244
%%DATADIR%%/cardsets/Altenburg/french/icons/hyperswines.heart.png
245
%%DATADIR%%/cardsets/Altenburg/french/icons/hyperswines.king.club.png
246
%%DATADIR%%/cardsets/Altenburg/french/icons/hyperswines.king.diamond.png
247
%%DATADIR%%/cardsets/Altenburg/french/icons/hyperswines.king.heart.png
248
%%DATADIR%%/cardsets/Altenburg/french/icons/hyperswines.king.spade.png
234
%%DATADIR%%/cardsets/Altenburg/french/icons/hyperswines.spade.png
249
%%DATADIR%%/cardsets/Altenburg/french/icons/hyperswines.spade.png
235
%%DATADIR%%/cardsets/Altenburg/french/icons/marriage.club.png
250
%%DATADIR%%/cardsets/Altenburg/french/icons/marriage.club.png
236
%%DATADIR%%/cardsets/Altenburg/french/icons/marriage.color.png
251
%%DATADIR%%/cardsets/Altenburg/french/icons/marriage.color.png
Lines 271-276 Link Here
271
%%DATADIR%%/cardsets/Altenburg/french/icons/swines-hyperswines.club.png
286
%%DATADIR%%/cardsets/Altenburg/french/icons/swines-hyperswines.club.png
272
%%DATADIR%%/cardsets/Altenburg/french/icons/swines-hyperswines.diamond.png
287
%%DATADIR%%/cardsets/Altenburg/french/icons/swines-hyperswines.diamond.png
273
%%DATADIR%%/cardsets/Altenburg/french/icons/swines-hyperswines.heart.png
288
%%DATADIR%%/cardsets/Altenburg/french/icons/swines-hyperswines.heart.png
289
%%DATADIR%%/cardsets/Altenburg/french/icons/swines-hyperswines.king.club.png
290
%%DATADIR%%/cardsets/Altenburg/french/icons/swines-hyperswines.king.diamond.png
291
%%DATADIR%%/cardsets/Altenburg/french/icons/swines-hyperswines.king.heart.png
292
%%DATADIR%%/cardsets/Altenburg/french/icons/swines-hyperswines.king.spade.png
274
%%DATADIR%%/cardsets/Altenburg/french/icons/swines-hyperswines.spade.png
293
%%DATADIR%%/cardsets/Altenburg/french/icons/swines-hyperswines.spade.png
275
%%DATADIR%%/cardsets/Altenburg/french/icons/swines.club.png
294
%%DATADIR%%/cardsets/Altenburg/french/icons/swines.club.png
276
%%DATADIR%%/cardsets/Altenburg/french/icons/swines.diamond.png
295
%%DATADIR%%/cardsets/Altenburg/french/icons/swines.diamond.png
Lines 285-294 Link Here
285
%%DATADIR%%/translations/de/text.bug_report
304
%%DATADIR%%/translations/de/text.bug_report
286
%%DATADIR%%/translations/de/text.cards
305
%%DATADIR%%/translations/de/text.cards
287
%%DATADIR%%/translations/de/text.chat
306
%%DATADIR%%/translations/de/text.chat
288
%%DATADIR%%/translations/de/text.gtkmm.menu
289
%%DATADIR%%/translations/de/text.gui
307
%%DATADIR%%/translations/de/text.gui
290
%%DATADIR%%/translations/de/text.help
308
%%DATADIR%%/translations/de/text.help
309
%%DATADIR%%/translations/de/text.menu
291
%%DATADIR%%/translations/de/text.messages
310
%%DATADIR%%/translations/de/text.messages
311
%%DATADIR%%/translations/de/text.network
292
%%DATADIR%%/translations/de/text.rules
312
%%DATADIR%%/translations/de/text.rules
293
%%DATADIR%%/translations/de/text.settings
313
%%DATADIR%%/translations/de/text.settings
294
%%DATADIR%%/translations/de/text.versions
314
%%DATADIR%%/translations/de/text.versions
Lines 298-307 Link Here
298
%%DATADIR%%/translations/en/text.bug_report
318
%%DATADIR%%/translations/en/text.bug_report
299
%%DATADIR%%/translations/en/text.cards
319
%%DATADIR%%/translations/en/text.cards
300
%%DATADIR%%/translations/en/text.chat
320
%%DATADIR%%/translations/en/text.chat
301
%%DATADIR%%/translations/en/text.gtkmm.menu
302
%%DATADIR%%/translations/en/text.gui
321
%%DATADIR%%/translations/en/text.gui
303
%%DATADIR%%/translations/en/text.help
322
%%DATADIR%%/translations/en/text.help
323
%%DATADIR%%/translations/en/text.menu
304
%%DATADIR%%/translations/en/text.messages
324
%%DATADIR%%/translations/en/text.messages
325
%%DATADIR%%/translations/en/text.network
305
%%DATADIR%%/translations/en/text.rules
326
%%DATADIR%%/translations/en/text.rules
306
%%DATADIR%%/translations/en/text.settings
327
%%DATADIR%%/translations/en/text.settings
307
%%DATADIR%%/translations/en/text.versions
328
%%DATADIR%%/translations/en/text.versions

Return to bug 86119