diff options
author | Tilman Keskinoz <arved@FreeBSD.org> | 2006-03-15 13:52:59 +0000 |
---|---|---|
committer | Tilman Keskinoz <arved@FreeBSD.org> | 2006-03-15 13:52:59 +0000 |
commit | 5aba3a9297e626d47867c6158ee616e17bb6d5fc (patch) | |
tree | d8cf8ca831f9b399e009c7fc06dcd8b360b8f283 /net/sipsak | |
parent | 22220119ce0707a63838220b1dbece6a45af18b4 (diff) | |
download | ports-5aba3a9297e626d47867c6158ee616e17bb6d5fc.tar.gz ports-5aba3a9297e626d47867c6158ee616e17bb6d5fc.zip |
Notes
Diffstat (limited to 'net/sipsak')
-rw-r--r-- | net/sipsak/Makefile | 3 | ||||
-rw-r--r-- | net/sipsak/distinfo | 6 | ||||
-rw-r--r-- | net/sipsak/files/patch-helper.c | 11 | ||||
-rw-r--r-- | net/sipsak/files/patch-sipsak.c | 31 | ||||
-rw-r--r-- | net/sipsak/files/patch-sipsak.h | 10 |
5 files changed, 5 insertions, 56 deletions
diff --git a/net/sipsak/Makefile b/net/sipsak/Makefile index a6b57484e213..207e3b028c26 100644 --- a/net/sipsak/Makefile +++ b/net/sipsak/Makefile @@ -6,7 +6,8 @@ # PORTNAME= sipsak -PORTVERSION= 0.8.11 +PORTVERSION= 0.9.6 +DISTFILES= sipsak-0.9.6-1.tar.gz CATEGORIES= net MASTER_SITES= http://download.berlios.de/sipsak/ diff --git a/net/sipsak/distinfo b/net/sipsak/distinfo index f1958230c104..0649d79449a5 100644 --- a/net/sipsak/distinfo +++ b/net/sipsak/distinfo @@ -1,3 +1,3 @@ -MD5 (sipsak-0.8.11.tar.gz) = 6ec31fe34412028050be304ae728c371 -SHA256 (sipsak-0.8.11.tar.gz) = 56457353a1d443e7284055d166c8a4e7bb4f93b4f45ae2ecce62c5528e32d165 -SIZE (sipsak-0.8.11.tar.gz) = 133219 +MD5 (sipsak-0.9.6-1.tar.gz) = c4eb8e282902e75f4f040f09ea9d99d5 +SHA256 (sipsak-0.9.6-1.tar.gz) = 5064c56d482a080b6a4aea71821b78c21b59d44f6d1aa14c27429441917911a9 +SIZE (sipsak-0.9.6-1.tar.gz) = 158776 diff --git a/net/sipsak/files/patch-helper.c b/net/sipsak/files/patch-helper.c deleted file mode 100644 index ef847bf4f05e..000000000000 --- a/net/sipsak/files/patch-helper.c +++ /dev/null @@ -1,11 +0,0 @@ ---- helper.c.orig Tue Oct 26 15:49:48 2004 -+++ helper.c Tue Oct 26 15:53:43 2004 -@@ -23,6 +23,8 @@ - #include <sys/utsname.h> - #include <string.h> - #include <ctype.h> -+#include <sys/types.h> -+#include <netinet/in.h> - #include <arpa/inet.h> - - #include "helper.h" diff --git a/net/sipsak/files/patch-sipsak.c b/net/sipsak/files/patch-sipsak.c deleted file mode 100644 index 9190b37e0731..000000000000 --- a/net/sipsak/files/patch-sipsak.c +++ /dev/null @@ -1,31 +0,0 @@ ---- sipsak.c.orig Fri Oct 8 20:07:14 2004 -+++ sipsak.c Tue Oct 26 15:55:19 2004 -@@ -207,6 +207,9 @@ - char buff[BUFSIZE]; - int length, c, i, j; - char *delim, *delim2; -+ pid_t pid; -+ struct timespec ts; -+ int upp; - #ifdef HAVE_GETOPT_LONG - int option_index = 0; - static struct option l_opts[] = { -@@ -269,9 +272,6 @@ - memset(ack, 0, BUFSIZE); - memset(fqdn, 0, FQDN_SIZE); - memset(messusern, 0, FQDN_SIZE); -- pid_t pid; -- struct timespec ts; -- int upp; - - if (argc==1) print_help(); - -@@ -354,7 +354,7 @@ - flood=1; - break; - case 'f': -- if strncmp(optarg, "-", 1) { -+ if (strncmp(optarg, "-", 1)) { - /* file is opened in binary mode so that the cr-lf is - preserved */ - pf = fopen(optarg, "rb"); diff --git a/net/sipsak/files/patch-sipsak.h b/net/sipsak/files/patch-sipsak.h deleted file mode 100644 index 79b1ec189ad0..000000000000 --- a/net/sipsak/files/patch-sipsak.h +++ /dev/null @@ -1,10 +0,0 @@ ---- sipsak.h.orig Fri Oct 8 19:30:52 2004 -+++ sipsak.h Tue Oct 26 15:49:07 2004 -@@ -19,6 +19,7 @@ - #ifndef SIPSAK_H - #define SIPSAK_H - -+#include <sys/types.h> - #include <regex.h> - - #if HAVE_CONFIG_H |