From owner-cvs-all@FreeBSD.ORG Fri Jun 15 10:36:44 2007 Return-Path: X-Original-To: cvs-all@freebsd.org Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6A25D16A46E for ; Fri, 15 Jun 2007 10:36:44 +0000 (UTC) (envelope-from infofarmer@gmail.com) Received: from wa-out-1112.google.com (wa-out-1112.google.com [209.85.146.180]) by mx1.freebsd.org (Postfix) with ESMTP id 3D4A613C465 for ; Fri, 15 Jun 2007 10:36:44 +0000 (UTC) (envelope-from infofarmer@gmail.com) Received: by wa-out-1112.google.com with SMTP id j37so1108183waf for ; Fri, 15 Jun 2007 03:36:44 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:reply-to:sender:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references:x-google-sender-auth; b=UQ9GC+P5CBgBppuFaR1d//nQg/rDO82pjvRdyOlMlkSJZ+3ZsAb1JAeDSLZNbLAzkJ/yrAjZq6o7CioZmLyU6oQcNBjtr/6DnINSxzGIFLHh+VYlZ5HRJGtE7DL8kNkkgmNI6VchHLsmm3v4uN+C/IxRWKOckV6Ah2+QaoYlG/Y= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:reply-to:sender:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references:x-google-sender-auth; b=YEqUmpZqAbB15gEtn/qWvAXbpfFvNcvg5nDajXZo+nzj7ZheEx2hHJwJhltoEmcZensNknYnb2InAmI6xthJ19x9D7wwQhdDHE71ZpEfDiwfMv5xvPv2xntiBwraPxJVhiw8gIUGPGaDGAFwbktcpEqxZ7QRyxLOpZ5gsxK+EeM= Received: by 10.115.92.2 with SMTP id u2mr2821401wal.1181903803958; Fri, 15 Jun 2007 03:36:43 -0700 (PDT) Received: by 10.114.194.13 with HTTP; Fri, 15 Jun 2007 03:36:43 -0700 (PDT) Message-ID: Date: Fri, 15 Jun 2007 14:36:43 +0400 From: "Andrew Pantyukhin" Sender: infofarmer@gmail.com To: "Kirill Ponomarew" , cvs-all@freebsd.org, cvs-ports@freebsd.org, ports-committers@freebsd.org, "Pav Lucistnik" In-Reply-To: <20070615085652.C875D16A4C6@hub.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <200706150856.l5F8umV9047292@repoman.freebsd.org> <20070615085652.C875D16A4C6@hub.freebsd.org> X-Google-Sender-Auth: a7812f40f72b3a0f Cc: Subject: Re: cvs commit: ports/mail/exim pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: infofarmer@FreeBSD.org List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Jun 2007 10:36:44 -0000 On 6/15/07, Kirill Ponomarew wrote: > krion 2007-06-15 08:56:47 UTC > > FreeBSD ports repository > > Modified files: > mail/exim pkg-plist > Log: > Fix plist. > > Submitted by: pav > > Revision Changes Path > 1.47 +3 -3 ports/mail/exim/pkg-plist > _______________________________________________ > cvs-all@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/cvs-all > To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" > > > Index: ports/mail/exim/pkg-plist > diff -u ports/mail/exim/pkg-plist:1.46 ports/mail/exim/pkg-plist:1.47 > --- ports/mail/exim/pkg-plist:1.46 Mon May 28 20:52:13 2007 > +++ ports/mail/exim/pkg-plist Fri Jun 15 08:56:47 2007 > @@ -51,5 +51,5 @@ > %%SA_EXIM%%@unexec if cmp -s %D/etc/exim/sa-exim.conf %D/etc/exim/sa-exim.conf.default; then rm -f %D/etc/exim/sa-exim.conf; fi > %%SA_EXIM%%etc/exim/sa-exim.conf.default > %%SA_EXIM%%@exec [ -f %B/sa-exim.conf ] || cp %B/%f %B/sa-exim.conf > -@dirrmtry %B > -@dirrmtry %%LOGDIR%% > +@unexec rmdir %B 2> /dev/null || true > +@unexec rmdir %%LOGDIR%% 2> /dev/null || true As miwi noticed, this probably warrants a portrevision bump. Imagine the next version exim having a different LOGDIR, for example - after upgrading the user will be left with the old one forever. OTOH, I'm all for greener computing. An extra empty directory vs. having to recompile exim on thousands of computers is not a clear-cut case.