From owner-freebsd-ports Mon Jun 16 05:35:33 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id FAA02829 for ports-outgoing; Mon, 16 Jun 1997 05:35:33 -0700 (PDT) Received: from smtp1.ts.kiev.ua (viking.ts.kiev.ua [193.124.229.195]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id FAA02816 for ; Mon, 16 Jun 1997 05:35:24 -0700 (PDT) Received: from aviion.ts.kiev.ua by smtp1.ts.kiev.ua with SMTP id PAA13706; (8.8.3/zah/2.1) Mon, 16 Jun 1997 15:23:49 +0300 (EET DST) Received: from nbki.ipri.kiev.ua by aviion.ts.kiev.ua with ESMTP id NAA12641; (8.6.11/zah/2.1) Mon, 16 Jun 1997 13:17:57 GMT Received: from cki.ipri.kiev.ua by nbki.ipri.kiev.ua with ESMTP id PAA15710; (8.6.9/zah/1.1) Mon, 16 Jun 1997 15:02:32 +0100 Received: from 194.44.146.14 (mac.ipri.kiev.ua [194.44.146.14]) by cki.ipri.kiev.ua (8.7.6/8.7.3) with SMTP id OAA03478; Mon, 16 Jun 1997 14:58:06 +0300 (EET DST) Message-ID: <33A51C95.6E66@cki.ipri.kiev.ua> Date: Mon, 16 Jun 1997 13:59:26 +0300 From: Ruslan Shevchenko Reply-To: rssh@cki.ipri.kiev.ua Organization: IPRI X-Mailer: Mozilla 3.01Gold (Macintosh; I; 68K) MIME-Version: 1.0 To: "Brian N. Handy" CC: ports@FreeBSD.ORG Subject: Re: PLIST question References: Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Brian N. Handy wrote: > > Hi all, > > I've got a new program I want to make a port of (MuPAD), and my first > impression of it is that it's like emacs -- it creates almost exactly 3 > zillion files in a nice directory tree. > > Is there an easy way to make an accurate PLIST of all this? Anyone have > an incantation that will help streamline this operation? > 1. Install it with prefix in you directory DIR, than for i in DIR/* DIR/*/* DIR/*/*/*/ ..... do echo $$i done > PLIST.begin is what, that you need. than you can by sample perl script exclude directories, ... and so on. 2. Another way: (tar -cf - DIR/* | tar -tf - ) > PLIST.begin > Thanks, > > Brian