From owner-freebsd-x11@FreeBSD.ORG Sun Feb 1 05:25:50 2009 Return-Path: Delivered-To: x11@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F317D10656D6 for ; Sun, 1 Feb 2009 05:25:50 +0000 (UTC) (envelope-from rafan@svm.csie.ntu.edu.tw) Received: from svm.csie.ntu.edu.tw (svm.csie.ntu.edu.tw [140.112.90.75]) by mx1.freebsd.org (Postfix) with ESMTP id A31778FC16 for ; Sun, 1 Feb 2009 05:25:50 +0000 (UTC) (envelope-from rafan@svm.csie.ntu.edu.tw) Received: from svm.csie.ntu.edu.tw (localhost [127.0.0.1]) by svm.csie.ntu.edu.tw (8.14.3/8.14.3) with ESMTP id n115DF9j095175; Sun, 1 Feb 2009 13:13:15 +0800 (CST) (envelope-from rafan@svm.csie.ntu.edu.tw) Received: (from rafan@localhost) by svm.csie.ntu.edu.tw (8.14.3/8.14.3/Submit) id n115DFwU019603; Sun, 1 Feb 2009 13:13:15 +0800 (CST) (envelope-from rafan) Date: Sun, 1 Feb 2009 13:13:15 +0800 (CST) Message-Id: <200902010513.n115DFwU019603@svm.csie.ntu.edu.tw> To: FreeBSD-gnats-submit@freebsd.org From: Rong-En Fan X-send-pr-version: 3.113 X-GNATS-Notify: Cc: x11@freebsd.org Subject: [PATCH] x11/luit: luit can't find locale.alias, fix it X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Feb 2009 05:25:51 -0000 >Submitter-Id: current-users >Originator: Rong-En Fan >Organization: NTU CSIE >Confidential: no >Synopsis: [PATCH] x11/luit: luit can't find locale.alias, fix it >Severity: non-critical >Priority: low >Category: ports >Class: change-request >Release: FreeBSD >Environment: >Description: It seems necessary after X.org 7.4 upgrade to add --with-localealiasfile again to luit. Otherwise, it can not find locale.alias correctly. Therefore, breaks itself. Port maintainer (x11@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- luit-1.0.3_1.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/x11/luit/Makefile,v retrieving revision 1.3 diff -u -u -r1.3 Makefile --- Makefile 23 Jan 2009 16:28:15 -0000 1.3 +++ Makefile 1 Feb 2009 05:12:16 -0000 @@ -7,6 +7,7 @@ PORTNAME= luit PORTVERSION= 1.0.3 +PORTREVISION= 1 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org @@ -15,6 +16,8 @@ XORG_CAT= app USE_XORG= x11 fontenc +CONFIGURE_ARGS= --with-localealiasfile=${LOCALBASE}/lib/X11/locale/locale.alias + PLIST_FILES= bin/luit MAN1= luit.1 --- luit-1.0.3_1.patch ends here ---