Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 20 Jun 1997 16:45:47 -0700
From:      Scott Blachowicz <scott@apple.statsci.com>
To:        asami@cs.berkeley.edu (Satoshi Asami)
Cc:        jesse@eva.cs.Uni-Magdeburg.DE, ports@FreeBSD.ORG
Subject:   Re: PLIST question 
Message-ID:  <m0wfDNF-0006uMC@apple.statsci.com>
In-Reply-To: Your message of "Mon, 16 Jun 1997 14:15:46 -0700." <199706162115.OAA09585@vader.cs.berkeley.edu> 
References:  <199706162115.OAA09585@vader.cs.berkeley.edu> 

next in thread | previous in thread | raw e-mail | index | archive | help
asami@cs.berkeley.edu (Satoshi Asami) wrote:

>  * How about 'find . -type f -print > PLIST'?
> 
> Don't forget to sort it.  This is what I recommend:
> 
> cd /usr/local
> find foo | sort > /portsdir/pkg/PLIST
> edit PLIST, move all the directories down, sort them backwards and add 
>   @dirrm in front of them

Or...

    (find foo \! -type d | sort;
     find foo -type d | sort -r | sed 's/^/@dirrm /') > /portsdir/pkg/PLIST

I hate doing things manually...:-))

Scott Blachowicz  Ph: 206/283-8802x240   Mathsoft (Data Analysis Products Div)
                                         1700 Westlake Ave N #500
scott@statsci.com                        Seattle, WA USA   98109
Scott.Blachowicz@seaslug.org



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?m0wfDNF-0006uMC>