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

(-)devel/kaptain/Makefile (-6 / +15 lines)
Lines 8-15 Link Here
8
#
8
#
9
9
10
PORTNAME=	kaptain
10
PORTNAME=	kaptain
11
PORTVERSION=	0.7
11
PORTVERSION=	0.71
12
#PORTEPOCH=
13
CATEGORIES=	devel
12
CATEGORIES=	devel
14
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
13
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
15
MASTER_SITE_SUBDIR=	${PORTNAME}
14
MASTER_SITE_SUBDIR=	${PORTNAME}
Lines 18-27 Link Here
18
COMMENT=	A tool for building/running QT GUIs for commmand line programs
17
COMMENT=	A tool for building/running QT GUIs for commmand line programs
19
18
20
USE_QT_VER=	3
19
USE_QT_VER=	3
21
GNU_CONFIGURE=	yes
20
USE_REINPLACE=	yes
22
USE_GMAKE=	yes
21
USE_GMAKE=	yes
23
CONFIGURE_ARGS+=--enable-mt
22
GNU_CONFIGURE=	yes
23
CONFIGURE_TARGET=	--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
24
CONFIGURE_ARGS=	--enable-mt
25
26
MAN1=		kaptain.1
27
INFO=		kaptain
28
29
post-extract:
30
	@${RM} -f ${WRKSRC}/doc/*.info*
31
32
post-patch:
33
	@${REINPLACE_CMD} -e \
34
		's|%%PREFIX%%|${PREFIX}|g' ${WRKSRC}/examples/dia2code.kaptn
24
35
25
.include "${.CURDIR}/maninfo.mk"
26
.include <bsd.port.mk>
36
.include <bsd.port.mk>
27
#EOF
(-)devel/kaptain/distinfo (-1 / +1 lines)
Line 1 Link Here
1
MD5 (kaptain-0.7.tar.gz) = 83c9c7428a0dd454b5c4fa2ae7619510
1
MD5 (kaptain-0.71.tar.gz) = bd3e56fc31703872ef1b22a4c3e982b5
(-)devel/kaptain/files/patch-doc-kaptain.texi (+13 lines)
Line 0 Link Here
1
--- doc/kaptain.texi.orig	Mon Mar 24 21:07:29 2003
2
+++ doc/kaptain.texi	Sat Aug 30 16:13:22 2003
3
@@ -3,6 +3,10 @@
4
 @c %**start of header
5
 @setfilename kaptain.info
6
 @settitle Kaptain
7
+@dircategory
8
+@direntry Applications
9
+* Kaptain: (kaptain).		The Universal Graphical Front-end.
10
+@end direntry
11
 @finalout
12
 @c %**end of header
13
 
(-)devel/kaptain/files/patch-examples-dia2code.kaptn (-1 / +1 lines)
Lines 2-8 Link Here
2
+++ examples/dia2code.kaptn	Fri Dec 20 13:17:45 2002
2
+++ examples/dia2code.kaptn	Fri Dec 20 13:17:45 2002
3
@@ -1,17 +1,20 @@
3
@@ -1,17 +1,20 @@
4
-#!/usr/bin/kaptain
4
-#!/usr/bin/kaptain
5
+#!/usr/local/bin/kaptain
5
+#!%%PREFIX%%/bin/kaptain
6
 start "Dia2Code" -> dia2code buttons;
6
 start "Dia2Code" -> dia2code buttons;
7
 dia2code :tabbed -> main about;
7
 dia2code :tabbed -> main about;
8
 
8
 
(-)devel/kaptain/files/patch-kaptain-communication.cpp (-20 lines)
Lines 1-20 Link Here
1
--- kaptain/communication.cpp.orig	Wed Aug 14 12:13:13 2002
2
+++ kaptain/communication.cpp	Fri Dec 20 16:14:31 2002
3
@@ -8,7 +8,7 @@
4
 #include <sys/stat.h>
5
 #include <netdb.h>
6
 #include <fcntl.h>
7
-#include <iostream.h>
8
+#include <iostream>
9
 #include <sstream>
10
 #include "global.h"
11
 #include "tools.h"
12
@@ -16,6 +16,8 @@
13
 #include "grammar.h"
14
 
15
 #define NO_MORE_IO "At most one i/o channel is allowed.\n"
16
+
17
+using namespace std;
18
 
19
 extern Grammar * yygrammar;
20
 
(-)devel/kaptain/files/patch-kaptain-communication.h (-37 lines)
Lines 1-37 Link Here
1
--- kaptain/communication.h.orig	Sat Mar  2 19:56:32 2002
2
+++ kaptain/communication.h	Fri Dec 20 16:14:31 2002
3
@@ -12,7 +12,7 @@
4
   QSocketNotifier * reader;
5
   bool ok;
6
   bool input, output;
7
-  string message; // buffer
8
+  std::string message; // buffer
9
 
10
 public:
11
   Communicator();
12
@@ -21,19 +21,19 @@
13
   bool is_stdin();
14
 
15
   bool setup_stdio();
16
-  bool setup_progio(string);
17
-  bool setup_socket_server(string);
18
-  bool setup_socket_client(string);
19
+  bool setup_progio(std::string);
20
+  bool setup_socket_server(std::string);
21
+  bool setup_socket_client(std::string);
22
 
23
   bool setup_stdin();
24
   bool setup_stdout();
25
-  bool setup_filein(string);
26
-  bool setup_fileout(string);
27
+  bool setup_filein(std::string);
28
+  bool setup_fileout(std::string);
29
 
30
   void no_input() {input=false;}
31
   void no_output() {output=false;}
32
 
33
-  void send(string);
34
+  void send(std::string);
35
 
36
 public slots:
37
   void data_arrived(int);
(-)devel/kaptain/files/patch-kaptain-grammar.cpp (-11 lines)
Lines 1-11 Link Here
1
--- kaptain/grammar.cpp.orig	Wed Aug 14 12:13:38 2002
2
+++ kaptain/grammar.cpp	Fri Dec 20 16:14:31 2002
3
@@ -878,7 +878,7 @@
4
 }
5
 
6
 
7
-void Rule::send(string message, bool prefix_sender=true)
8
+void Rule::send(string message, bool prefix_sender)
9
 {
10
   string total;
11
   if (prefix_sender)
(-)devel/kaptain/files/patch-kaptain-grammar.h (-207 lines)
Lines 1-207 Link Here
1
--- kaptain/grammar.h.orig	Wed Aug 14 12:17:49 2002
2
+++ kaptain/grammar.h	Fri Dec 20 16:14:31 2002
3
@@ -6,7 +6,6 @@
4
 #include <string>
5
 #include <map>
6
 
7
-using namespace std;
8
 
9
 class Grammar;
10
 class Rule;
11
@@ -33,12 +32,12 @@
12
   friend class Intermediate;
13
 
14
   Grammar * grammar;
15
-  list<string *> * modifiers;
16
-  string textinfo[3];
17
+  std::list<std::string *> * modifiers;
18
+  std::string textinfo[3];
19
   int nonterminal;
20
 
21
 public:
22
-  Description(Grammar *, string *, list<string *> *, string **);
23
+  Description(Grammar *, std::string *, std::list<std::string *> *, std::string **);
24
   ~Description();
25
 };
26
 
27
@@ -54,18 +53,18 @@
28
   Grammar * grammar;
29
   int type;
30
   int value;
31
-  string data;
32
-  string data2;
33
+  std::string data;
34
+  std::string data2;
35
 
36
 public: 
37
   Parameter(Grammar *);
38
 
39
   void set_numeral(int);
40
-  void set_string(string *);
41
-  void set_nonterminal(string *);
42
-  void set_regexp(string *);
43
-  void set_substitution(string **);  
44
-  void set_transliteration(string **);
45
+  void set_string(std::string *);
46
+  void set_nonterminal(std::string *);
47
+  void set_regexp(std::string *);
48
+  void set_substitution(std::string **);  
49
+  void set_transliteration(std::string **);
50
 
51
 };
52
 
53
@@ -75,18 +74,18 @@
54
 {
55
   /* Broker of string<->int transformations */
