Update to version 0.43

PR:		ports/76541
Submitted by:	Ports Fury
This commit is contained in:
Kirill Ponomarev 2005-01-21 19:24:17 +00:00
parent dbab6ba14f
commit 17d2315c1b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=127048
9 changed files with 7 additions and 84 deletions

View File

@ -7,7 +7,7 @@
#
PORTNAME= qfsm
PORTVERSION= 0.42b
PORTVERSION= 0.43
CATEGORIES= cad
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
@ -15,8 +15,6 @@ MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= ports@FreeBSD.org
COMMENT= A graphical tool for designing finite state machines
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION:S/b//}
USE_QT_VER= 3
USE_REINPLACE= yes
USE_GMAKE= yes

View File

@ -1,2 +1,2 @@
MD5 (qfsm-0.42b.tar.gz) = 8b8da6257eb3bbe9861a8cfb41dbeac5
SIZE (qfsm-0.42b.tar.gz) = 787723
MD5 (qfsm-0.43.tar.gz) = baa0994025dc140d90c29b205e7db6db
SIZE (qfsm-0.43.tar.gz) = 747533

View File

@ -1,12 +0,0 @@
--- src/Export.cpp.orig Mon Dec 29 05:35:44 2003
+++ src/Export.cpp Tue Mar 16 23:40:15 2004
@@ -17,7 +17,8 @@
*/
-#include <iostream.h>
+#include <iostream>
+using namespace std;
#include <qapplication.h>
#include "Export.h"
#include "Machine.h"

View File

@ -1,12 +0,0 @@
--- src/Export.h.orig Sat Feb 14 21:06:52 2004
+++ src/Export.h Tue Mar 16 23:45:39 2004
@@ -19,7 +19,8 @@
#ifndef EXPORT_H
#define EXPORT_H
-#include <fstream.h>
+#include <fstream>
+using namespace std;
#include <qstring.h>
class Machine;

View File

@ -1,12 +0,0 @@
--- src/ExportAHDL.cpp.orig Sat Mar 6 22:28:50 2004
+++ src/ExportAHDL.cpp Tue Mar 16 23:43:50 2004
@@ -16,7 +16,8 @@
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-#include <iostream.h>
+#include <iostream>
+using namespace std;
#include <qregexp.h>
#include "ExportAHDL.h"

View File

@ -1,12 +0,0 @@
--- src/ExportKISS.cpp.orig Tue Feb 3 02:44:02 2004
+++ src/ExportKISS.cpp Tue Mar 16 23:44:37 2004
@@ -16,7 +16,8 @@
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-#include <iostream.h>
+#include <iostream>
+using namespace std;
#include <qregexp.h>
#include "ExportKISS.h"

View File

@ -1,12 +0,0 @@
--- src/ExportVHDL.cpp.orig Sat Mar 6 22:32:02 2004
+++ src/ExportVHDL.cpp Tue Mar 16 23:53:08 2004
@@ -16,7 +16,8 @@
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-#include <iostream.h>
+#include <iostream>
+using namespace std;
#include <qregexp.h>
#include "ExportVHDL.h"

View File

@ -1,12 +0,0 @@
--- src/ExportVerilog.cpp.orig Sat Mar 6 22:33:16 2004
+++ src/ExportVerilog.cpp Tue Mar 16 23:43:03 2004
@@ -16,7 +16,8 @@
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-#include <iostream.h>
+#include <iostream>
+using namespace std;
#include <qregexp.h>
#include "ExportVerilog.h"

View File

@ -1,14 +1,11 @@
--- src/main.cpp.orig Sun Mar 7 01:12:13 2004
+++ src/main.cpp Wed Mar 17 00:12:23 2004
@@ -16,8 +16,9 @@
--- src/main.cpp.orig Mon Jan 17 06:23:41 2005
+++ src/main.cpp Wed Jan 19 21:39:30 2005
@@ -16,7 +16,7 @@
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-#include <stdlib.h>
-#include <iostream.h>
+#include <cstdlib>
+#include <iostream>
+using namespace std;
#include <iostream>
#include <qtranslator.h>
#include <qapplication.h>
#include <qstring.h>