summaryrefslogtreecommitdiff
path: root/net-im/licq
diff options
context:
space:
mode:
Diffstat (limited to 'net-im/licq')
-rw-r--r--net-im/licq/Makefile35
-rw-r--r--net-im/licq/Makefile.inc28
-rw-r--r--net-im/licq/distinfo1
-rw-r--r--net-im/licq/files/patch-ad48
-rw-r--r--net-im/licq/pkg-comment1
-rw-r--r--net-im/licq/pkg-descr5
-rw-r--r--net-im/licq/pkg-message3
-rw-r--r--net-im/licq/pkg-plist107
8 files changed, 0 insertions, 228 deletions
diff --git a/net-im/licq/Makefile b/net-im/licq/Makefile
deleted file mode 100644
index 33173d5ff041..000000000000
--- a/net-im/licq/Makefile
+++ /dev/null
@@ -1,35 +0,0 @@
-# New ports collection makefile for: licq
-# Date created: 2 July 1998
-# Whom: Brian Feldman & Matt Heckaman
-#
-# $FreeBSD$
-#
-
-PORTNAME= base
-PORTVERSION= ${LICQ_VER}
-CATEGORIES= net
-.if defined(WITH_SOCKS)
-PKGNAMESUFFIX= -socks
-.endif
-
-MAINTAINER= green@FreeBSD.org
-
-.if defined(WITH_SOCKS)
-BUILD_DEPENDS= ${LOCALBASE}/lib/libsocks5.a:${PORTSDIR}/net/socks5
-.endif
-
-USE_OPENSSL= yes
-WRKSRC= ${WRKDIR}/${DISTNAME}
-.if defined(WITH_SOCKS)
-CONFIGURE_ARGS+=--enable-socks5
-.endif
-
-post-patch:
- @${PERL5} -pi -e 's|<wait.h>|<sys/wait.h>|g' \
- ${WRKSRC}/src/sighandler.c
-
-post-install:
- @${CAT} ${PKGMESSAGE}
-
-.include "${.CURDIR}/Makefile.inc"
-.include <bsd.port.mk>
diff --git a/net-im/licq/Makefile.inc b/net-im/licq/Makefile.inc
deleted file mode 100644
index 5cea43e6b04c..000000000000
--- a/net-im/licq/Makefile.inc
+++ /dev/null
@@ -1,28 +0,0 @@
-# Common stuff for Licq-based ports
-# $FreeBSD$
-
-PKGNAMEPREFIX= licq-
-LICQ_VER= 1.0.3
-QT_LICQ_VER= ${LICQ_VER}
-RMS_LICQ_VER= 0.22
-CONSOLE_LICQ_VER= 1.0.2
-AUTO_REPLY_LICQ_VER= 1.0.1
-FORWARDER_LICQ_VER= 1.0.1
-.if ${PORTNAME} != "base"
-RUN_DEPENDS+= licq:${PORTSDIR}/net/licq
-.endif
-MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \
- ftp://ftp.wibble.net/pub/licq/srcs/ \
- ftp://licq.darkorb.net/srcs/ \
- ftp://ftp.fanfic.org/pub/licq/srcs/ \
- ftp://ftp.inter-i.uni-mainz.de/pub/licq/srcs/
-MASTER_SITE_SUBDIR= licq
-DISTNAME= ${PKGNAMEPREFIX}${LICQ_VER}
-DISTFILES= ${DISTNAME}.tar.gz
-GNU_CONFIGURE= yes
-MD5_FILE= ${PORTSDIR}/net/licq/distinfo
-# USE_LIBTOOL doesn't work for these ports
-#USE_LIBTOOL= yes
-USE_GMAKE= yes
-USE_NEWGCC= yes
-WRKSRC?= ${WRKDIR}/${DISTNAME}/plugins/${PORTNAME}-${PORTVERSION}
diff --git a/net-im/licq/distinfo b/net-im/licq/distinfo
deleted file mode 100644
index 9e8c439fb449..000000000000
--- a/net-im/licq/distinfo
+++ /dev/null
@@ -1 +0,0 @@
-MD5 (licq-1.0.3.tar.gz) = 894d7c27c0799c8b31dda134fe14b257
diff --git a/net-im/licq/files/patch-ad b/net-im/licq/files/patch-ad
deleted file mode 100644
index 7bf734c85ce6..000000000000
--- a/net-im/licq/files/patch-ad
+++ /dev/null
@@ -1,48 +0,0 @@
---- src/socket.cpp.orig Tue Jul 4 20:51:50 2000
-+++ src/socket.cpp Mon Jul 24 03:32:56 2000
-@@ -12,6 +12,7 @@
- #include <netdb.h>
- #include <fcntl.h>
- #include <unistd.h>
-+#include <osreldate.h>
-
- #ifndef MSG_DONTWAIT
- #define MSG_DONTWAIT 0
-@@ -288,7 +289,12 @@
- bool INetSocket::SetLocalAddress(bool bIp)
- {
- // Setup the local structure
-+
-+#if __FreeBSD_version < 400013
-+ int sizeofSockaddr = sizeof(struct sockaddr_in);
-+#else
- socklen_t sizeofSockaddr = sizeof(struct sockaddr_in);
-+#endif
- if (getsockname(m_nDescriptor, (struct sockaddr *)&m_sLocalAddr, &sizeofSockaddr) < 0)
- {
- m_nErrorType = SOCK_ERROR_errno;
-@@ -372,7 +378,11 @@
- m_sRemoteAddr.sin_family = AF_INET;
-
- // if connect fails then call CloseConnection to clean up before returning
-+#if __FreeBSD_version < 400013
-+ int sizeofSockaddr = sizeof(struct sockaddr);
-+#else
- socklen_t sizeofSockaddr = sizeof(struct sockaddr);
-+#endif
- if (connect(m_nDescriptor, (struct sockaddr *)&m_sRemoteAddr, sizeofSockaddr) < 0)
- {
- // errno has been set
-@@ -504,7 +514,11 @@
- *---------------------------------------------------------------------------*/
- void TCPSocket::RecvConnection(TCPSocket &newSocket)
- {
-- socklen_t sizeofSockaddr = sizeof(struct sockaddr_in);
-+#if __FreeBSD_version < 400013
-+ int sizeofSockaddr = sizeof(struct sockaddr_in);
-+#else
-+ socklen_t sizeofSockaddr = sizeof(struct sockaddr_in);
-+#endif
- newSocket.m_nDescriptor = accept(m_nDescriptor, (struct sockaddr *)&newSocket.m_sRemoteAddr, &sizeofSockaddr);
- newSocket.SetLocalAddress();
- }
diff --git a/net-im/licq/pkg-comment b/net-im/licq/pkg-comment
deleted file mode 100644
index 772acc2f8c54..000000000000
--- a/net-im/licq/pkg-comment
+++ /dev/null
@@ -1 +0,0 @@
-A popular ICQ-compatible plugin-based program
diff --git a/net-im/licq/pkg-descr b/net-im/licq/pkg-descr
deleted file mode 100644
index d0fcb6465b59..000000000000
--- a/net-im/licq/pkg-descr
+++ /dev/null
@@ -1,5 +0,0 @@
-This is an unofficial ICQ clone, written in C++.
-It is in no way endorsed by Mirabilis, and now is the most full-featured
-ICQ-compatible program with the exception of Java ICQ.
-
-WWW: http://www.licq.org/
diff --git a/net-im/licq/pkg-message b/net-im/licq/pkg-message
deleted file mode 100644
index 953f4e101753..000000000000
--- a/net-im/licq/pkg-message
+++ /dev/null
@@ -1,3 +0,0 @@
-In order to actually use licq, at least one plugin port needs to be installed.
-Currently they include: licq-qt-gui, gtk+licq, licq-console, and several others.
-Check the net category to find them.
diff --git a/net-im/licq/pkg-plist b/net-im/licq/pkg-plist
deleted file mode 100644
index ae5ddc74ce01..000000000000
--- a/net-im/licq/pkg-plist
+++ /dev/null
@@ -1,107 +0,0 @@
-bin/licq
-bin/viewurl-lynx.sh
-bin/viewurl-ncftp.sh
-bin/viewurl-netscape.sh
-bin/viewurl-w3m.sh
-include/licq/licq_buffer.h
-include/licq/licq_chat.h
-include/licq/licq_color.h
-include/licq/licq_constants.h
-include/licq/licq_countrycodes.h
-include/licq/licq_events.h
-include/licq/licq_file.h
-include/licq/licq_filetransfer.h
-include/licq/licq_history.h
-include/licq/licq_icq.h
-include/licq/licq_icqd.h
-include/licq/licq_languagecodes.h
-include/licq/licq_log.h
-include/licq/licq_message.h
-include/licq/licq_onevent.h
-include/licq/licq_packets.h
-include/licq/licq_plugin.h
-include/licq/licq_plugind.h
-include/licq/licq_remoteserver.h
-include/licq/licq_sar.h
-include/licq/licq_sighandler.h
-include/licq/licq_socket.h
-include/licq/licq_translate.h
-include/licq/licq_user.h
-include/licq/licq_utility.h
-include/licq/pthread_rdwr.h
-share/licq/sounds/Monty-Python.wav
-share/licq/sounds/fun/Auth.wav
-share/licq/sounds/fun/Chat.wav
-share/licq/sounds/fun/Contact.wav
-share/licq/sounds/fun/File.wav
-share/licq/sounds/fun/Message.wav
-share/licq/sounds/fun/Online.wav
-share/licq/sounds/fun/System.wav
-share/licq/sounds/fun/URL.wav
-share/licq/sounds/icq/Auth.wav
-share/licq/sounds/icq/Chat.wav
-share/licq/sounds/icq/Contact.wav
-share/licq/sounds/icq/File.wav
-share/licq/sounds/icq/Message.wav
-share/licq/sounds/icq/Online.wav
-share/licq/sounds/icq/System.wav
-share/licq/sounds/icq/URL.wav
-share/licq/translations/ASCII
-share/licq/translations/CP437
-share/licq/translations/CP850
-share/licq/translations/DANISH
-share/licq/translations/DEC_MCS
-share/licq/translations/DG_MCS
-share/licq/translations/DUTCH
-share/licq/translations/FINNISH
-share/licq/translations/FRENCH
-share/licq/translations/FRENCH_CANADIAN
-share/licq/translations/GERMAN
-share/licq/translations/HP_MCS
-share/licq/translations/IRV
-share/licq/translations/ITALIAN
-share/licq/translations/JIS
-share/licq/translations/LATIN_2
-share/licq/translations/MACINTOSH
-share/licq/translations/NEXT
-share/licq/translations/NORWEGIAN_1
-share/licq/translations/NORWEGIAN_2
-share/licq/translations/POLISH
-share/licq/translations/POLISH_NOPL
-share/licq/translations/PORTUGUESE
-share/licq/translations/PORTUGUESE_COM
-share/licq/translations/RUSSIAN
-share/licq/translations/RUSSIAN_ALT
-share/licq/translations/RUSSIAN_WIN
-share/licq/translations/SPANISH
-share/licq/translations/SWEDISH
-share/licq/translations/SWEDISH_NAMES
-share/licq/translations/SWEDISH_NAMES_COM
-share/licq/translations/SWISS
-share/licq/translations/UNITED_KINGDOM
-share/licq/translations/UNITED_KINGDOM_COM
-share/licq/utilities/BackOrifice.utility
-share/licq/utilities/finger.utility
-share/licq/utilities/ftp.utility
-share/licq/utilities/gftp.utility
-share/licq/utilities/hostname.utility
-share/licq/utilities/kmail.utility
-share/licq/utilities/mutt.utility
-share/licq/utilities/netscape.utility
-share/licq/utilities/nmap.utility
-share/licq/utilities/pine.utility
-share/licq/utilities/ping.utility
-share/licq/utilities/queso.utility
-share/licq/utilities/speakfreely.utility
-share/licq/utilities/talk.utility
-share/licq/utilities/traceroute.utility
-share/licq/utilities/vnc.utility
-share/licq/utilities/xtraceroute.utility
-@dirrm include/licq
-@dirrm lib/licq
-@dirrm share/licq/sounds/fun
-@dirrm share/licq/sounds/icq
-@dirrm share/licq/sounds
-@dirrm share/licq/translations
-@dirrm share/licq/utilities
-@dirrm share/licq