56
 
57
-  vector<string> nonterminal_table;
58
-  vector<string> terminal_table;
59
+  std::vector<std::string> nonterminal_table;
60
+  std::vector<std::string> terminal_table;
61
 
62
 public:
63
 
64
   Broker();
65
   ~Broker();
66
 
67
-  int get_nonterminal(string *); /* returns the number of a nonterminal */
68
-  int get_terminal(string *); /* returns the number of a terminal */
69
+  int get_nonterminal(std::string *); /* returns the number of a nonterminal */
70
+  int get_terminal(std::string *); /* returns the number of a terminal */
71
 
72
-  string get_string(int); /* returns the name of a nonterminal
73
+  std::string get_string(int); /* returns the name of a nonterminal
74
                              or the value of a terminal */
75
 
76
   int get_nt_num() { return nonterminal_table.size(); }
77
@@ -103,22 +102,22 @@
78
 
79
   Grammar * grammar;
80
 
81
-  list<int> symbols;
82
+  std::list<int> symbols;
83
   bool is_default;
84
 
85
 public:
86
   Conjunction(Grammar *);
87
   ~Conjunction();
88
 
89
-  void add_nonterminal(string *);
90
-  void add_terminal(string *);
91
+  void add_nonterminal(std::string *);
92
+  void add_terminal(std::string *);
93
 
