Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix build breakage caused by missing -E in previous commit. Oops. | johans | 2010-02-26 | 1 | -1/+1 |
| | | | | Feature safe: yes | ||||
* | Fix port installation for the INSTALL_AS_USER case. | johans | 2010-02-26 | 1 | -1/+3 |
| | | | | | | | | This doesn't affect regular (root) installs. PR: ports/143933 Submitted by: gerald Feature safe: yes | ||||
* | Update my mail address to @FreeBSD.org | johans | 2010-02-24 | 1 | -1/+1 |
| | | | | Feature safe: yes | ||||
* | - Enable NLS | johans | 2009-12-28 | 2 | -8/+35 |
| | | | | - Claim maintainership | ||||
* | Install additional info file. | johans | 2009-12-08 | 1 | -4/+7 |
| | | | | | | | The flex man page is very brief and points to this info file. PR: ports/139163 Submitted by: Anonymous <swell.k@gmail.com> | ||||
* | - Switch SourceForge ports to the new File Release System: categories ↵ | amdmi3 | 2009-08-22 | 1 | -1/+1 |
| | | | | starting with T,U,V | ||||
* | install flex header to include/flex, thus resolve build problem for those, ↵ | makc | 2009-01-05 | 1 | -2/+5 |
| | | | | | | | who use system flex (e.g. ports/126520) Submitted by: Andy Fawcett via irc Approved by: miwi (mentor) | ||||
* | Reset infofarmer due to maintainer-timeouts and no response to email. | linimon | 2008-09-07 | 1 | -1/+1 |
| | | | | Hat: portmgr | ||||
* | - Update to 2.5.35 | sat | 2008-02-28 | 2 | -4/+4 |
| | |||||
* | - Update to 2.5.34 | sat | 2007-12-13 | 2 | -6/+5 |
| | |||||
* | Migration from bison 1.x to 2.x | ade | 2007-10-17 | 1 | -2/+3 |
| | | | | | PR: 117086 Tested by: -exp runs | ||||
* | Add port textproc/flex: | sat | 2006-08-13 | 3 | -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. |