From owner-svn-ports-head@FreeBSD.ORG Tue Jul 23 20:35:13 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 2102454D; Tue, 23 Jul 2013 20:35:13 +0000 (UTC) (envelope-from pawel@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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0332623B9; Tue, 23 Jul 2013 20:35:13 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r6NKZC4k053980; Tue, 23 Jul 2013 20:35:12 GMT (envelope-from pawel@svn.freebsd.org) Received: (from pawel@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r6NKZCwF053976; Tue, 23 Jul 2013 20:35:12 GMT (envelope-from pawel@svn.freebsd.org) Message-Id: <201307232035.r6NKZCwF053976@svn.freebsd.org> From: Pawel Pekala Date: Tue, 23 Jul 2013 20:35:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r323548 - in head/mail: . cyrus2dovecot 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.14 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, 23 Jul 2013 20:35:13 -0000 Author: pawel Date: Tue Jul 23 20:35:11 2013 New Revision: 323548 URL: http://svnweb.freebsd.org/changeset/ports/323548 Log: Cyrus2Dovecot is a full-featured command line tool for converting the e-mails of one or more users from Cyrus format to Dovecot Maildir++ folders. It allows for performing a server transition which is fully transparent to both POP and IMAP users. WWW: http://www.cyrus2dovecot.sw.fu-berlin.de/ PR: ports/18590 Submitted by: Vladimir Kondratiev Added: head/mail/cyrus2dovecot/ head/mail/cyrus2dovecot/Makefile (contents, props changed) head/mail/cyrus2dovecot/distinfo (contents, props changed) head/mail/cyrus2dovecot/pkg-descr (contents, props changed) Modified: head/mail/Makefile Modified: head/mail/Makefile ============================================================================== --- head/mail/Makefile Tue Jul 23 20:00:53 2013 (r323547) +++ head/mail/Makefile Tue Jul 23 20:35:11 2013 (r323548) @@ -85,6 +85,7 @@ SUBDIR += cyrus-imapd23 SUBDIR += cyrus-imapd24 SUBDIR += cyrus2courier + SUBDIR += cyrus2dovecot SUBDIR += davmail SUBDIR += dbmail SUBDIR += dbmail22 Added: head/mail/cyrus2dovecot/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/cyrus2dovecot/Makefile Tue Jul 23 20:35:11 2013 (r323548) @@ -0,0 +1,35 @@ +# Created by: Vladimir Kondratiev +# $FreeBSD$ + +PORTNAME= cyrus2dovecot +PORTVERSION= 1.2 +CATEGORIES= mail +MASTER_SITES= http://www.cyrus2dovecot.sw.fu-berlin.de/download/ +EXTRACT_SUFX= +EXTRACT_ONLY= + +MAINTAINER= wulf@mail.mipt.ru +COMMENT= Convert Cyrus folders to Dovecot + +PLIST_FILES= bin/${PORTNAME} +MAN1= ${PORTNAME}.1 + +USE_PERL5= yes +NO_WRKSUBDIR= yes + +post-extract: + @${CP} -v ${DISTDIR}/${DISTNAME} ${WRKSRC} + +post-patch: + @${REINPLACE_CMD} -e '1s,^#!.*,#!${PERL},' ${WRKSRC}/${DISTNAME} + +do-build: + pod2man --section=1 --release=${PORTVERSION} \ + --name=${PORTNAME} --center=${PORTNAME}" user guide" \ + ${WRKSRC}/${DISTNAME} ${WRKSRC}/${PORTNAME}.1 + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/${DISTNAME} ${PREFIX}/bin/${PORTNAME} + ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${PREFIX}/man/man1/${PORTNAME}.1 + +.include Added: head/mail/cyrus2dovecot/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/cyrus2dovecot/distinfo Tue Jul 23 20:35:11 2013 (r323548) @@ -0,0 +1,2 @@ +SHA256 (cyrus2dovecot-1.2) = 69cc05e7d493b8e5030300aaa71bb87f72203f507ad726d796235619efae4917 +SIZE (cyrus2dovecot-1.2) = 52212 Added: head/mail/cyrus2dovecot/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/cyrus2dovecot/pkg-descr Tue Jul 23 20:35:11 2013 (r323548) @@ -0,0 +1,6 @@ +Cyrus2Dovecot is a full-featured command line tool for converting the +e-mails of one or more users from Cyrus format to Dovecot Maildir++ folders. +It allows for performing a server transition which is fully transparent to +both POP and IMAP users. + +WWW: http://www.cyrus2dovecot.sw.fu-berlin.de/