94
   void set_default();
95
   bool get_default() { return is_default; }
96
 
97
-  void add_special(string *, list<Parameter *> *, Parameter *);
98
+  void add_special(std::string *, std::list<Parameter *> *, Parameter *);
99
 
100
-  string evaluate(bool);
101
+  std::string evaluate(bool);
102
 
103
 };
104
 
105
@@ -132,7 +131,7 @@
106
 
107
   Grammar * grammar;
108
 
109
-  list<Conjunction *> conjunctions;
110
+  std::list<Conjunction *> conjunctions;
111
   int default_num;
112
 
113
 public:
114
@@ -158,17 +157,17 @@
115
   Disjunction * disjunction; /* the right hand side */
116
 
117
   int type; /* special(>0) or normal(0) */
118
-  string special_type;
119
-  list<Parameter *> * parameters; /* parameter list */
120
+  std::string special_type;
121
+  std::list<Parameter *> * parameters; /* parameter list */
122
   Parameter  * initvalue;
123
-  list<string *> * modifiers;
124
+  std::list<std::string *> * modifiers;
125
   int mods; /* modifier bits */
126
 
127
   /* textual information for the rule */
128
-  string textinfo[3];
129
+  std::string textinfo[3];
130
 
131
   /* transformations for the rule */
132
-  list<Parameter *> * transformations;
133
+  std::list<Parameter *> * transformations;
134
 
135
   Intermediate * my_intermediate;
136
 
137
@@ -177,12 +176,12 @@
138
   Rule(Grammar *);
139
   ~Rule();
140
 
141
-  void set_left(string *);
142
+  void set_left(std::string *);
143
   void set_disjunction(Disjunction *);
144
-  void set_special(string *, list<Parameter *> *, Parameter *);
145
-  void add_modifiers(list<string *> *);
146
-  void set_textinfo(string ** ti);
147
-  void set_transformations(list<Parameter *> *);
148
+  void set_special(std::string *, std::list<Parameter *> *, Parameter *);
149
+  void add_modifiers(std::list<std::string *> *);
150
+  void set_textinfo(std::string ** ti);
151
+  void set_transformations(std::list<Parameter *> *);
152
   
153
   int get_left() { return left; }
154
   Intermediate * get_intermediate() { return my_intermediate; }
155
@@ -191,10 +190,10 @@
156
 
157
   void verify_rule();
158
 
159
-  string evaluate(bool);
160
+  std::string evaluate(bool);
161
 
162
-  void send(string message, bool prefix_sender=true);
163
-  void recieve(char, string);
164
+  void send(std::string message, bool prefix_sender=true);
165
+  void recieve(char, std::string);
166
 
167
 };
168
 
169
@@ -204,9 +203,9 @@
170
 {
171
   friend class Intermediate;
172
 
173
-  list<Rule *> rules;
174
-  multimap<int, int> constraints;
175
-  list<Description *> descriptions;
176
+  std::list<Rule *> rules;
177
+  std::multimap<int, int> constraints;
178
+  std::list<Description *> descriptions;
179
   Rule * start_rule;
180
 
181
 public:
182
@@ -217,8 +216,8 @@
183
   bool was_default_widget_done; // global variable for a Kaptain tree
184
 
185
   void add_rule(Rule *);
186
-  void add_description(string *, list<string *> *, string **);
187
-  void add_constraint(string *, string *);
188
+  void add_description(std::string *, std::list<std::string *> *, std::string **);
189
+  void add_constraint(std::string *, std::string *);
190
   
191
   Rule * get_rule(int);
192
   Rule * get_start_rule() { return start_rule; }
193
@@ -234,11 +233,11 @@
194
   void unify_rules();
195
   void unify_descriptions();
196
 
197
-  string evaluate_nonterminal(int, bool);
198
+  std::string evaluate_nonterminal(int, bool);
199
   int get_constraint_for(int);
200
 
201
-  void send(string);
202
-  void recieve(string);
203
+  void send(std::string);
204
+  void recieve(std::string);
205
 };
