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

(-)/var/tmp/ruby/surf/Makefile (-2 / +12 lines)
Lines 7-14 Link Here
7
#
7
#
8
8
9
PORTNAME=	surf
9
PORTNAME=	surf
10
PORTVERSION=	1.0.4
10
PORTVERSION=	1.0.5
11
PORTREVISION=	3
11
PORTREVISION=	0
12
CATEGORIES=	math
12
CATEGORIES=	math
13
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
13
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
14
MASTER_SITE_SUBDIR=	${PORTNAME}
14
MASTER_SITE_SUBDIR=	${PORTNAME}
Lines 26-30 Link Here
26
		LDFLAGS="-L${LOCALBASE}/lib"
26
		LDFLAGS="-L${LOCALBASE}/lib"
27
27
28
MAN1=	surf.1
28
MAN1=	surf.1
29
30
.if !defined(NOPORTDOCS)
31
PORTDOCS=	manual.sgml
32
.endif
33
34
post-install:
35
.if !defined(NOPORTDOCS)
36
	@${MKDIR} ${DOCSDIR}
37
	${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/docs/,} ${DOCSDIR}
38
.endif
29
39
30
.include <bsd.port.mk>
40
.include <bsd.port.mk>
(-)/var/tmp/ruby/surf/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
MD5 (surf-1.0.4.tar.gz) = 4880ecf3d4207ab0a4f2a2f017383b65
1
MD5 (surf-1.0.5.tar.gz) = e19fbfdeffd60e8b178be89aeb43f7b1
2
SHA256 (surf-1.0.4.tar.gz) = 1a3c7f5987037a17f2827a69e507f2c2aad6e44417d9fe0a12587e09345a4bc7
2
SHA256 (surf-1.0.5.tar.gz) = 54ae9b0298e85ba1ca265c8517a5adecbdf570563dcaedd9c3255e6e6a5e8afd
3
SIZE (surf-1.0.4.tar.gz) = 460776
3
SIZE (surf-1.0.5.tar.gz) = 433369
(-)/var/tmp/ruby/surf/files/patch-gtkgui::MainWindowController.cc (-11 lines)
Lines 1-11 Link Here
1
--- gtkgui/MainWindowController.cc.orig	Tue Jul 22 16:23:20 2003
2
+++ gtkgui/MainWindowController.cc	Tue Jul 22 16:23:30 2003
3
@@ -28,7 +28,7 @@
4
 
5
 #include <gtk/gtkitemfactory.h>
6
 
7
-#include <strstream.h>
8
+#include <strstream>
9
 
10
 // #define DEBUG
11
 #include "debug.h"
(-)/var/tmp/ruby/surf/files/patch-gtkgui::Requester.cc (-11 lines)
Lines 1-11 Link Here
1
--- gtkgui/Requester.cc.orig	Tue Jul 22 16:23:45 2003
2
+++ gtkgui/Requester.cc	Tue Jul 22 16:24:01 2003
3
@@ -25,7 +25,7 @@
4
 
5
 #include <assert.h>
6
 #include <iostream.h>
7
-#include <strstream.h>
8
+#include <strstream>
9
 
10
 #include <gtk/gtk.h>
11
 
(-)/var/tmp/ruby/surf/files/patch-gtkgui::SaveImageDiaglog.cc (-15 lines)
Lines 1-15 Link Here
1
--- gtkgui/SaveImageDialog.cc.orig	Tue Jul 22 16:24:13 2003
2
+++ gtkgui/SaveImageDialog.cc	Tue Jul 22 16:26:31 2003
3
@@ -23,9 +23,11 @@
4
  */
5
 
6
 
7
-#include <strstream.h>
8
+#include <strstream>
9
 
10
 #include "SaveImageDialog.h"
11
+
12
+using std::ostrstream;
13
 
14
 void SaveImageDialog::toggled_dither_method (GtkWidget *w, gpointer data)
15
 {
(-)/var/tmp/ruby/surf/files/patch-gtkgui::mycolor.cc (-11 lines)
Lines 1-11 Link Here
1
--- gtkgui/mycolor.cc.orig	Tue Jul 22 16:22:12 2003
2
+++ gtkgui/mycolor.cc	Tue Jul 22 16:22:26 2003
3
@@ -26,7 +26,7 @@
4
 #include <assert.h>
5
 #include <iostream.h>
6
 #include <stdlib.h>
7
-#include <strstream.h>
8
+#include <strstream>
9
 
10
 #include <gtk/gtk.h>
11
 #include <gdk/gdk.h>
(-)/var/tmp/ruby/surf/files/patch-misc::Misc.h (-13 lines)
Lines 1-13 Link Here
1
--- misc/Misc.h.orig	Tue Jul 22 16:14:35 2003
2
+++ misc/Misc.h	Tue Jul 22 16:14:59 2003
3
@@ -26,7 +26,9 @@
4
 #ifndef MISC_H
5
 #define MISC_H
6
 
7
-#include <strstream.h>
8
+#include <strstream>
9
+
10
+using std::ostrstream;
11
 
12
 class Misc
13
 {
(-)/var/tmp/ruby/surf/pkg-plist (-2 / +2 lines)
Lines 1-3 Link Here
1
bin/surf
1
bin/surf
2
share/surf/surf.xpm
2
%%DATADIR%%/surf.xpm
3
@dirrm share/surf
3
@dirrm %%DATADIR%%

Return to bug 101947