mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-28 05:29:48 +00:00
ICQ: finish removal
Reported by: jbeich
This commit is contained in:
parent
fc62596bf4
commit
e7261047a7
@ -1,2 +0,0 @@
|
||||
SHA256 (climm-0.7.1.tgz) = 6212ada46947f0572fb6734b920a2cfd91b6a632cbd044d87476791a318af052
|
||||
SIZE (climm-0.7.1.tgz) = 1296303
|
@ -1,25 +0,0 @@
|
||||
--- src/io/io_openssl.c.orig 2010-03-20 14:13:15 UTC
|
||||
+++ src/io/io_openssl.c
|
||||
@@ -96,10 +96,22 @@ static DH *get_dh512()
|
||||
DH *dh;
|
||||
|
||||
if ((dh=DH_new()) == NULL) return(NULL);
|
||||
+#if OPENSSL_VERSION_NUMBER >= 0x10100005L
|
||||
+ BIGNUM *p, *g;
|
||||
+
|
||||
+ p=BN_bin2bn(dh512_p,sizeof(dh512_p),NULL);
|
||||
+ g=BN_bin2bn(dh512_g,sizeof(dh512_g),NULL);
|
||||
+ if (p == NULL || g == NULL) {
|
||||
+ BN_free(p); BN_free(g);
|
||||
+ DH_free(dh); return(NULL);
|
||||
+ } else
|
||||
+ DH_set0_pqg(dh, p, NULL, g);
|
||||
+#else
|
||||
dh->p=BN_bin2bn(dh512_p,sizeof(dh512_p),NULL);
|
||||
dh->g=BN_bin2bn(dh512_g,sizeof(dh512_g),NULL);
|
||||
if ((dh->p == NULL) || (dh->g == NULL))
|
||||
{ DH_free(dh); return(NULL); }
|
||||
+#endif
|
||||
return(dh);
|
||||
}
|
||||
/* END AUTOGENERATED */
|
@ -1,2 +0,0 @@
|
||||
A text-based implementation of ICQ (formerly known as micq).
|
||||
Support for jabber (xmmp) and other IM protocols was added later.
|
@ -1,37 +0,0 @@
|
||||
bin/climm
|
||||
%%PORTDOCS%%%%DOCSDIR%%/README.i18n
|
||||
%%PORTDOCS%%%%DOCSDIR%%/README.logformat
|
||||
%%PORTDOCS%%%%DOCSDIR%%/icq091.txt
|
||||
%%PORTDOCS%%%%DOCSDIR%%/icqv7.txt
|
||||
%%PORTDOCS%%%%DOCSDIR%%/climm.xpm
|
||||
%%PORTDOCS%%%%DOCSDIR%%/climm@16x16.png
|
||||
%%PORTDOCS%%%%DOCSDIR%%/climm@24x24.png
|
||||
%%PORTDOCS%%%%DOCSDIR%%/climm@32x32.png
|
||||
%%PORTDOCS%%%%DOCSDIR%%/climm@48x48.png
|
||||
%%DATADIR%%/C.i18n
|
||||
%%DATADIR%%/bg.i18n
|
||||
%%DATADIR%%/de.i18n
|
||||
%%DATADIR%%/de_CH.i18n
|
||||
%%DATADIR%%/cs.i18n
|
||||
%%DATADIR%%/en.i18n
|
||||
%%DATADIR%%/es.i18n
|
||||
%%DATADIR%%/fi.i18n
|
||||
%%DATADIR%%/fr.i18n
|
||||
%%DATADIR%%/hr.i18n
|
||||
%%DATADIR%%/id.i18n
|
||||
%%DATADIR%%/it.i18n
|
||||
%%DATADIR%%/ja.i18n
|
||||
%%DATADIR%%/nl.i18n
|
||||
%%DATADIR%%/pl.i18n
|
||||
%%DATADIR%%/pt.i18n
|
||||
%%DATADIR%%/ro.i18n
|
||||
%%DATADIR%%/ru.i18n
|
||||
%%DATADIR%%/se.i18n
|
||||
%%DATADIR%%/sk.i18n
|
||||
%%DATADIR%%/sr.i18n
|
||||
%%DATADIR%%/uk.i18n
|
||||
%%DATADIR%%/yu.i18n
|
||||
%%DATADIR%%/zh_CN.i18n
|
||||
share/man/man1/climm.1.gz
|
||||
share/man/man5/climmrc.5.gz
|
||||
share/man/man7/climmcmds.7.gz
|
@ -1,2 +0,0 @@
|
||||
SHA256 (Crypt-OICQ-1.1.tgz) = 1c94795df1acbcb27e25a94f40e994f0f28eb925c664d5290c89cfff44ed7c58
|
||||
SIZE (Crypt-OICQ-1.1.tgz) = 5649
|
@ -1,2 +0,0 @@
|
||||
This module implements the cipher used by OICQ instant messaging
|
||||
protocol, used by Tencent Technology Limited, China.
|
@ -1,2 +0,0 @@
|
||||
%%SITE_PERL%%/Crypt/OICQ.pm
|
||||
%%PERL5_MAN3%%/Crypt::OICQ.3.gz
|
Loading…
Reference in New Issue
Block a user