From owner-cvs-all Wed Oct 7 17:52:00 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA09229 for cvs-all-outgoing; Wed, 7 Oct 1998 17:52:00 -0700 (PDT) (envelope-from owner-cvs-all) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA09206; Wed, 7 Oct 1998 17:51:54 -0700 (PDT) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca3-63.ix.netcom.com [209.109.233.63]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id RAA19588; Wed, 7 Oct 1998 17:51:48 -0700 (PDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id RAA11812; Wed, 7 Oct 1998 17:51:45 -0700 (PDT) Date: Wed, 7 Oct 1998 17:51:45 -0700 (PDT) Message-Id: <199810080051.RAA11812@silvia.hip.berkeley.edu> To: rnordier@FreeBSD.ORG CC: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG In-reply-to: <199810072230.PAA16529@freefall.freebsd.org> (message from Robert Nordier on Wed, 7 Oct 1998 15:30:08 -0700 (PDT)) Subject: Re: cvs commit: ports/lang/TenDRA/scripts configure From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-cvs-all@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk * Add K-aout to tcc aout environment for consistency. Thanks, it installs fine on an a.out system now. Two things I noticed: (1) The ports uses stuff installed in /usr/local/lib/TenDRA to recompile some stuff during installation. (I noticed this because it died due to those stuff having wrong permissions on my system because of the previous error.) It is generally a good thing to keep ports self-contained since stuff like incomplete installations and incompatibilities between releases could cause people to trip up in the future. (2) The port leaves a whole bunch of empty directories behind after deinstallation. A simple find /usr/local/lib/TenDRA -type d | sort -r | sed -e 's/^/@dirrm /' will probably give you what you need to append to pkg/PLIST. :) Satoshi