diff options
author | lioux <lioux@FreeBSD.org> | 2007-04-26 18:43:02 +0800 |
---|---|---|
committer | lioux <lioux@FreeBSD.org> | 2007-04-26 18:43:02 +0800 |
commit | 5b0da7ca9d60db96cb4b10d7a6024f240c0ce71c (patch) | |
tree | 86e19948a718a9b5e0597a1cf2c6b12ffc156853 /chinese | |
parent | 1f201522d3b3abd2c8602779041a506a75927d1d (diff) | |
download | freebsd-ports-gnome-5b0da7ca9d60db96cb4b10d7a6024f240c0ce71c.tar.gz freebsd-ports-gnome-5b0da7ca9d60db96cb4b10d7a6024f240c0ce71c.tar.zst freebsd-ports-gnome-5b0da7ca9d60db96cb4b10d7a6024f240c0ce71c.zip |
chinese/mldonkey-core has been obsoleted by net-p2p/mldonkey version 2.8.5
Diffstat (limited to 'chinese')
-rw-r--r-- | chinese/Makefile | 1 | ||||
-rw-r--r-- | chinese/mldonkey-core/Makefile | 32 | ||||
-rw-r--r-- | chinese/mldonkey-core/files/patch-driverControlers.ml | 27 | ||||
-rw-r--r-- | chinese/mldonkey-core/files/wrapper-prefix | 6 |
4 files changed, 0 insertions, 66 deletions
diff --git a/chinese/Makefile b/chinese/Makefile index 60892b7723f0..7da58dac2d02 100644 --- a/chinese/Makefile +++ b/chinese/Makefile @@ -70,7 +70,6 @@ SUBDIR += lunar SUBDIR += mingunittf SUBDIR += miniChinput - SUBDIR += mldonkey-core SUBDIR += moefonts-cid SUBDIR += moettf SUBDIR += mplayer-fonts diff --git a/chinese/mldonkey-core/Makefile b/chinese/mldonkey-core/Makefile deleted file mode 100644 index d60a62b1c375..000000000000 --- a/chinese/mldonkey-core/Makefile +++ /dev/null @@ -1,32 +0,0 @@ -# New ports collection makefile for: zh-tw-mldonkey -# Date created: Wed Mar 10 19:36:06 CST 2004 -# Whom: Hung-Te Lin -# <piaip@csie.ntu.edu.tw> -# -# $FreeBSD$ -# -# Only core (HTML/telnet) is affected. GUI has no problem with Chinese. - -PORTNAME= mldonkey-core -CATEGORIES= chinese - -MAINTAINER= ports@FreeBSD.org -COMMENT= Client 'core' for MLDonkey with Traditional Chinese (Big5) support - -WITHOUT_GUI= yes -MASTERDIR= ${.CURDIR}/../../net-p2p/mldonkey -EXTRA_PATCHES= ${.CURDIR}/files/patch-driverControlers.ml - -WRAPPERPREFIX= ${.CURDIR}/files/wrapper-prefix -WRAPPER= ${WRKDIR}/wrapper.sh - -# build our own wrapper script -post-patch-script: - @${MV} -f ${WRAPPER} ${WRAPPER}.orig - @${CAT} ${WRAPPERPREFIX} ${WRAPPER}.orig > ${WRAPPER} - -.include "${MASTERDIR}/Makefile" - -# I know this will lead portlint to fail, -# but we have to do so. -PKGNAMEPREFIX:= ${PKGNAMEPREFIX}tw- diff --git a/chinese/mldonkey-core/files/patch-driverControlers.ml b/chinese/mldonkey-core/files/patch-driverControlers.ml deleted file mode 100644 index f113df98783b..000000000000 --- a/chinese/mldonkey-core/files/patch-driverControlers.ml +++ /dev/null @@ -1,27 +0,0 @@ ---- src/daemon/driver/driverControlers.ml.orig Thu Aug 19 15:56:53 2004 -+++ src/daemon/driver/driverControlers.ml Thu Jun 30 19:25:24 2005 -@@ -319,6 +319,7 @@ - } - - -+let iac_will_8bit = "\255\253\000" - let iac_will_naws = "\255\253\031" - - let user_reader o telnet sock nread = -@@ -348,7 +349,7 @@ - - let i = int_of_char c in - telnet.telnet_iac <- false; -- let is_normal_char = i > 31 && i < 127 in -+ let is_normal_char = i > 31 (*&& i < 127*) in - - if telnet.telnet_wait = 1 then begin - Buffer.add_char telnet.telnet_buffer c; -@@ -469,6 +470,7 @@ - TcpBufferedSocket.set_closer sock user_closed; - user_socks := sock :: !user_socks; - -+ TcpBufferedSocket.write_string sock iac_will_8bit; - TcpBufferedSocket.write_string sock iac_will_naws; - - before_telnet_output o sock; diff --git a/chinese/mldonkey-core/files/wrapper-prefix b/chinese/mldonkey-core/files/wrapper-prefix deleted file mode 100644 index 3c32d53ad7ea..000000000000 --- a/chinese/mldonkey-core/files/wrapper-prefix +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/sh -# Force printing non-quote(escaped) instead of \xxx - -LC_CTYPE=en_US.ISO8859-1 -export LC_CTYPE - |