From owner-svn-ports-all@FreeBSD.ORG Sun May 11 09:26:42 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A3C8FD9E; Sun, 11 May 2014 09:26:42 +0000 (UTC) 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 775F52287; Sun, 11 May 2014 09:26:42 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s4B9Qguo071445; Sun, 11 May 2014 09:26:42 GMT (envelope-from tota@svn.freebsd.org) Received: (from tota@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s4B9QgXY071442; Sun, 11 May 2014 09:26:42 GMT (envelope-from tota@svn.freebsd.org) Message-Id: <201405110926.s4B9QgXY071442@svn.freebsd.org> From: TAKATSU Tomonari Date: Sun, 11 May 2014 09:26:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r353660 - head/mail/lens X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 May 2014 09:26:42 -0000 Author: tota Date: Sun May 11 09:26:41 2014 New Revision: 353660 URL: http://svnweb.freebsd.org/changeset/ports/353660 QAT: https://qat.redports.org/buildarchive/r353660/ Log: - Remove indefinite article from COMMENT - Add OPTIONS_DEFINE - Support STAGEDIR * Make PORTDOCS and PORTEXAMPLES unconditional to stage - Remove Author: from pkg-descr - Replace tab with a single space after WWW: in pkg-descr Modified: head/mail/lens/Makefile head/mail/lens/pkg-descr Modified: head/mail/lens/Makefile ============================================================================== --- head/mail/lens/Makefile Sun May 11 08:57:54 2014 (r353659) +++ head/mail/lens/Makefile Sun May 11 09:26:41 2014 (r353660) @@ -9,7 +9,7 @@ MASTER_SITES= http://www.pitecan.com/Len ${MASTER_SITE_LOCAL:S|%SUBDIR%|tota/lens|} MAINTAINER= tota@FreeBSD.org -COMMENT= A mail filter written in Ruby +COMMENT= Mail filter written in Ruby NO_BUILD= yes USE_RUBY= yes @@ -17,21 +17,18 @@ USE_RUBY= yes LIB_FILES= lens.rb maildir.rb message.rb parsedate.rb classify.rb RUBY_SHEBANG_FILES= lens -NO_STAGE= yes +OPTIONS_DEFINE= DOCS EXAMPLES + do-install: - ${INSTALL_SCRIPT} ${WRKSRC}/lens ${PREFIX}/bin - ${MKDIR} ${RUBY_SITELIBDIR}/lens + ${INSTALL_SCRIPT} ${WRKSRC}/lens ${STAGEDIR}${PREFIX}/bin + @${MKDIR} ${STAGEDIR}${RUBY_SITELIBDIR}/lens .for f in ${LIB_FILES} - ${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_SITELIBDIR}/lens + ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${RUBY_SITELIBDIR}/lens .endfor -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/index.html ${DOCSDIR} -.endif -.if !defined(NOPORTEXAMPLES) - ${MKDIR} ${EXAMPLESDIR} - ${INSTALL_DATA} ${WRKSRC}/lensrc.sample ${EXAMPLESDIR}/dot.lensrc - ${INSTALL_DATA} ${WRKSRC}/commandmailrc.sample ${EXAMPLESDIR}/dot.commandmailrc -.endif + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/index.html ${STAGEDIR}${DOCSDIR} + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/lensrc.sample ${STAGEDIR}${EXAMPLESDIR}/dot.lensrc + ${INSTALL_DATA} ${WRKSRC}/commandmailrc.sample ${STAGEDIR}${EXAMPLESDIR}/dot.commandmailrc .include Modified: head/mail/lens/pkg-descr ============================================================================== --- head/mail/lens/pkg-descr Sun May 11 08:57:54 2014 (r353659) +++ head/mail/lens/pkg-descr Sun May 11 09:26:41 2014 (r353660) @@ -1,5 +1,4 @@ Lens is a mail filter written in Ruby. Lens can filter an incoming mail when it is received and filter mails in a Maildir. -Author: Toshiyuki Masui -WWW: http://www.pitecan.com/Lens/ +WWW: http://www.pitecan.com/Lens/