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

(-)cad/qfsm/Makefile (-3 / +1 lines)
Lines 7-21 Link Here
7
#
7
#
8
8
9
PORTNAME=	qfsm
9
PORTNAME=	qfsm
10
PORTVERSION=	0.42b
10
PORTVERSION=	0.43
11
CATEGORIES=	cad
11
CATEGORIES=	cad
12
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
12
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
13
MASTER_SITE_SUBDIR=	${PORTNAME}
13
MASTER_SITE_SUBDIR=	${PORTNAME}
14
14
15
MAINTAINER=	ports@FreeBSD.org
15
MAINTAINER=	ports@FreeBSD.org
16
COMMENT=	A graphical tool for designing finite state machines
16
COMMENT=	A graphical tool for designing finite state machines
17
18
WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION:S/b//}
19
17
20
USE_QT_VER=	3
18
USE_QT_VER=	3
21
USE_REINPLACE=	yes
19
USE_REINPLACE=	yes
(-)cad/qfsm/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
MD5 (qfsm-0.42b.tar.gz) = 8b8da6257eb3bbe9861a8cfb41dbeac5
1
MD5 (qfsm-0.43.tar.gz) = baa0994025dc140d90c29b205e7db6db
2
SIZE (qfsm-0.42b.tar.gz) = 787723
2
SIZE (qfsm-0.43.tar.gz) = 747533
(-)cad/qfsm/files/patch-src::Export.cpp (-12 lines)
Lines 1-12 Link Here
1
--- src/Export.cpp.orig	Mon Dec 29 05:35:44 2003
2
+++ src/Export.cpp	Tue Mar 16 23:40:15 2004
3
@@ -17,7 +17,8 @@
4
 */
5
 
6
 
7
-#include <iostream.h>
8
+#include <iostream>
9
+using namespace std; 
10
 #include <qapplication.h>
11
 #include "Export.h"
12
 #include "Machine.h"
(-)cad/qfsm/files/patch-src::Export.h (-12 lines)
Lines 1-12 Link Here
1
--- src/Export.h.orig	Sat Feb 14 21:06:52 2004
2
+++ src/Export.h	Tue Mar 16 23:45:39 2004
3
@@ -19,7 +19,8 @@
4
 #ifndef EXPORT_H
5
 #define EXPORT_H
6
 
7
-#include <fstream.h>
8
+#include <fstream>
9
+using namespace std;
10
 #include <qstring.h>
11
  
12
 class Machine;
(-)cad/qfsm/files/patch-src::ExportAHDL.cpp (-12 lines)
Lines 1-12 Link Here
1
--- src/ExportAHDL.cpp.orig	Sat Mar  6 22:28:50 2004
2
+++ src/ExportAHDL.cpp	Tue Mar 16 23:43:50 2004
3
@@ -16,7 +16,8 @@
4
 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
5
 */
6
 
7
-#include <iostream.h>
8
+#include <iostream>
9
+using namespace std;
10
 #include <qregexp.h>
11
 
12
 #include "ExportAHDL.h"
(-)cad/qfsm/files/patch-src::ExportKISS.cpp (-12 lines)
Lines 1-12 Link Here
1
--- src/ExportKISS.cpp.orig	Tue Feb  3 02:44:02 2004
2
+++ src/ExportKISS.cpp	Tue Mar 16 23:44:37 2004
3
@@ -16,7 +16,8 @@
4
 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
5
 */
6
 
7
-#include <iostream.h>
8
+#include <iostream>
9
+using namespace std;
10
 #include <qregexp.h>
11
 
12
 #include "ExportKISS.h"
(-)cad/qfsm/files/patch-src::ExportVHDL.cpp (-12 lines)
Lines 1-12 Link Here
1
--- src/ExportVHDL.cpp.orig	Sat Mar  6 22:32:02 2004
2
+++ src/ExportVHDL.cpp	Tue Mar 16 23:53:08 2004
3
@@ -16,7 +16,8 @@
4
 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
5
 */
6
 
7
-#include <iostream.h>
8
+#include <iostream>
9
+using namespace std;
10
 #include <qregexp.h>
11
 
12
 #include "ExportVHDL.h"
(-)cad/qfsm/files/patch-src::ExportVerilog.cpp (-12 lines)
Lines 1-12 Link Here
1
--- src/ExportVerilog.cpp.orig	Sat Mar  6 22:33:16 2004
2
+++ src/ExportVerilog.cpp	Tue Mar 16 23:43:03 2004
3
@@ -16,7 +16,8 @@
4
 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
5
 */
6
 
7
-#include <iostream.h>
8
+#include <iostream>
9
+using namespace std;
10
 #include <qregexp.h>
11
 
12
 #include "ExportVerilog.h"
(-)cad/qfsm/files/patch-src::main.cpp (-7 / +4 lines)
Lines 1-14 Link Here
1
--- src/main.cpp.orig	Sun Mar  7 01:12:13 2004
1
--- src/main.cpp.orig	Mon Jan 17 06:23:41 2005
2
+++ src/main.cpp	Wed Mar 17 00:12:23 2004
2
+++ src/main.cpp	Wed Jan 19 21:39:30 2005
3
@@ -16,8 +16,9 @@
3
@@ -16,7 +16,7 @@
4
 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
4
 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
5
 */
5
 */
6
 
6
 
7
-#include <stdlib.h>
7
-#include <stdlib.h>
8
-#include <iostream.h>
9
+#include <cstdlib>
8
+#include <cstdlib>
10
+#include <iostream>
9
 #include <iostream>
11
+using namespace std;
12
 #include <qtranslator.h>
10
 #include <qtranslator.h>
13
 #include <qapplication.h>
11
 #include <qapplication.h>
14
 #include <qstring.h>

Return to bug 76541