summaryrefslogtreecommitdiff
path: root/games
diff options
context:
space:
mode:
authorKirill Ponomarev <krion@FreeBSD.org>2003-08-28 21:29:56 +0000
committerKirill Ponomarev <krion@FreeBSD.org>2003-08-28 21:29:56 +0000
commit21267bd437b32ca9fe6719ac3f2f68d57a4b29c2 (patch)
treeb601b5f1580e54555a5e68787c08c37b08f44945 /games
parentOpenH323 depends on pwlib being built first (diff)
- Argh, author applied patches to sources and
rerolled the tarball. - Bump PORTREVISION
Notes
Notes: svn path=/head/; revision=87934
Diffstat (limited to 'games')
-rw-r--r--games/spacehulk/Makefile1
-rw-r--r--games/spacehulk/distinfo2
-rw-r--r--games/spacehulk/files/patch-src::network.cpp23
-rw-r--r--games/spacehulk/files/patch-src::smtp.cpp20
4 files changed, 2 insertions, 44 deletions
diff --git a/games/spacehulk/Makefile b/games/spacehulk/Makefile
index 177fdba4fe8b..14d42bfdd610 100644
--- a/games/spacehulk/Makefile
+++ b/games/spacehulk/Makefile
@@ -6,6 +6,7 @@
PORTNAME= spacehulk
PORTVERSION= 1.4.5
+PORTREVISION= 1
CATEGORIES= games kde
MASTER_SITES= http://savannah.nongnu.org/download/${PORTNAME}/main.pkg/${PORTVERSION}/
diff --git a/games/spacehulk/distinfo b/games/spacehulk/distinfo
index 3902561a044c..74714ba57c2f 100644
--- a/games/spacehulk/distinfo
+++ b/games/spacehulk/distinfo
@@ -1 +1 @@
-MD5 (spacehulk-1.4.5.tar.gz) = 2428dfb8604f1f6c84d28aa4a0560174
+MD5 (spacehulk-1.4.5.tar.gz) = a4164d35d1e1955457aa079735061888
diff --git a/games/spacehulk/files/patch-src::network.cpp b/games/spacehulk/files/patch-src::network.cpp
deleted file mode 100644
index f4eef3b80ed2..000000000000
--- a/games/spacehulk/files/patch-src::network.cpp
+++ /dev/null
@@ -1,23 +0,0 @@
---- src/network.cpp.orig Mon Aug 25 12:17:02 2003
-+++ src/network.cpp Thu Aug 28 20:47:35 2003
-@@ -28,6 +28,7 @@
- #include <qsocket.h>
- #include <qstring.h>
- #include <qtextstream.h>
-+#include <ctype.h>
-
- #include "network.h"
-
-@@ -102,9 +103,9 @@
- break;
- response += responseLine;
- }
-- guicmd->Write(response);
-- }
-- guicmd->Write(responseLine);
-+ guicmd->Write(response.latin1());
-+}
-+guicmd->Write(responseLine.latin1());
- }
-
- void NetworkInterface::sendFile(QString &filename, bool initgame)
diff --git a/games/spacehulk/files/patch-src::smtp.cpp b/games/spacehulk/files/patch-src::smtp.cpp
deleted file mode 100644
index 25f64d23b0db..000000000000
--- a/games/spacehulk/files/patch-src::smtp.cpp
+++ /dev/null
@@ -1,20 +0,0 @@
---- src/smtp.cpp.orig Thu Aug 21 12:03:45 2003
-+++ src/smtp.cpp Thu Aug 28 20:44:12 2003
-@@ -15,6 +15,7 @@
- #include <qtimer.h>
- #include <qapplication.h>
- #include <qmessagebox.h>
-+#include <ctype.h>
-
- #include <iostream>
- using namespace std;
-@@ -337,9 +338,6 @@
- char *outp = out;
- char buf[4];
-
-- if (inlen < 0)
-- inlen = INT_MAX;
--
- while (inlen >= 4 && *inp != '\0') {
- buf[0] = *inp++;
- inlen--;