summaryrefslogtreecommitdiff
path: root/textproc/flex
Commit message (Collapse)AuthorAgeFilesLines
* Reset infofarmer due to maintainer-timeouts and no response to email.Mark Linimon2008-09-071-1/+1
| | | | | | | Hat: portmgr Notes: svn path=/head/; revision=220031
* - Update to 2.5.35Andrew Pantyukhin2008-02-282-4/+4
| | | | Notes: svn path=/head/; revision=208080
* - Update to 2.5.34Andrew Pantyukhin2007-12-132-6/+5
| | | | Notes: svn path=/head/; revision=203456
* Migration from bison 1.x to 2.xAde Lovett2007-10-171-2/+3
| | | | | | | | PR: 117086 Tested by: -exp runs Notes: svn path=/head/; revision=201613
* Add port textproc/flex:Andrew Pantyukhin2006-08-133-0/+48
Flex is a tool for generating scanners. A scanner, sometimes called a tokenizer, is a program which recognizes lexical patterns in text. The flex program reads user-specified input files, or its standard input if no file names are given, for a description of a scanner to generate. The description is in the form of pairs of regular expressions and C code, called rules. Flex generates a C source file named, "lex.yy.c", which defines the function yylex(). The file "lex.yy.c" can be compiled and linked to produce an executable. When the executable is run, it analyzes its input for occurrences of text matching the regular expressions for each rule. Whenever it finds a match, it executes the corresponding C code. WWW: http://flex.sourceforge.net/ Note that there's flex 2.5.4 in the base system. This port provides a newer version for programs that require it, textproc/xxdiff for one. Notes: svn path=/head/; revision=170468