From owner-svn-ports-head@freebsd.org Tue Jun 30 10:39:33 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5B90198E4B9; Tue, 30 Jun 2015 10:39:33 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 418DB18E6; Tue, 30 Jun 2015 10:39:33 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t5UAdX0J092574; Tue, 30 Jun 2015 10:39:33 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t5UAdV3Y092561; Tue, 30 Jun 2015 10:39:31 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201506301039.t5UAdV3Y092561@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Tue, 30 Jun 2015 10:39:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r390950 - in head: devel/courier-unicode mail/maildrop X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Jun 2015 10:39:33 -0000 Author: madpilot Date: Tue Jun 30 10:39:31 2015 New Revision: 390950 URL: https://svnweb.freebsd.org/changeset/ports/390950 Log: - Update mail/courier-unicode to 1.3 - Update mail/maildrop to 2.8.3 - Add make.conf variable for maildrop to force it choosing a non standard mailbox directory [1] Reported by: Jim Trigg [1] Modified: head/devel/courier-unicode/Makefile head/devel/courier-unicode/distinfo head/devel/courier-unicode/pkg-plist head/mail/maildrop/Makefile head/mail/maildrop/distinfo Modified: head/devel/courier-unicode/Makefile ============================================================================== --- head/devel/courier-unicode/Makefile Tue Jun 30 07:48:52 2015 (r390949) +++ head/devel/courier-unicode/Makefile Tue Jun 30 10:39:31 2015 (r390950) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= courier-unicode -PORTVERSION= 1.2 +PORTVERSION= 1.3 CATEGORIES= devel mail MASTER_SITES= SF/courier/${PORTNAME}/${PORTVERSION} Modified: head/devel/courier-unicode/distinfo ============================================================================== --- head/devel/courier-unicode/distinfo Tue Jun 30 07:48:52 2015 (r390949) +++ head/devel/courier-unicode/distinfo Tue Jun 30 10:39:31 2015 (r390950) @@ -1,2 +1,2 @@ -SHA256 (courier-unicode-1.2.tar.bz2) = 55017f49975dfece84f061e33f38361ff7d7e52ceda98346c9462bf036d9724f -SIZE (courier-unicode-1.2.tar.bz2) = 390014 +SHA256 (courier-unicode-1.3.tar.bz2) = 8067d2fec621af1a463b690b325c700920f98e1271052354abfd4c8ca82f7e68 +SIZE (courier-unicode-1.3.tar.bz2) = 394011 Modified: head/devel/courier-unicode/pkg-plist ============================================================================== --- head/devel/courier-unicode/pkg-plist Tue Jun 30 07:48:52 2015 (r390949) +++ head/devel/courier-unicode/pkg-plist Tue Jun 30 10:39:31 2015 (r390950) @@ -2,7 +2,7 @@ include/courier-unicode.h lib/libcourier-unicode.a lib/libcourier-unicode.so lib/libcourier-unicode.so.1 -lib/libcourier-unicode.so.1.0.0 +lib/libcourier-unicode.so.1.1.0 man/man3/unicode::iconvert::convert.3.gz man/man3/unicode::iconvert::convert_tocase.3.gz man/man3/unicode::iconvert::fromu.3.gz Modified: head/mail/maildrop/Makefile ============================================================================== --- head/mail/maildrop/Makefile Tue Jun 30 07:48:52 2015 (r390949) +++ head/mail/maildrop/Makefile Tue Jun 30 10:39:31 2015 (r390950) @@ -13,9 +13,10 @@ # installed package to miss files. # MAILDROP_TRUSTED_USERS= Specify users allowed to use the -d option # MAILDROP_LOG_COLUMNS lenght of 'File:' line in log - 8; default: 72 +# MAILDROP_MBOX_DIR= Specify DEFAULT mailbox location PORTNAME= maildrop -PORTVERSION= 2.8.2 +PORTVERSION= 2.8.3 CATEGORIES= mail MASTER_SITES= SF/courier/${PORTNAME}/${PORTVERSION} @@ -92,6 +93,10 @@ PLIST_SUB+= MMODE='2755' MGID='${MAILDR PLIST_SUB+= MMODE='' MUID='root' MGID='mail' .endif +.if defined(MAILDROP_MBOX_DIR) +CONFIGURE_ARGS+= --with-default-maildrop='${MAILDROP_MBOX_DIR}' +.endif + .if ${PORT_OPTIONS:MFAM} USES+= fam .else Modified: head/mail/maildrop/distinfo ============================================================================== --- head/mail/maildrop/distinfo Tue Jun 30 07:48:52 2015 (r390949) +++ head/mail/maildrop/distinfo Tue Jun 30 10:39:31 2015 (r390950) @@ -1,2 +1,2 @@ -SHA256 (maildrop-2.8.2.tar.bz2) = ab505c4c75ec5566f0626ae477c21ca3069ac37f8f31c41b318025d4ee549654 -SIZE (maildrop-2.8.2.tar.bz2) = 1989913 +SHA256 (maildrop-2.8.3.tar.bz2) = 58245ccd759382761c4cdbeaefbd37622e01f1c48e71251b06ea085a890ce6c9 +SIZE (maildrop-2.8.3.tar.bz2) = 1992695