From owner-svn-ports-all@FreeBSD.ORG Mon May 27 13:30:32 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id B88419A1; Mon, 27 May 2013 13:30:32 +0000 (UTC) (envelope-from bsam@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id ABF96224; Mon, 27 May 2013 13:30:32 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r4RDUWV4006125; Mon, 27 May 2013 13:30:32 GMT (envelope-from bsam@svn.freebsd.org) Received: (from bsam@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r4RDUWg9006124; Mon, 27 May 2013 13:30:32 GMT (envelope-from bsam@svn.freebsd.org) Message-Id: <201305271330.r4RDUWg9006124@svn.freebsd.org> From: Boris Samorodov Date: Mon, 27 May 2013 13:30:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r319239 - head/sysutils/log_analysis 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.14 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: Mon, 27 May 2013 13:30:32 -0000 Author: bsam Date: Mon May 27 13:30:32 2013 New Revision: 319239 URL: http://svnweb.freebsd.org/changeset/ports/319239 Log: . trim Makefile headers; . delete the indefinite article from COMMENT; . remove standard option description TK_DESC; . NOPORTDOCS -> PORT_OPTIONS:MDOCS; . NOPORTEXAMPLES -> PORT_OPTIONS:MEXAMPLES. Modified: head/sysutils/log_analysis/Makefile Modified: head/sysutils/log_analysis/Makefile ============================================================================== --- head/sysutils/log_analysis/Makefile Mon May 27 13:30:20 2013 (r319238) +++ head/sysutils/log_analysis/Makefile Mon May 27 13:30:32 2013 (r319239) @@ -1,9 +1,5 @@ -# New ports collection makefile for: log_analysis -# Date created: 5 July 2001 -# Whom: petef@FreeBSD.org -# +# Created by: petef@FreeBSD.org # $FreeBSD$ -# PORTNAME= log_analysis PORTVERSION= 0.46 @@ -11,12 +7,11 @@ CATEGORIES= sysutils MASTER_SITES= http://userpages.umbc.edu/~mabzug1/ MAINTAINER= ports@FreeBSD.org -COMMENT= A utility that extracts a summary of useful data from logs +COMMENT= Utility that extracts a summary of useful data from logs LICENSE= GPLv3 -OPTIONS_DEFINE= TK -TK_DESC= Enable Tcl/Tk GUI support +OPTIONS_DEFINE= DOCS EXAMPLES TK USE_PERL5= yes GNU_CONFIGURE= yes @@ -38,12 +33,12 @@ RUN_DEPENDS+= p5-Tk>0:${PORTSDIR}/x11-to .endif post-install: -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/doc/Tutorial ${DOCSDIR} .endif -.if !defined(NOPORTEXAMPLES) +.if ${PORT_OPTIONS:MEXAMPLES} @${MKDIR} ${EXAMPLESDIR} ${INSTALL_DATA} ${WRKSRC}/doc/sample-* ${EXAMPLESDIR} .endif