From owner-svn-ports-head@freebsd.org Thu Apr 28 09:03:24 2016 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 0CB62B1C768; Thu, 28 Apr 2016 09:03:24 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 D5F341159; Thu, 28 Apr 2016 09:03:23 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u3S93NPZ057369; Thu, 28 Apr 2016 09:03:23 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u3S93MjK057367; Thu, 28 Apr 2016 09:03:22 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201604280903.u3S93MjK057367@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 28 Apr 2016 09:03:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r414165 - head/textproc/re_graph 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.21 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: Thu, 28 Apr 2016 09:03:24 -0000 Author: amdmi3 Date: Thu Apr 28 09:03:22 2016 New Revision: 414165 URL: https://svnweb.freebsd.org/changeset/ports/414165 Log: - Add LICENSE - Switch to USES=tar - Add NO_ARCH - Switch to options helpers - Pet portlint Modified: head/textproc/re_graph/Makefile head/textproc/re_graph/pkg-descr Modified: head/textproc/re_graph/Makefile ============================================================================== --- head/textproc/re_graph/Makefile Thu Apr 28 08:51:02 2016 (r414164) +++ head/textproc/re_graph/Makefile Thu Apr 28 09:03:22 2016 (r414165) @@ -7,27 +7,31 @@ PORTREVISION= 3 CATEGORIES= textproc MASTER_SITES= http://www.oualline.com/sw/re/ DISTNAME= ${PORTNAME:S/_/-/}_${PORTVERSION:S/.//} -EXTRACT_SUFX= .tar MAINTAINER= ports@FreeBSD.org COMMENT= Regular Expression Graphing Program +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING + RUN_DEPENDS= p5-GD>=0:graphics/p5-GD \ p5-GD-Arrow>=0:graphics/p5-GD-Arrow -USES= perl5 +USES= tar perl5 +USE_PERL5= run NO_WRKSUBDIR= yes NO_BUILD= yes -USE_PERL5= run +NO_ARCH= yes PLIST_FILES= bin/re_graph +PORTDOCS= * OPTIONS_DEFINE= DOCS -PORTDOCS= * - do-install: ${INSTALL_SCRIPT} ${WRKSRC}/re_graph.pl ${STAGEDIR}${PREFIX}/bin/re_graph + +do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/re_graph.html ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/tut* ${STAGEDIR}${DOCSDIR} Modified: head/textproc/re_graph/pkg-descr ============================================================================== --- head/textproc/re_graph/pkg-descr Thu Apr 28 08:51:02 2016 (r414164) +++ head/textproc/re_graph/pkg-descr Thu Apr 28 09:03:22 2016 (r414165) @@ -1,17 +1,17 @@ The re_graph.pl program graphs regular expressions. The guts of the regular -expression engine is a simple state machine. The various states and operations -in the regular expression parser can be displayed using a surprisingly simple -diagram. +expression engine is a simple state machine. The various states and +operations in the regular expression parser can be displayed using a +surprisingly simple diagram. A few notes on what you are looking at: - * The nodes Start and Stop denote the beginning and end of the regular - expression. - * The solid squares denote atoms. Lines indicate the next state. When a - line splits, the state machine will take the top line first. If it's - path is blocked it will backup and take the next lower line. This is - repeated until it finds a path to the end or all paths are exhausted. - * Brown boxes indicate a grouping operation, i.e. (). - * Green boxes indicate a zero with test. The state machine will perform the - test inside the box before moving ahead. + * The nodes Start and Stop denote the beginning and end of the regular + expression. + * The solid squares denote atoms. Lines indicate the next state. When a + line splits, the state machine will take the top line first. If it's + path is blocked it will backup and take the next lower line. This is + repeated until it finds a path to the end or all paths are exhausted. + * Brown boxes indicate a grouping operation, i.e. (). + * Green boxes indicate a zero with test. The state machine will perform + the test inside the box before moving ahead. WWW: http://www.oualline.com/sw/