From owner-cvs-all@FreeBSD.ORG Wed Oct 1 06:45:47 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 66A5A16A4B3; Wed, 1 Oct 2003 06:45:47 -0700 (PDT) Received: from utopia.leeym.com (utopia.leeym.com [61.218.64.93]) by mx1.FreeBSD.org (Postfix) with ESMTP id C402743FEC; Wed, 1 Oct 2003 06:45:45 -0700 (PDT) (envelope-from leeym@utopia.leeym.com) Received: from localhost (localhost [127.0.0.1]) by utopia.leeym.com (Postfix) with ESMTP id 0806F3E9CD4; Wed, 1 Oct 2003 21:45:43 +0800 (CST) Received: from utopia.leeym.com ([127.0.0.1]) by localhost (utopia.leeym.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 15366-01; Wed, 1 Oct 2003 21:45:33 +0800 (CST) Received: by utopia.leeym.com (Postfix, from userid 1000) id B44273E9CD2; Wed, 1 Oct 2003 21:45:32 +0800 (CST) Date: Wed, 1 Oct 2003 21:45:32 +0800 From: Yen-Ming Lee To: Mario Sergio Fujikawa Ferreira Message-ID: <20031001134532.GA10776@utopia.leeym.com> References: <200309301435.h8UEZp5x088982@repoman.freebsd.org> <20030930144238.GC23217@heechee.tobez.org> <20031001000318.GA74625@utopia.leeym.com> <20031001021847.5002.qmail@exxodus.fedaykin.here> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="mxv5cy4qt+RJ9ypb" Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20031001021847.5002.qmail@exxodus.fedaykin.here> User-Agent: Mutt/1.5.4i X-Virus-Scanned: by amavisd-new at leeym.com cc: cvs-ports@FreeBSD.org cc: ports-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Anton Berezin Subject: Re: cvs commit: ports/net/ipfm pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Oct 2003 13:45:47 -0000 --mxv5cy4qt+RJ9ypb Content-Type: text/plain; charset=big5 Content-Disposition: inline Content-Transfer-Encoding: 8bit On Tue, Sep 30, 2003 at 11:18:47PM -0300, Mario Sergio Fujikawa Ferreira wrote: > On Wed, Oct 01, 2003 at 08:02:56AM +0800, Yen-Ming Lee wrote: > If a file IS installed by the port and not removed, it is > flagged in bento. Wherever that file lies. > > However, IF the logs are only created when the port is > ran, bento will not complain. Nonetheless, users should be warned > that port leaves files behind when it is uninstalled. The logs are created when the port is ran. > Please, add something in pkg-message or a '@unexec echo ...' > line in pkg-plist. Specially since this seems a change in the port > past behavior. POLA change. Could you please take a look on the attached patch ? -- Yen-Ming Lee [§õ«Û©ú] KeyID: 0x5EB52E51 : www.leeym.com : Taipei, Taiwan --mxv5cy4qt+RJ9ypb Content-Type: text/plain; charset=big5 Content-Disposition: attachment; filename="ipfm.diff" Index: pkg-plist =================================================================== RCS file: /home/pcvs/ports/net/ipfm/pkg-plist,v retrieving revision 1.4 diff -u -r1.4 pkg-plist --- pkg-plist 30 Sep 2003 14:35:50 -0000 1.4 +++ pkg-plist 1 Oct 2003 13:38:50 -0000 @@ -1,3 +1,4 @@ sbin/ipfm etc/ipfm.conf @exec mkdir -p /var/log/ipfm +@unexec rmdir /var/log/ipfm 2>/dev/null || echo "The logs will be left in /var/log/ipfm after the port is deinstalled." --mxv5cy4qt+RJ9ypb--