Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 20 Jan 2003 11:29:00 +1100
From:      Edwin Groothuis <edwin@mavetju.org>
To:        Craig Rodrigues <rodrigc@attbi.com>
Cc:        freebsd-ports@freebsd.org
Subject:   Re: Determining the correct pkg-plist
Message-ID:  <20030120002900.GO50581@k7.mavetju>
In-Reply-To: <20030120000651.GA81951@attbi.com>
References:  <20030120000651.GA81951@attbi.com>

next in thread | previous in thread | raw e-mail | index | archive | help
On Sun, Jan 19, 2003 at 07:06:51PM -0500, Craig Rodrigues wrote:
> As a new porter, does anyone have any hints for a general procedure
> for determining the correct pkg-plist?

I run this before each port-install and after each deinstall:

	#!/bin/sh

	if [ $0 = "/usr/local/bin/before" ]; then
		find /usr/local > /tmp/before
		exit
	fi

	find /usr/local | diff /tmp/before -

No output is good :-)

It doesn't work for ports installed in /usr/X11R6, but that's an
easy fix.

Edwin

-- 
Edwin Groothuis      |            Personal website: http://www.mavetju.org
edwin@mavetju.org    |    Weblog: http://www.mavetju.org/weblog/weblog.php 

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




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