summaryrefslogtreecommitdiff
path: root/net-p2p/libfreenet
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2001-09-16 01:02:46 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2001-09-16 01:02:46 +0000
commitdb3dca6dbd32fe6ea3d51bc037e6f9cdc66c343b (patch)
tree29d590ca0bc9e66d81bc3218a0684c2daf9d4a68 /net-p2p/libfreenet
parentFix compilation problems. (diff)
This commit was manufactured by cvs2svn to create tag 'RELEASE_4_4_0'.release/4.4.0
Notes
Notes: svn path=/head/; revision=47856 svn path=/tags/RELEASE_4_4_0/; revision=47857; tag=release/4.4.0
Diffstat (limited to 'net-p2p/libfreenet')
-rw-r--r--net-p2p/libfreenet/Makefile24
-rw-r--r--net-p2p/libfreenet/distinfo1
-rw-r--r--net-p2p/libfreenet/files/patch-client_util.c19
-rw-r--r--net-p2p/libfreenet/files/patch-protocol.c19
-rw-r--r--net-p2p/libfreenet/files/patch-testclient.c10
-rw-r--r--net-p2p/libfreenet/files/patch-testserver.c10
-rw-r--r--net-p2p/libfreenet/pkg-comment1
-rw-r--r--net-p2p/libfreenet/pkg-descr6
-rw-r--r--net-p2p/libfreenet/pkg-plist19
9 files changed, 0 insertions, 109 deletions
diff --git a/net-p2p/libfreenet/Makefile b/net-p2p/libfreenet/Makefile
deleted file mode 100644
index dfc18b179490..000000000000
--- a/net-p2p/libfreenet/Makefile
+++ /dev/null
@@ -1,24 +0,0 @@
-# ex:ts=8
-# New ports collection makefile for: libfreenet
-# Date created: Mar 31, 2001
-# Whom: Ying-Chieh Liao <ijliao@FreeBSD.org>
-#
-# $FreeBSD$
-#
-
-PORTNAME= libfreenet
-PORTVERSION= 0.4.0
-CATEGORIES= net
-MASTER_SITES= http://thalassocracy.org/libfreenet/
-
-MAINTAINER= ports@FreeBSD.org
-
-USE_OPENSSL= yes
-USE_LIBTOOL= yes
-CONFIGURE_ARGS= --includedir=${PREFIX}/include/libfreenet
-
-USE_GMAKE= yes
-
-INSTALLS_SHLIB= yes
-
-.include <bsd.port.mk>
diff --git a/net-p2p/libfreenet/distinfo b/net-p2p/libfreenet/distinfo
deleted file mode 100644
index 6946435a70da..000000000000
--- a/net-p2p/libfreenet/distinfo
+++ /dev/null
@@ -1 +0,0 @@
-MD5 (libfreenet-0.4.0.tar.gz) = 9fa1231689528a46821a7728802469f1
diff --git a/net-p2p/libfreenet/files/patch-client_util.c b/net-p2p/libfreenet/files/patch-client_util.c
deleted file mode 100644
index d6a08a6655b4..000000000000
--- a/net-p2p/libfreenet/files/patch-client_util.c
+++ /dev/null
@@ -1,19 +0,0 @@
---- client_util.c.orig Wed Mar 28 19:27:38 2001
-+++ client_util.c Sat Mar 31 15:07:59 2001
-@@ -60,13 +60,14 @@
-
- int timediff ()
- {
-+ struct tm *tmp;
- long t = time(NULL);
-
- /* We are calling localtime here for its side-effect of setting
- the timezone global appropriately. I have no proof that this
- even happens on cygwin. Please, just let me die. */
-- localtime(&t);
-- return (FN_TIMEZONE / 3600);
-+ tmp = localtime(&t);
-+ return (tmp->tm_gmtoff / 3600);
- }
-
-
diff --git a/net-p2p/libfreenet/files/patch-protocol.c b/net-p2p/libfreenet/files/patch-protocol.c
deleted file mode 100644
index 59fed2289318..000000000000
--- a/net-p2p/libfreenet/files/patch-protocol.c
+++ /dev/null
@@ -1,19 +0,0 @@
---- protocol.c.orig Thu Mar 22 13:27:34 2001
-+++ protocol.c Sat Mar 31 15:14:32 2001
-@@ -17,6 +17,8 @@
- */
- #include <stdio.h>
- #include <malloc.h>
-+#include <sys/types.h>
-+#include <netinet/in.h>
- #include <sys/socket.h>
- #include <netdb.h>
- #include <string.h>
-@@ -24,7 +26,6 @@
- #include <errno.h>
- #include <fcntl.h>
- #include <unistd.h>
--#include <sys/types.h>
- #include <ctype.h>
- #include <time.h>
-
diff --git a/net-p2p/libfreenet/files/patch-testclient.c b/net-p2p/libfreenet/files/patch-testclient.c
deleted file mode 100644
index 08a080bc7ce6..000000000000
--- a/net-p2p/libfreenet/files/patch-testclient.c
+++ /dev/null
@@ -1,10 +0,0 @@
---- testclient.c.orig Sat Mar 31 15:17:15 2001
-+++ testclient.c Sat Mar 31 15:17:24 2001
-@@ -20,7 +20,6 @@
- #include <string.h>
- #include <time.h>
- #include <unistd.h>
--#include <getopt.h>
-
- #include "protocol.h"
- #include "client.h"
diff --git a/net-p2p/libfreenet/files/patch-testserver.c b/net-p2p/libfreenet/files/patch-testserver.c
deleted file mode 100644
index 876e5a6733f1..000000000000
--- a/net-p2p/libfreenet/files/patch-testserver.c
+++ /dev/null
@@ -1,10 +0,0 @@
---- testserver.c.orig Tue May 22 05:04:28 2001
-+++ testserver.c Sun May 27 18:47:01 2001
-@@ -19,6 +19,7 @@
- #include <string.h>
- #include <unistd.h>
- #include <stdlib.h>
-+#include <netinet/in.h>
- #include <sys/socket.h>
-
-
diff --git a/net-p2p/libfreenet/pkg-comment b/net-p2p/libfreenet/pkg-comment
deleted file mode 100644
index a400869f7afa..000000000000
--- a/net-p2p/libfreenet/pkg-comment
+++ /dev/null
@@ -1 +0,0 @@
-Freenet library written in C
diff --git a/net-p2p/libfreenet/pkg-descr b/net-p2p/libfreenet/pkg-descr
deleted file mode 100644
index 0c647d2ec4f1..000000000000
--- a/net-p2p/libfreenet/pkg-descr
+++ /dev/null
@@ -1,6 +0,0 @@
-libfreenet is a Freenet library written in C. Right now it supports basic
-client functionality, as well as a lower-level API for sending and
-receiving messages over a Freenet connection. It's currently very much
-hackerware -- it might explode at any moment, so approach it with caution.
-
-WWW: http://thalassocracy.org/libfreenet/
diff --git a/net-p2p/libfreenet/pkg-plist b/net-p2p/libfreenet/pkg-plist
deleted file mode 100644
index a46a92fa1bd4..000000000000
--- a/net-p2p/libfreenet/pkg-plist
+++ /dev/null
@@ -1,19 +0,0 @@
-bin/testclient
-bin/testserver
-include/libfreenet/acconfig.h
-include/libfreenet/base64.h
-include/libfreenet/client.h
-include/libfreenet/client_util.h
-include/libfreenet/config.h
-include/libfreenet/endtoend.h
-include/libfreenet/protocol.h
-include/libfreenet/rijndael-alg-fst.h
-include/libfreenet/rijndael-api-fst.h
-include/libfreenet/stream.h
-include/libfreenet/twofish.h
-include/libfreenet/uri.h
-include/libfreenet/util.h
-@dirrm include/libfreenet
-lib/libfreenet.a
-lib/libfreenet.so
-lib/libfreenet.so.0