From owner-freebsd-ports@FreeBSD.ORG Mon Jan 10 14:01:47 2011 Return-Path: Delivered-To: freebsd-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4ADDE1065693 for ; Mon, 10 Jan 2011 14:01:47 +0000 (UTC) (envelope-from mexas@bristol.ac.uk) Received: from dirg.bris.ac.uk (dirg.bris.ac.uk [137.222.10.102]) by mx1.freebsd.org (Postfix) with ESMTP id 098778FC2D for ; Mon, 10 Jan 2011 14:01:46 +0000 (UTC) Received: from ncsc.bris.ac.uk ([137.222.10.41]) by dirg.bris.ac.uk with esmtp (Exim 4.72) (envelope-from ) id 1PcIJd-00044C-RY; Mon, 10 Jan 2011 14:01:46 +0000 Received: from mech-cluster241.men.bris.ac.uk ([137.222.187.241]) by ncsc.bris.ac.uk with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.72) (envelope-from ) id 1PcIJd-0006wS-Mv; Mon, 10 Jan 2011 14:01:45 +0000 Received: from mech-cluster241.men.bris.ac.uk (localhost [127.0.0.1]) by mech-cluster241.men.bris.ac.uk (8.14.4/8.14.4) with ESMTP id p0AE1jJD095672; Mon, 10 Jan 2011 14:01:45 GMT (envelope-from mexas@bristol.ac.uk) Received: (from mexas@localhost) by mech-cluster241.men.bris.ac.uk (8.14.4/8.14.4/Submit) id p0AE1jim095671; Mon, 10 Jan 2011 14:01:45 GMT (envelope-from mexas@bristol.ac.uk) X-Authentication-Warning: mech-cluster241.men.bris.ac.uk: mexas set sender to mexas@bristol.ac.uk using -f Date: Mon, 10 Jan 2011 14:01:45 +0000 From: Anton Shterenlikht To: hrs@FreeBSD.org, freebsd-ports@FreeBSD.org Message-ID: <20110110140145.GA94753@mech-cluster241.men.bris.ac.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.3i Cc: Subject: incomplete pkg-plist for print/teTeX-texmf X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jan 2011 14:01:47 -0000 I think there are five ls-R files, installed by teTeX-texmf, which are not included in pkg-plist. % cat ls-R-which.sh #!/bin/sh for file in `find /usr/local/share/texmf* -name "ls-R"` do echo $file pkg_info -W $file done % ./ls-R-which.sh /usr/local/share/texmf/ls-R /usr/local/share/texmf-config/ls-R /usr/local/share/texmf-dist/ls-R /usr/local/share/texmf-dist/ls-R was installed by package teTeX-texmf-3.0_6 /usr/local/share/texmf-local/ls-R /usr/local/share/texmf-var/ls-R % This is consistent with only texmf-dist/ls-R appearing in theteTex-texmf/pkg-plist: % grep ls-R /usr/ports/print/teTeX-texmf/pkg-plist %%TEXMFDISTDIR%%/ls-R @unexec rm -f %D/%%TEXMFDISTDIR%%/ls-R @exec echo '%% ls-R -- filename database for kpathsea; do not change this line.' > %D/%%TEXMFDISTDIR%%/ls-R; @exec echo './:' >> %D/%%TEXMFDISTDIR%%/ls-R @exec echo 'ls-R' >> %D/%%TEXMFDISTDIR%%/ls-R @exec echo '' >> %D/%%TEXMFDISTDIR%%/ls-R % All five files are in the Makefile: % grep ^TEXMF /usr/ports/print/teTeX-texmf/Makefile TEXMFDIR= share/texmf TEXMF_LSR= ${PREFIX}/${TEXMFDIR}/ls-R TEXMFLOCALDIR= share/texmf-local TEXMFLOCAL_LSR= ${LOCALBASE}/${TEXMFLOCALDIR}/ls-R TEXMFVARDIR= share/texmf-var TEXMFVAR_LSR= ${LOCALBASE}/${TEXMFVARDIR}/ls-R TEXMFDISTDIR= share/texmf-dist TEXMFDIST_LSR= ${LOCALBASE}/${TEXMFDISTDIR}/ls-R TEXMFCONFIGDIR= share/texmf-config TEXMFCONFIG_LSR=${LOCALBASE}/${TEXMFCONFIGDIR}/ls-R % so it does appear to be an omission. Can somebody please confirm if my analysis is correct. If it is, I'll submit a PR with a patch. -- Anton Shterenlikht Room 2.6, Queen's Building Mech Eng Dept Bristol University University Walk, Bristol BS8 1TR, UK Tel: +44 (0)117 331 5944 Fax: +44 (0)117 929 4423