aboutsummaryrefslogtreecommitdiffstats
path: root/japanese
diff options
context:
space:
mode:
authorbapt <bapt@FreeBSD.org>2012-11-28 17:45:45 +0800
committerbapt <bapt@FreeBSD.org>2012-11-28 17:45:45 +0800
commitb8eaa7ec4ed75c1bfc6b59a517c949d6c8c8ff64 (patch)
treec09859e680140f9fb7a4843cb054b99350fae95c /japanese
parent76a5df22e696ab4e01bfe953e68a824ab1ecbb5d (diff)
downloadfreebsd-ports-gnome-b8eaa7ec4ed75c1bfc6b59a517c949d6c8c8ff64.tar.gz
freebsd-ports-gnome-b8eaa7ec4ed75c1bfc6b59a517c949d6c8c8ff64.tar.zst
freebsd-ports-gnome-b8eaa7ec4ed75c1bfc6b59a517c949d6c8c8ff64.zip
2012-11-27 devel/p5-SPOPS: Depend on the expired p5-Class-Fields
2012-11-26 textproc/lemmatizer: No more public distfiles 2012-11-26 net/relay: No more public distfiles 2012-11-26 x11-clocks/bmp-alarm: No more public distfiles 2012-11-26 net-mgmt/nagios-check_ice: No more public distfiles 2012-11-26 japanese/libicq: No more public distfiles and development ceased 2012-11-26 graphics/tonicpoint-viewer: No more public distfiles 2012-11-26 devel/safestr: No more public distfiles Feature safe: yes
Diffstat (limited to 'japanese')
-rw-r--r--japanese/Makefile1
-rw-r--r--japanese/libicq/Makefile32
-rw-r--r--japanese/libicq/distinfo4
-rw-r--r--japanese/libicq/files/patch-ad50
-rw-r--r--japanese/libicq/pkg-descr6
-rw-r--r--japanese/libicq/pkg-plist5
6 files changed, 0 insertions, 98 deletions
diff --git a/japanese/Makefile b/japanese/Makefile
index 7047a07e8062..8b1c9f85bdcb 100644
--- a/japanese/Makefile
+++ b/japanese/Makefile
@@ -157,7 +157,6 @@
SUBDIR += latex2html
SUBDIR += leafrogue
SUBDIR += less
- SUBDIR += libicq
SUBDIR += libjcode
SUBDIR += libreoffice
SUBDIR += libskk
diff --git a/japanese/libicq/Makefile b/japanese/libicq/Makefile
deleted file mode 100644
index b85f1140bb3b..000000000000
--- a/japanese/libicq/Makefile
+++ /dev/null
@@ -1,32 +0,0 @@
-# Created by: Seiichirou Hiraoka
-# $FreeBSD$
-
-PORTNAME= libicq
-PORTVERSION= 0.33
-PORTREVISION= 1
-CATEGORIES= japanese net
-MASTER_SITES= ${MASTER_SITE_LOCAL} \
- ftp://ftp.korsoft.com/pub/gicq/
-MASTER_SITE_SUBDIR= flathill
-
-DEPRECATED= No more public distfiles and development ceased
-EXPIRATION_DATE= 2012-11-26
-
-PATCH_SITES= ${MASTER_SITE_LOCAL} \
- http://www-nagao.kuee.kyoto-u.ac.jp/member/taku/soft/
-PATCH_SITE_SUBDIR= flathill
-PATCHFILES= ${DISTNAME}ja.patch
-PATCH_DIST_STRIP= -p1
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= Library to add ICQ communication support to your software
-
-USE_GNOME= glib12
-USE_AUTOTOOLS= libtool
-USE_LDCONFIG= 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/japanese/libicq/distinfo b/japanese/libicq/distinfo
deleted file mode 100644
index 7f842d084b0b..000000000000
--- a/japanese/libicq/distinfo
+++ /dev/null
@@ -1,4 +0,0 @@
-SHA256 (libicq-0.33.tar.gz) = 5295bf86a785adf0b70ad5b3416bc73019f177eb5b1a023cd99a52c29e6ed765
-SIZE (libicq-0.33.tar.gz) = 101447
-SHA256 (libicq-0.33ja.patch) = b49286f396b67778cb6728e2aadeb6b60eb236a952e34980bd9792425d8578eb
-SIZE (libicq-0.33ja.patch) = 10484
diff --git a/japanese/libicq/files/patch-ad b/japanese/libicq/files/patch-ad
deleted file mode 100644
index ba3b41a090d2..000000000000
--- a/japanese/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/japanese/libicq/pkg-descr b/japanese/libicq/pkg-descr
deleted file mode 100644
index d2391fb008a4..000000000000
--- a/japanese/libicq/pkg-descr
+++ /dev/null
@@ -1,6 +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.montana.com/gabriel/gicq/
diff --git a/japanese/libicq/pkg-plist b/japanese/libicq/pkg-plist
deleted file mode 100644
index 076bd58e0c3f..000000000000
--- a/japanese/libicq/pkg-plist
+++ /dev/null
@@ -1,5 +0,0 @@
-include/libicq.h
-lib/libicq.a
-lib/libicq.la
-lib/libicq.so
-lib/libicq.so.0