From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Nov 7 09:30:11 2010 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 04E9F106567A for ; Sun, 7 Nov 2010 09:30:11 +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 B9F738FC12 for ; Sun, 7 Nov 2010 09:30:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id oA79UADZ032309 for ; Sun, 7 Nov 2010 09:30:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id oA79UAtS032293; Sun, 7 Nov 2010 09:30:10 GMT (envelope-from gnats) Resent-Date: Sun, 7 Nov 2010 09:30:10 GMT Resent-Message-Id: <201011070930.oA79UAtS032293@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, KOMATSU Shinichiro Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 80527106564A for ; Sun, 7 Nov 2010 09:23:14 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 62CF38FC14 for ; Sun, 7 Nov 2010 09:23:14 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id oA79NDTc098305 for ; Sun, 7 Nov 2010 09:23:13 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id oA79NDAN098304; Sun, 7 Nov 2010 09:23:13 GMT (envelope-from nobody) Message-Id: <201011070923.oA79NDAN098304@www.freebsd.org> Date: Sun, 7 Nov 2010 09:23:13 GMT From: KOMATSU Shinichiro To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/152006: New Port: archivers/unzip: Slave port of unzip with WITH_ICONV=yes set 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: Sun, 07 Nov 2010 09:30:11 -0000 >Number: 152006 >Category: ports >Synopsis: New Port: archivers/unzip: Slave port of unzip with WITH_ICONV=yes set >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Nov 07 09:30:10 UTC 2010 >Closed-Date: >Last-Modified: >Originator: KOMATSU Shinichiro >Release: FreeBSD 7.3-RELEASE-p2 amd64 >Organization: >Environment: FreeBSD 7.3-RELEASE-p2 amd64 >Description: It is desirable for non-latin1 users that unzip package is built with WITH_ICONV=yes, so I made a slave port. >How-To-Repeat: >Fix: Patch attached with submission follows: diff --exclude=CVS -urN ports/archivers/unzip/Makefile ports.new/archivers/unzip/Makefile --- ports/archivers/unzip/Makefile 2010-09-20 15:14:24.000000000 +0900 +++ ports.new/archivers/unzip/Makefile 2010-11-07 13:07:22.000000000 +0900 @@ -26,6 +26,8 @@ PORTDOCS= README WHERE MAN1= ${UNZIP_NAME}.1 funzip.1 unzipsfx.1 zipgrep.1 zipinfo.1 +CONFLICTS= unzip-iconv-[0-9]* ko-unzip-[0-9]* ru-unzip-[0-9]* zh-unzip-[0-9]* + LOCAL_UNZIP= ${CFLAGS} -DACORN_FTYPE_NFS -DWILD_STOP_AT_DIR \ -DUNICODE_SUPPORT -DUTF8_MAYBE_NATIVE -D_MBCS \ -DLARGE_FILE_SUPPORT diff --exclude=CVS -urN ports/archivers/unzip-iconv/Makefile ports.new/archivers/unzip-iconv/Makefile --- ports/archivers/unzip-iconv/Makefile 1970-01-01 09:00:00.000000000 +0900 +++ ports.new/archivers/unzip-iconv/Makefile 2010-11-07 12:58:19.000000000 +0900 @@ -0,0 +1,19 @@ +# New ports collection makefile for: unzip-iconv +# Date created: Nov 7 2010 +# Whom: KOMATSU Shinichiro +# +# $FreeBSD$ +# + +PKGNAMESUFFIX= -iconv + +MAINTAINER= koma2@lovepeers.org +COMMENT= Unzip with iconv patches + +MASTERDIR= ${.CURDIR}/../unzip + +WITH_ICONV= yes + +CONFLICTS= unzip-[0-9]* ko-unzip-[0-9]* ru-unzip-[0-9]* zh-unzip-[0-9]* + +.include "${MASTERDIR}/Makefile" diff --exclude=CVS -urN ports/chinese/unzip/Makefile ports.new/chinese/unzip/Makefile --- ports/chinese/unzip/Makefile 2005-07-26 06:58:09.000000000 +0900 +++ ports.new/chinese/unzip/Makefile 2010-11-07 13:00:56.000000000 +0900 @@ -9,7 +9,7 @@ MAINTAINER= ports@FreeBSD.org -CONFLICTS= unzip-[0-9]* ko-unzip-[0-9]* ru-unzip-[0-9]* +CONFLICTS= unzip-[0-9]* unzip-iconv-[0-9]* ko-unzip-[0-9]* ru-unzip-[0-9]* MASTERDIR= ${.CURDIR}/../../archivers/unzip diff --exclude=CVS -urN ports/korean/unzip/Makefile ports.new/korean/unzip/Makefile --- ports/korean/unzip/Makefile 2009-11-07 06:16:02.000000000 +0900 +++ ports.new/korean/unzip/Makefile 2010-11-07 13:00:38.000000000 +0900 @@ -9,7 +9,7 @@ MAINTAINER= ports@FreeBSD.org COMMENT= ZIP archive extractor with localized patches -CONFLICTS= unzip-[0-9]* ru-unzip-[0-9]* zh-unzip-[0-9]* +CONFLICTS= unzip-[0-9]* unzip-iconv-[0-9]* ru-unzip-[0-9]* zh-unzip-[0-9]* EXTRA_PATCHES= ${.CURDIR}/files/patch-* MASTERDIR= ${.CURDIR}/../../archivers/unzip diff --exclude=CVS -urN ports/russian/unzip/Makefile ports.new/russian/unzip/Makefile --- ports/russian/unzip/Makefile 2009-12-08 21:23:41.000000000 +0900 +++ ports.new/russian/unzip/Makefile 2010-11-07 13:01:13.000000000 +0900 @@ -10,7 +10,7 @@ MAINTAINER= den@FreeBSD.org COMMENT= Unzip with CP866 and KOI8-R support -CONFLICTS= unzip-[0-9]* zh-unzip-[0-9]* ko-unzip-[0-9]* +CONFLICTS= unzip-[0-9]* unzip-iconv-[0-9]* zh-unzip-[0-9]* ko-unzip-[0-9]* EXTRA_PATCHES= ${.CURDIR}/files/patch-ebcdic.h >Release-Note: >Audit-Trail: >Unformatted: