diff options
author | krion <krion@FreeBSD.org> | 2003-08-29 05:29:56 +0800 |
---|---|---|
committer | krion <krion@FreeBSD.org> | 2003-08-29 05:29:56 +0800 |
commit | 40ae4e0d5d2dc9eb2ed82b79faed4ad497be279b (patch) | |
tree | 21c6efb299edab4c08511c3e28c6a7376f834633 /games | |
parent | de1b58f4f2566d13b0c9e1cc9ba3220a79430652 (diff) | |
download | freebsd-ports-gnome-40ae4e0d5d2dc9eb2ed82b79faed4ad497be279b.tar.gz freebsd-ports-gnome-40ae4e0d5d2dc9eb2ed82b79faed4ad497be279b.tar.zst freebsd-ports-gnome-40ae4e0d5d2dc9eb2ed82b79faed4ad497be279b.zip |
- Argh, author applied patches to sources and
rerolled the tarball.
- Bump PORTREVISION
Diffstat (limited to 'games')
-rw-r--r-- | games/spacehulk/Makefile | 1 | ||||
-rw-r--r-- | games/spacehulk/distinfo | 2 | ||||
-rw-r--r-- | games/spacehulk/files/patch-src::network.cpp | 23 | ||||
-rw-r--r-- | games/spacehulk/files/patch-src::smtp.cpp | 20 |
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--; |