206
 
207
 
(-)devel/kaptain/files/patch-kaptain-intermediate.cpp (-11 lines)
Lines 1-11 Link Here
1
--- kaptain/intermediate.cpp.orig	Wed Aug 14 12:14:52 2002
2
+++ kaptain/intermediate.cpp	Fri Dec 20 16:14:31 2002
3
@@ -552,7 +552,7 @@
4
 
5
 
6
 
7
-void Intermediate::send(string message, char separ=':')
8
+void Intermediate::send(string message, char separ)
9
 {
10
   if (is_special() && father)
11
     /* send throuh SPEC's father */
(-)devel/kaptain/files/patch-kaptain-intermediate.h (-10 lines)
Lines 1-10 Link Here
1
--- kaptain/intermediate.h.orig	Wed Aug 14 12:14:40 2002
2
+++ kaptain/intermediate.h	Fri Dec 20 16:14:31 2002
3
@@ -3,6 +3,7 @@
4
 
5
 #include <list>
6
 #include <string>
7
+#include <iostream>
8
 
9
 using namespace std;
10
 
(-)devel/kaptain/files/patch-kaptain-kaptain.cpp (+11 lines)
Line 0 Link Here
1
--- kaptain/kaptain.cpp.orig	Tue Mar 25 00:27:44 2003
2
+++ kaptain/kaptain.cpp	Fri Sep  5 16:59:24 2003
3
@@ -15,6 +15,8 @@
4
 #include <iostream>
5
 #include <sstream>
6
 #include <string>
7
+#include <iterator>
8
+#include <cassert>
9
 
10
 #define BORDER 10
11
 #define SPACING 5
(-)devel/kaptain/files/patch-kaptain-kaptain.h (-2 / +2 lines)
Lines 1-5 Link Here
1
--- kaptain/kaptain.h.orig	Wed Aug 14 06:15:09 2002
1
--- kaptain/kaptain.h.orig	Wed Aug 14 19:15:09 2002
2
+++ kaptain/kaptain.h	Thu Dec 12 19:20:47 2002
2
+++ kaptain/kaptain.h	Wed Sep  3 18:44:51 2003
3
@@ -18,6 +18,7 @@
3
@@ -18,6 +18,7 @@
4
 #include <qvalidator.h>
4
 #include <qvalidator.h>
5
 #include <qmultilineedit.h>
5
 #include <qmultilineedit.h>
(-)devel/kaptain/files/patch-kaptain-lexer.cpp (-95 lines)
Lines 1-95 Link Here
1
--- kaptain/lexer.cpp.orig	Wed Aug 14 14:25:07 2002
2
+++ kaptain/lexer.cpp	Fri Dec 20 16:14:31 2002
3
@@ -559,7 +559,7 @@
4
 int rarrow_lineno=0, larrow_lineno=0, 
5
   nonterminal_lineno=0, last_correct_lineno=0;
6
 char quoting, first_char; 
7
-bool exception(int e);
8
+bool myexception(int e);
9
 string safe_getenv(char *);
10
 #define DOUBLE_QUOTES 1
11
 #define SINGLE_QUOTES 2
12
@@ -921,7 +921,7 @@
13
 case 16:
14
 YY_RULE_SETUP
15
 #line 54 "lexer.lpp"
16
-{ if (exception(1)) return ERROR; }
17
+{ if (myexception(1)) return ERROR; }
18
 	YY_BREAK
19
 case 17:
20
 YY_RULE_SETUP
21
@@ -960,7 +960,7 @@
22
 case 23:
23
 YY_RULE_SETUP
24
 #line 67 "lexer.lpp"
25
-{ exception(1); return ERROR; }
26
+{ myexception(1); return ERROR; }
27
 	YY_BREAK
28
 case 24:
29
 YY_RULE_SETUP
30
@@ -990,7 +990,7 @@
31
 case 28:
32
 YY_RULE_SETUP
33
 #line 79 "lexer.lpp"
34
-{ exception(1); return ERROR; }
35
+{ myexception(1); return ERROR; }
36
 	YY_BREAK
37
 case 29:
38
 YY_RULE_SETUP
39
@@ -1037,7 +1037,7 @@
40
 case 34:
41
 YY_RULE_SETUP
42
 #line 101 "lexer.lpp"
43
-{ exception(1); return ERROR; }
44
+{ myexception(1); return ERROR; }
45
 	YY_BREAK
46
 case 35:
47
 *yy_cp = yy_hold_char; /* undo effects of setting up yytext */
48
@@ -1069,7 +1069,7 @@
49
 case 38:
50
 YY_RULE_SETUP
51
 #line 116 "lexer.lpp"
52
-{ exception(2); return ERROR; }
53
+{ myexception(2); return ERROR; }
54
 	YY_BREAK
55
 case 39:
56
 *yy_cp = yy_hold_char; /* undo effects of setting up yytext */
57
@@ -1115,12 +1115,12 @@
58
 case 43:
59
 YY_RULE_SETUP
60
 #line 141 "lexer.lpp"
61
-{ exception(3); return ERROR; }
62
+{ myexception(3); return ERROR; }
63
 	YY_BREAK
64
 case 44:
65
 YY_RULE_SETUP
66
 #line 142 "lexer.lpp"
67
-{ exception(3); return ERROR; }
68
+{ myexception(3); return ERROR; }
69
 	YY_BREAK
70
 case 45:
71
 YY_RULE_SETUP
72
@@ -1188,12 +1188,12 @@
73
 case 50:
74
 YY_RULE_SETUP
75
 #line 186 "lexer.lpp"
76
-{ exception(4); return ERROR; }
77
+{ myexception(4); return ERROR; }
78
 	YY_BREAK
79
 case 51:
80
 YY_RULE_SETUP
81
 #line 187 "lexer.lpp"
82
-{ exception(4); return ERROR; }
83
+{ myexception(4); return ERROR; }
84
 	YY_BREAK
85
 case 52:
86
 YY_RULE_SETUP
87
@@ -2142,7 +2142,7 @@
88
 extern Grammar * yygrammar;
89
 
90
 
91
-bool exception(int e)
92
+bool myexception(int e)
93
 {
94
   ostringstream message;
95
   string s;
(-)devel/kaptain/files/patch-kaptain-parser.cpp (-11 lines)
Lines 1-11 Link Here
1
--- kaptain/parser.cpp.orig	Wed Aug 14 13:00:21 2002
2
+++ kaptain/parser.cpp	Fri Dec 20 16:14:31 2002
3
@@ -18,7 +18,7 @@
4
 #line 1 "parser.ypp"
5
 
6
 #include <stdlib.h>
7
-#include <iostream.h>
8
+#include <iostream>
9
 #include <string>
10
 #include <list>
11
 #include "grammar.h"
(-)devel/kaptain/files/patch-kaptain-parser.h (-23 lines)
Lines 1-23 Link Here
1
--- kaptain/parser.h.orig	Wed Aug 14 12:26:33 2002
2
+++ kaptain/parser.h	Fri Dec 20 16:14:31 2002
3
@@ -5,15 +5,15 @@
4
 typedef union
5
 {
6
   int integer;
7
-  string * pstring;
8
+  std::string * pstring;
9
   Rule * prule;
10
   Disjunction * pdisjunction;
11
   Conjunction * pconjunction;
12
   Parameter * pparameter;
13
-  list<Parameter *> * pparamlist;
14
-  string * string_array[3];
15
-  list<string *> * pstringlist;
16
-  list<Parameter *> * ptrafolist;
17
+  std::list<Parameter *> * pparamlist;
18
+  std::string * string_array[3];
19
+  std::list<std::string *> * pstringlist;
20
+  std::list<Parameter *> * ptrafolist;
21
 } yystype;
22
 # define YYSTYPE yystype
23
 # define YYSTYPE_IS_TRIVIAL 1
(-)devel/kaptain/files/patch-kaptain-process.cpp (-10 lines)
Lines 1-10 Link Here
1
--- kaptain/process.cpp.orig	Wed Aug 14 12:17:25 2002
2
+++ kaptain/process.cpp	Fri Dec 20 16:14:31 2002
3
@@ -8,6 +8,7 @@
4
 
5
 /* ---------------------------------------------------------------------- */
6
 
7
+using namespace std;
8
 
9
 void clean_up_child_process(int s)
10
 {
(-)devel/kaptain/files/patch-kaptain-process.h (-20 lines)
Lines 1-20 Link Here
1
--- kaptain/process.h.orig	Wed Aug 14 12:17:20 2002
2
+++ kaptain/process.h	Fri Dec 20 16:14:31 2002
3
@@ -3,13 +3,13 @@
4
 
5
 #include <list>
6
 #include <string>
7
+#include <iostream>
8
 
9
-using namespace std;
10
 
11
 void clean_up_child_process(int);
12
 void POSIX_init();
13
-int exec_async(list<string> &);
14
-string exec_sync_stdout(string &);
15
-string exec_sync_stdout(list<string> &);
16
+int exec_async(std::list<std::string> &);
17
+std::string exec_sync_stdout(std::string &);
18
+std::string exec_sync_stdout(std::list<std::string> &);
19
 
20
 #endif // PROCESS_HH
(-)devel/kaptain/files/patch-kaptain-tools.cpp (-9 / +5 lines)
Lines 1-13 Link Here
1
--- kaptain/tools.cpp.orig	Wed Aug 14 06:17:39 2002
1
--- kaptain/tools.cpp.orig	Wed Mar 12 01:38:12 2003
2
+++ kaptain/tools.cpp	Fri Dec 20 18:53:13 2002
2
+++ kaptain/tools.cpp	Wed Sep  3 18:43:40 2003
3
@@ -1,8 +1,10 @@
3
@@ -1,5 +1,6 @@
4
 #include <stdlib.h>
4
 #include <stdlib.h>
5
 #include <stdio.h>
5
 #include <stdio.h>
6
+#include <sys/types.h>
6
+#include <sys/types.h>
7
 #include <regex.h>
7
 #include <regex.h>
8
 #include "tools.h"
8
 #include <iostream>
9
 
9
 #include <iterator>
10
+using namespace std;
11
 
12
 Error::Error()
13
 {
(-)devel/kaptain/files/patch-kaptain-tools.h (-57 lines)
Lines 1-57 Link Here
1
--- kaptain/tools.h.orig	Wed Aug 14 12:17:34 2002
2
+++ kaptain/tools.h	Fri Dec 20 16:14:31 2002
3
@@ -3,20 +3,21 @@
4
 
5
 #include <list>
6
 #include <string>
7
+#include <iostream>
8
+#include <iterator>
9
 
10
-using namespace std;
11
 
12
 /**********/
13
 class Error
14
 {
15
-  list<string> messages;
16
+  std::list<std::string> messages;
17
   bool stop;
18
 
19
 public:
20
   Error();
21
 
22
-  void warning(string);
23
-  void error(string);
24
+  void warning(std::string);
25
+  void error(std::string);
26
 
27
   bool go_on() { return !stop; }
28
 
29
@@ -32,19 +33,19 @@
30
 public:
31
   Regexp();
32
 
33
-  static bool matches(string, string, list<string> & );
34
+  static bool matches(std::string, std::string, std::list<std::string> & );
35
 
36
-  static bool substitute_local(string, string, string, 
37
-                               string &, int &);
38
-  static void substitute(string, string, string, 
39
-                         string &, bool);
40
+  static bool substitute_local(std::string, std::string, std::string, 
41
+                               std::string &, int &);
42
+  static void substitute(std::string, std::string, std::string, 
43
+                         std::string &, bool);
44
 
45
-  static void transliterate(string, string,
46
-                            string, string &);
47
+  static void transliterate(std::string, std::string,
48
+                            std::string, std::string &);
49
 
50
-  static void split(char, string, list<string> &);
51
+  static void split(char, std::string, std::list<std::string> &);
52
 
53
-  static void join(char, list<string> &, string &);
54
+  static void join(char, std::list<std::string> &, std::string &);
55
 };
56
 
57
 
(-)devel/kaptain/maninfo.mk (-1 lines)
Line 1 Link Here
1
MAN1+=		kaptain.1
(-)devel/kaptain/pkg-plist (-1 lines)
Lines 1-5 Link Here
1
bin/kaptain
1
bin/kaptain
2
info/kaptain.info
3
share/kaptain/arping.kaptn
2
share/kaptain/arping.kaptn
4
share/kaptain/budget.kaptn
3
share/kaptain/budget.kaptn
5
share/kaptain/crypt.gif
4
share/kaptain/crypt.gif

Return to bug 56524