summaryrefslogtreecommitdiff
path: root/net-im/libicq
diff options
context:
space:
mode:
Diffstat (limited to 'net-im/libicq')
-rw-r--r--net-im/libicq/Makefile21
-rw-r--r--net-im/libicq/distinfo1
-rw-r--r--net-im/libicq/files/patch-ad50
-rw-r--r--net-im/libicq/pkg-comment1
-rw-r--r--net-im/libicq/pkg-descr9
-rw-r--r--net-im/libicq/pkg-plist4
6 files changed, 0 insertions, 86 deletions
diff --git a/net-im/libicq/Makefile b/net-im/libicq/Makefile
deleted file mode 100644
index f365c3616b6e..000000000000
--- a/net-im/libicq/Makefile
+++ /dev/null
@@ -1,21 +0,0 @@
-# New ports collection makefile for: libicq
-# Date Created: 31 Oct 1998
-# Whom: Seiichirou Hiraoka
-#
-# $FreeBSD$
-#
-
-PORTNAME= libicq
-PORTVERSION= 0.33
-CATEGORIES= net
-MASTER_SITES= ${MASTER_SITE_LOCAL} \
- ftp://ftp.korsoft.com/pub/gicq/
-MASTER_SITE_SUBDIR= flathill
-
-MAINTAINER= flathill@FreeBSD.org
-
-USE_GLIB= yes
-USE_LIBTOOL= yes
-INSTALLS_SHLIB= yes
-
-.include <bsd.port.mk>
diff --git a/net-im/libicq/distinfo b/net-im/libicq/distinfo
deleted file mode 100644
index 82ae50cb5c3e..000000000000
--- a/net-im/libicq/distinfo
+++ /dev/null
@@ -1 +0,0 @@
-MD5 (libicq-0.33.tar.gz) = 3717d4b08dfdd9af9a57f5d17d04529d
diff --git a/net-im/libicq/files/patch-ad b/net-im/libicq/files/patch-ad
deleted file mode 100644
index ba3b41a090d2..000000000000
--- a/net-im/libicq/files/patch-ad
+++ /dev/null
@@ -1,50 +0,0 @@
---- src/send.c.orig Thu Nov 11 17:16:26 1999
-+++ src/send.c Thu Nov 11 17:18:50 1999
-@@ -139,6 +139,17 @@
- fprintf(stderr, "\nSocket creation failed.");
- exit(1);
- }
-+
-+#ifdef IP_PORTRANGE
-+ {
-+ int i=IP_PORTRANGE_HIGH;
-+ if (setsockopt(sok, IPPROTO_IP, IP_PORTRANGE, &i, sizeof(i))<0)
-+ {
-+ fprintf(stderr, "\nSocket range selection failed.");
-+ exit(1);
-+ }
-+ }
-+#endif
-
- if(Verbose & ICQ_VERB_INFO)
- printf("\nSocket created. Attempting to connect..." );
-@@ -170,6 +181,12 @@
- bzero(&(sin.sin_zero), 8);
-
- tcp_sok = socket(AF_INET, SOCK_STREAM, 0);
-+#if IP_PORTRANGE
-+ {
-+ int i=IP_PORTRANGE_HIGH;
-+ setsockopt(tcp_sok, IPPROTO_IP, IP_PORTRANGE, &i, sizeof(i));
-+ }
-+#endif
- setsockopt(tcp_sok, SOL_SOCKET, SO_REUSEADDR, &retval, 4);
- set_nonblock(tcp_sok);
- retval = bind(tcp_sok, (struct sockaddr*)&sin, sizeof(sin));
---- src/tcp.c.orig Thu Nov 11 17:20:01 1999
-+++ src/tcp.c Thu Nov 11 17:20:02 1999
-@@ -608,6 +608,14 @@
- sock = socket(AF_INET, SOCK_STREAM, 0);
- if(sock == -1) return -1;
-
-+#ifdef IP_PORTRANGE
-+ {
-+ int i=IP_PORTRANGE_HIGH;
-+ if (setsockopt(sock, IPPROTO_IP, IP_PORTRANGE, &i, sizeof(i))<0)
-+ return -1;
-+ }
-+#endif
-+
- set_nonblock(sock);
-
- if((bind(sock, (struct sockaddr*)&local, sizeof(struct sockaddr))) == -1)
diff --git a/net-im/libicq/pkg-comment b/net-im/libicq/pkg-comment
deleted file mode 100644
index 0a6c793f6854..000000000000
--- a/net-im/libicq/pkg-comment
+++ /dev/null
@@ -1 +0,0 @@
-Library to add ICQ communication support to your software
diff --git a/net-im/libicq/pkg-descr b/net-im/libicq/pkg-descr
deleted file mode 100644
index 6908c21ca0e3..000000000000
--- a/net-im/libicq/pkg-descr
+++ /dev/null
@@ -1,9 +0,0 @@
-libicq is based on micq and is intended to make it easy to add ICQ
-communication support to your software.
-
-micq is available at ftp://micq.ml.org/pub/micq/
-
-WWW: http://www.korsoft.com/gicq/
-
-- Seiichirou Hiraoka
-flathill@FreeBSD.ORG
diff --git a/net-im/libicq/pkg-plist b/net-im/libicq/pkg-plist
deleted file mode 100644
index c5b2f94bc6bd..000000000000
--- a/net-im/libicq/pkg-plist
+++ /dev/null
@@ -1,4 +0,0 @@
-include/libicq.h
-lib/libicq.a
-lib/libicq.so
-lib/libicq.so.0.3