From gaoj@cpsc.ucalgary.ca  Mon Feb 13 05:22:42 2006
Return-Path: <gaoj@cpsc.ucalgary.ca>
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 0D18D16A420
	for <freebsd-gnats-submit@freebsd.org>; Mon, 13 Feb 2006 05:22:41 +0000 (GMT)
	(envelope-from gaoj@cpsc.ucalgary.ca)
Received: from ensc.cpsc.ucalgary.ca (ensc.cpsc.ucalgary.ca [136.159.2.4])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 2FEFF43D48
	for <freebsd-gnats-submit@freebsd.org>; Mon, 13 Feb 2006 05:22:41 +0000 (GMT)
	(envelope-from gaoj@cpsc.ucalgary.ca)
Received: from imgw1.cpsc.ucalgary.ca (imgw1 [136.159.5.9])
	by ensc.cpsc.ucalgary.ca (8.12.11/8.12.11) with ESMTP id k1D5KPBw017438
	for <freebsd-gnats-submit@freebsd.org>; Sun, 12 Feb 2006 22:20:25 -0700
Received: from localhost (localhost [127.0.0.1])
	by imgw1.cpsc.ucalgary.ca (8.13.4/8.13.3) with ESMTP id k1D5KOhX005721;
	Sun, 12 Feb 2006 22:20:24 -0700
Received: from imgw1.cpsc.ucalgary.ca ([127.0.0.1])
 by localhost (imgw1 [127.0.0.1]) (amavisd-new, port 10024) with ESMTP
 id 05358-03; Sun, 12 Feb 2006 22:20:24 -0700 (MST)
Received: from localhost.cpsc.ucalgary.ca (sana-sa [136.159.7.231])
	by imgw1.cpsc.ucalgary.ca (8.13.4/8.13.3) with ESMTP id k1D5BL7d005627;
	Sun, 12 Feb 2006 22:11:21 -0700
Received: from localhost.cpsc.ucalgary.ca (localhost [127.0.0.1])
	by localhost.cpsc.ucalgary.ca (8.13.4/8.13.4) with ESMTP id k1D5BLBO034067;
	Sun, 12 Feb 2006 22:11:21 -0700 (MST)
	(envelope-from gaoj@localhost.cpsc.ucalgary.ca)
Received: (from gaoj@localhost)
	by localhost.cpsc.ucalgary.ca (8.13.4/8.13.4/Submit) id k1D5BKn7034066;
	Sun, 12 Feb 2006 22:11:20 -0700 (MST)
	(envelope-from gaoj)
Message-Id: <200602130511.k1D5BKn7034066@localhost.cpsc.ucalgary.ca>
Date: Sun, 12 Feb 2006 22:11:20 -0700 (MST)
From: Jie Gao <gaoj@cpsc.ucalgary.ca>
Reply-To: Jie Gao <gaoj@cpsc.ucalgary.ca>
To: FreeBSD-gnats-submit@freebsd.org
Cc: gaoj@cpsc.ucalgary.ca
Subject: [maintainer] textproc/scim-table-imengine: Fix plist
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         93262
>Category:       ports
>Synopsis:       [maintainer] textproc/scim-table-imengine: Fix plist
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    lawrance
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Mon Feb 13 05:30:05 GMT 2006
>Closed-Date:    Tue Feb 14 12:23:44 GMT 2006
>Last-Modified:  Tue Feb 14 12:23:44 GMT 2006
>Originator:     Jie Gao
>Release:        FreeBSD 6.1-PRERELEASE i386
>Organization:
>Environment:
System: FreeBSD aibsd 6.1-PRERELEASE FreeBSD 6.1-PRERELEASE #1: Sun Feb 5 22:42:06 MST 2006 gaoj@aibsd:/usr/obj/usr/src/sys/AIBSD i386


	
>Description:
	
There is a man file that needs to be added to plist
>How-To-Repeat:
	
cd /usr/ports/textproc/scim-table-imengine
make install
make deinstall

And /usr/X11R6/man/man1/scim-make-table.1 is left there.
>Fix:

	
Apply the patch below

--- patch-textproc-scim-table-imengine.diff begins here ---
Index: textproc/scim-table-imengine/Makefile
===================================================================
RCS file: /home/grads/gaoj/repository/ports/textproc/scim-table-imengine/Makefile,v
retrieving revision 1.5
diff -u -r1.5 Makefile
--- textproc/scim-table-imengine/Makefile	13 Feb 2006 04:45:20 -0000	1.5
+++ textproc/scim-table-imengine/Makefile	13 Feb 2006 05:01:55 -0000
@@ -7,6 +7,7 @@
 
 PORTNAME=	scim-table-imengine
 PORTVERSION=	0.5.6
+PORTREVISION=	1
 CATEGORIES=	textproc
 MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
 MASTER_SITE_SUBDIR=scim
Index: textproc/scim-table-imengine/pkg-plist
===================================================================
RCS file: /home/grads/gaoj/repository/ports/textproc/scim-table-imengine/pkg-plist,v
retrieving revision 1.3
diff -u -r1.3 pkg-plist
--- textproc/scim-table-imengine/pkg-plist	13 Feb 2006 04:45:20 -0000	1.3
+++ textproc/scim-table-imengine/pkg-plist	13 Feb 2006 05:01:55 -0000
@@ -1,6 +1,7 @@
 bin/scim-make-table
 lib/scim-1.0/IMEngine/table.so
 lib/scim-1.0/SetupUI/table-imengine-setup.so
+man/man1/scim-make-table.1
 share/scim/icons/table.png
 share/locale/zh_CN/LC_MESSAGES/scim-tables.mo
 share/locale/zh_TW/LC_MESSAGES/scim-tables.mo
--- patch-textproc-scim-table-imengine.diff ends here ---


>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->lawrance 
Responsible-Changed-By: lawrance 
Responsible-Changed-When: Tue Feb 14 08:54:03 UTC 2006 
Responsible-Changed-Why:  
Grab 

http://www.freebsd.org/cgi/query-pr.cgi?pr=93262 
State-Changed-From-To: open->closed 
State-Changed-By: lawrance 
State-Changed-When: Tue Feb 14 12:22:57 UTC 2006 
State-Changed-Why:  
Committed, thanks!  No need for PORTREVISION bump. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=93262 
>Unformatted:
