diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2005-11-09 08:21:21 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2005-11-09 08:21:21 +0000 |
commit | dc33aa59f5cd032431c2eab21c7ac886941ae806 (patch) | |
tree | dc8c628b8d8e6340ca29ce77bba2bbdb3af77e7a /net/libicq | |
parent | 33eb2763e068a96f0cf922264886163463b0b170 (diff) | |
download | ports-dc33aa59f5cd032431c2eab21c7ac886941ae806.tar.gz ports-dc33aa59f5cd032431c2eab21c7ac886941ae806.zip |
Notes
Diffstat (limited to 'net/libicq')
-rw-r--r-- | net/libicq/Makefile | 27 | ||||
-rw-r--r-- | net/libicq/distinfo | 2 | ||||
-rw-r--r-- | net/libicq/files/patch-ad | 50 | ||||
-rw-r--r-- | net/libicq/pkg-descr | 9 | ||||
-rw-r--r-- | net/libicq/pkg-plist | 4 |
5 files changed, 0 insertions, 92 deletions
diff --git a/net/libicq/Makefile b/net/libicq/Makefile deleted file mode 100644 index c089a700b808..000000000000 --- a/net/libicq/Makefile +++ /dev/null @@ -1,27 +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= http://download.sourceforge.net/libicq/ \ - ${MASTER_SITE_LOCAL} -MASTER_SITE_SUBDIR= flathill - -MAINTAINER= ports@FreeBSD.org -COMMENT= Library to add ICQ communication support to your software - -USE_GNOME= glib12 -USE_LIBTOOL_VER=15 -INSTALLS_SHLIB= yes -USE_REINPLACE= yes - -post-patch: - @${REINPLACE_CMD} -e 's|$${CONFIG_SHELL-/bin/sh} $$ac_aux_dir|$$ac_aux_dir|' \ - ${WRKSRC}/configure - -.include <bsd.port.mk> diff --git a/net/libicq/distinfo b/net/libicq/distinfo deleted file mode 100644 index 786223bcf50e..000000000000 --- a/net/libicq/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (libicq-0.33.tar.gz) = 3717d4b08dfdd9af9a57f5d17d04529d -SIZE (libicq-0.33.tar.gz) = 101447 diff --git a/net/libicq/files/patch-ad b/net/libicq/files/patch-ad deleted file mode 100644 index ba3b41a090d2..000000000000 --- a/net/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/libicq/pkg-descr b/net/libicq/pkg-descr deleted file mode 100644 index f04a973bd190..000000000000 --- a/net/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://www.micq.org/pub/micq/ - -WWW: http://gicq.sourceforge.net/ - -- Seiichirou Hiraoka -flathill@FreeBSD.ORG diff --git a/net/libicq/pkg-plist b/net/libicq/pkg-plist deleted file mode 100644 index c5b2f94bc6bd..000000000000 --- a/net/libicq/pkg-plist +++ /dev/null @@ -1,4 +0,0 @@ -include/libicq.h -lib/libicq.a -lib/libicq.so -lib/libicq.so.0.3 |