From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Oct 27 14:30:03 2007 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3B1A716A420 for ; Sat, 27 Oct 2007 14:30:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1960B13C48D for ; Sat, 27 Oct 2007 14:30:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.1/8.14.1) with ESMTP id l9REU2fv006797 for ; Sat, 27 Oct 2007 14:30:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.1/8.14.1/Submit) id l9REU2tg006794; Sat, 27 Oct 2007 14:30:02 GMT (envelope-from gnats) Resent-Date: Sat, 27 Oct 2007 14:30:02 GMT Resent-Message-Id: <200710271430.l9REU2tg006794@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KIMURA Yasuhiro Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7916E16A41A for ; Sat, 27 Oct 2007 14:28:06 +0000 (UTC) (envelope-from yasu@home.utahime.org) Received: from utahime.as.wakwak.ne.jp (utahime.as.wakwak.ne.jp [61.205.238.40]) by mx1.freebsd.org (Postfix) with ESMTP id 457E913C494 for ; Sat, 27 Oct 2007 14:28:06 +0000 (UTC) (envelope-from yasu@home.utahime.org) Received: from eastasia.home.utahime.org (eastasia.home.utahime.org [192.168.174.1]) by utahime.as.wakwak.ne.jp (Postfix) with ESMTP id 4FA8817025; Sat, 27 Oct 2007 23:10:35 +0900 (JST) Received: from eastasia.home.utahime.org (localhost.home.utahime.org [127.0.0.1]) by localhost-backdoor.home.utahime.org (Postfix) with ESMTP id 26AB576; Sat, 27 Oct 2007 23:10:35 +0900 (JST) Received: by eastasia.home.utahime.org (Postfix, from userid 1000) id 078EE71; Sat, 27 Oct 2007 23:10:35 +0900 (JST) Message-Id: <20071027141035.078EE71@eastasia.home.utahime.org> Date: Sat, 27 Oct 2007 23:10:35 +0900 (JST) From: KIMURA Yasuhiro To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/117561: [PATCH] converters/libiconv: Re-enable EXTRA_PATCHES option X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 27 Oct 2007 14:30:03 -0000 >Number: 117561 >Category: ports >Synopsis: [PATCH] converters/libiconv: Re-enable EXTRA_PATCHES option >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Oct 27 14:30:02 UTC 2007 >Closed-Date: >Last-Modified: >Originator: KIMURA Yasuhiro >Release: FreeBSD 6.2-RELEASE-p8 i386 >Organization: >Environment: System: FreeBSD xxxx 6.2-RELEASE-p8 FreeBSD 6.2-RELEASE-p8 #0: Thu Oct 4 12:23:50 JST 2007 xxxx i386 >Description: Re-enable EXTRA_PATCHES option. >How-To-Repeat: >Fix: --- patch-libiconv begins here --- Index: Makefile =================================================================== RCS file: /usr1/freebsd/cvsroot/ports/converters/libiconv/Makefile,v retrieving revision 1.42 diff -u -r1.42 Makefile --- Makefile 24 Oct 2007 23:35:01 -0000 1.42 +++ Makefile 27 Oct 2007 13:58:00 -0000 @@ -28,8 +28,8 @@ MAN1= iconv.1 MAN3= iconv.3 iconv_open.3 iconv_close.3 iconvctl.3 -OPTIONS= EXTRA_ENCODINGS "Include extra character sets" on -# EXTRA_PATCHES "Apply patches to fix CP932 add EUCJP-MS" off +OPTIONS= EXTRA_ENCODINGS "Include extra character sets" on \ + EXTRA_PATCHES "Apply patches to fix CP932 add EUCJP-MS" off .ifdef USE_ICONV .error USE_ICONV is defined as an environment variable, or in the arguments \ @@ -42,13 +42,13 @@ CONFIGURE_ARGS+= --enable-extra-encodings .endif -#.if defined(WITH_EXTRA_PATCHES) -#PATCH_SITES+= http://www2d.biglobe.ne.jp/~msyk/software/libiconv/ -#PATCH_SITES+= ${MASTER_SITE_LOCAL} -#PATCH_SITE_SUBDIR= nork -#PATCHFILES+= ${DISTNAME}-cp932.patch.gz -#PATCH_DIST_STRIP+= -p1 -#.endif +.if defined(WITH_EXTRA_PATCHES) +PATCH_SITES+= http://www2d.biglobe.ne.jp/~msyk/software/libiconv/ +PATCH_SITES+= ${MASTER_SITE_LOCAL} +PATCH_SITE_SUBDIR= nork +PATCHFILES+= ${DISTNAME}-cp932.patch.gz +PATCH_DIST_STRIP+= -p1 +.endif post-patch: @${REINPLACE_CMD} -e 's:ei_ksc5601:ei_euc_kr:g' ${WRKSRC}/lib/aliases.h Index: distinfo =================================================================== RCS file: /usr1/freebsd/cvsroot/ports/converters/libiconv/distinfo,v retrieving revision 1.13 diff -u -r1.13 distinfo --- distinfo 24 Oct 2007 23:35:01 -0000 1.13 +++ distinfo 27 Oct 2007 13:56:24 -0000 @@ -1,3 +1,6 @@ MD5 (libiconv-1.11.tar.gz) = b77a17e4a5a817100ad4b2613935055e SHA256 (libiconv-1.11.tar.gz) = fbf5b9a63ea6e3abebfabc04506f0e18a2860071031e34ea4ad4f450b8c43d4b SIZE (libiconv-1.11.tar.gz) = 4430930 +MD5 (libiconv-1.11-cp932.patch.gz) = 1d6c7711b6ec76c9c42230d8e097baa0 +SHA256 (libiconv-1.11-cp932.patch.gz) = 48ed20ab2bd59d9af9fa6d4328b363849bf0e155b70bdbe137dc8973341b65d1 +SIZE (libiconv-1.11-cp932.patch.gz) = 112830 --- patch-libiconv ends here --- >Release-Note: >Audit-Trail: >Unformatted: