From owner-freebsd-ports Wed Feb 9 9:50:33 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by builder.freebsd.org (Postfix) with ESMTP id 907B73FD1 for ; Wed, 9 Feb 2000 09:50:28 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA81675; Wed, 9 Feb 2000 09:50:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from serio.al.rim.or.jp (serio.al.rim.or.jp [202.247.191.123]) by builder.freebsd.org (Postfix) with ESMTP id 949733F96 for ; Wed, 9 Feb 2000 09:48:23 -0800 (PST) Received: from mail1.rim.or.jp by serio.al.rim.or.jp (8.9.3/3.7W/HMX-12) id CAA21843 for ; Thu, 10 Feb 2000 02:43:04 +0900 (JST) Received: from tg.rim.or.jp (skai0809.ppp.infoweb.ne.jp [202.248.14.217]) by mail1.rim.or.jp (3.7W/) id CAA25568 for ; Thu, 10 Feb 2000 02:43:03 +0900 (JST) Message-Id: <20000210.024425.74715636.inagaki@tg.rim.or.jp> Date: Thu, 10 Feb 2000 02:44:25 +0900 (JST) From: Kentaro Inagaki / =?iso-2022-jp?B?GyRCMHAzQBsoQiAbJEI3ckJATzobKEI=?= To: freebsd-gnats-submit@freebsd.org Subject: ports/16616: Fix: A problem on search of installed file Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 16616 >Category: ports >Synopsis: Fix: A problem on search of installed file >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Feb 9 09:50:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Inagaki Kentaro & >Release: FreeBSD 4.0-CURRENT i386 >Organization: >Environment: >Description: The problem that pTeX is not found in with the file which this port installs. This is the cause of not updating cache file used for search. This patch is changed to update cache file. Submitted by: Issei Suzuki Thanks!! >How-To-Repeat: >Fix: diff -urN makejvf.old/Makefile makejvf/Makefile --- makejvf.old/Makefile Fri Dec 24 20:15:05 1999 +++ makejvf/Makefile Sat Feb 5 04:33:25 2000 @@ -38,6 +38,8 @@ ${TAR} -C ${WRKDIR}/ -zxf ${DISTDIR}/${DIST_SUBDIR}/$$i${EXTRACT_SUFX} ; \ done +.include + post-install: @${MKDIR} ${MAP_DIR} @for i in ${PTEX_TFM} ; do \ @@ -70,4 +72,8 @@ done .endif -.include +.if exists(${PREFIX}/bin/mktexlsr) + @${PREFIX}/bin/mktexlsr +.endif + +.include diff -urN makejvf.old/pkg/PLIST makejvf/pkg/PLIST --- makejvf.old/pkg/PLIST Fri Dec 24 20:15:06 1999 +++ makejvf/pkg/PLIST Sat Feb 5 04:35:34 2000 @@ -136,3 +136,5 @@ @dirrm share/texmf/fonts/tfm/makejvf @dirrm share/texmf/fonts/vf/makejvf @dirrm share/doc/makejvf-fkr +@exec [ -x %D/bin/mktexlsr ] && %D/bin/mktexlsr +@unexec [ -x %D/bin/mktexlsr ] && %D/bin/mktexlsr >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message