From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 27 15:20:12 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2C3CD16A400 for ; Tue, 27 Feb 2007 15:20:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 052C613C491 for ; Tue, 27 Feb 2007 15:20:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l1RFKBmJ018587 for ; Tue, 27 Feb 2007 15:20:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l1RFKBJ2018586; Tue, 27 Feb 2007 15:20:11 GMT (envelope-from gnats) Resent-Date: Tue, 27 Feb 2007 15:20:11 GMT Resent-Message-Id: <200702271520.l1RFKBJ2018586@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, Yen-Ming Lee Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F2CAC16A402 for ; Tue, 27 Feb 2007 15:19:40 +0000 (UTC) (envelope-from leeym@utopia.leeym.com) Received: from msr42.hinet.net (msr42.hinet.net [168.95.4.142]) by mx1.freebsd.org (Postfix) with ESMTP id 7961E13C442 for ; Tue, 27 Feb 2007 15:19:39 +0000 (UTC) (envelope-from leeym@utopia.leeym.com) Received: from utopia.leeym.com (utopia.leeym.com [211.21.137.52]) by msr42.hinet.net (8.9.3/8.9.3) with ESMTP id XAA12769; Tue, 27 Feb 2007 23:19:36 +0800 (CST) Received: from localhost (localhost [127.0.0.1]) by utopia.leeym.com (Postfix) with ESMTP id ED14E76FBA3; Tue, 27 Feb 2007 23:19:34 +0800 (CST) Received: from utopia.leeym.com ([127.0.0.1]) by localhost (utopia.leeym.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id gh0MDsq34PqF; Tue, 27 Feb 2007 23:19:27 +0800 (CST) Received: by utopia.leeym.com (Postfix, from userid 1000) id 4157676FA65; Tue, 27 Feb 2007 23:19:27 +0800 (CST) Message-Id: <20070227151927.4157676FA65@utopia.leeym.com> Date: Tue, 27 Feb 2007 23:19:27 +0800 (CST) From: Yen-Ming Lee To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: ache@FreeBSD.org Subject: ports/109604: [PATCH] news/tin: add WITH_TIN_SCREEN knob 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: Tue, 27 Feb 2007 15:20:12 -0000 >Number: 109604 >Category: ports >Synopsis: [PATCH] news/tin: add WITH_TIN_SCREEN knob >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: Tue Feb 27 15:20:11 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Yen-Ming Lee >Release: FreeBSD 6.2-STABLE i386 >Organization: FreeBSD Taiwan >Environment: System: FreeBSD utopia.leeym.com 6.2-STABLE FreeBSD 6.2-STABLE #0: Sun Jan 21 15:11:28 CST 2007 >Description: - add WITH_TIN_SCREEN and allow it to be redefined in slave port (chinese/tin needs it to display correctly) - bump PORTREVISION Port maintainer (ache@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- tin-1.8.3_2.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/news/tin/Makefile,v retrieving revision 1.139 diff -u -u -r1.139 Makefile --- Makefile 12 Feb 2007 18:28:37 -0000 1.139 +++ Makefile 27 Feb 2007 15:17:56 -0000 @@ -7,7 +7,7 @@ PORTNAME= tin PORTVERSION= 1.8.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES+= news ipv6 MASTER_SITES= ftp://ftp.tin.org/pub/news/clients/tin/stable/ \ ftp://ftp.sunet.se/pub/news/readers/tin/stable/ \ @@ -35,6 +35,7 @@ USE_ICONV= yes GNU_CONFIGURE= yes WITH_TIN_EDITOR?= /usr/bin/ee +WITH_TIN_SCREEN?= ncurses # --with-mime-default-charset=US-ASCII needed to build tin in the non-ascii # national environment. @@ -45,7 +46,7 @@ --with-editor=${WITH_TIN_EDITOR} \ --enable-nls \ --with-pcre=yes \ - --with-screen=ncurses \ + --with-screen=${WITH_TIN_SCREEN} \ --enable-break-long-lines \ --with-libiconv-prefix=${LOCALBASE} \ --with-mime-default-charset=US-ASCII \ --- tin-1.8.3_2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: