aboutsummaryrefslogtreecommitdiffstats
path: root/textproc/flex
Commit message (Collapse)AuthorAgeFilesLines
* Remove ${PORTSDIR}/ from dependencies, categories r, s, t, and u.mat2016-04-011-3/+3
| | | | | With hat: portmgr Sponsored by: Absolight
* Update flex to 2.6.1johans2016-03-113-11/+6
|
* Update to flex 2.6.0johans2015-11-183-6/+14
| | | | | Announcement: http://sourceforge.net/p/flex/mailman/message/34626590/ Add port examples
* Cleanup plistantoine2014-11-161-2/+0
|
* Add USES=libtooltijl2014-09-012-4/+2
|
* Remove deletion of LC_MESSAGES directories that are owned by devel/gettextgrembo2014-08-201-4/+0
| | | | | Reviewed by: bdrewery Approved by: bdrewery
* Fix build on system built WITHOUT_INFObapt2014-06-251-1/+1
| | | | With hat: portmgr
* Make sure static library libfl_pic.a contains position independent code.johans2014-05-051-5/+3
| | | | | | | | | | This fixes compilation of ports that insist on linking this library into a shared object file (specifically devel/libmatheval). While here, remove unused ranlib patch lines. PR: ports/189323 Submitted by: tijl
* Update to flex 2.5.39johans2014-03-283-9/+11
|
* Disable installation of shared libraries.johans2014-02-212-6/+2
| | | | | | | These cause problems with several ports. PR: ports/186790 Submitted by: Matthew Rezny <matthew@reztek.cz> and others
* Add missing .la files to plistjohans2014-02-162-1/+4
| | | | Reported by: miwi
* Update to flex 2.5.38johans2014-02-143-6/+15
|
* Avoid running ranlib again during installation phase,johans2014-01-131-0/+1
| | | | | | this fixes packaging as a regular user Submitted by: antoine
* Enable stage support + minor cleanupsjohans2014-01-122-19/+16
|
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵bapt2013-09-211-0/+1
| | | | textproc)
* Add GNU m4 as run dependency of flexjohans2013-07-111-0/+3
| | | | Submitted by: antoine
* - Convert USE_ICONV=yes to USES=iconvmva2013-04-281-2/+1
| | | | | - Change USE_GNOME=pkgconfig|gnomehack to USES=pathfix|pkgconfig and USE_GETTEXT=yes to USES=gettext while here
* - Convert USE_GETTEXT to USES (part 4)ak2013-04-261-1/+1
| | | | Approved by: portmgr (bapt)
* Convert USE_BISON to USES= bisonbapt2013-03-081-1/+1
| | | | | | | | | | | | | | It brings bison as a build dependency in case it is set the following way: USES= bison or USES= bison:build it brings bison as a run dependency in case it is set the following way: USES= bison:run it brings bison both as a run and build dependency in case it the set the following way: USES= bison:both While here trim some headers Convert some USE_GNOME= gnomehack to USES= pathfix
* - Update flex to 2.5.37johans2012-09-022-8/+3
| | | | - Reduce Makefile header
* Update flex to 2.5.36 (bugfix release)johans2012-07-243-5/+12
|
* Convert to new options frameworkjohans2012-06-281-1/+3
|
* -remove MD5ohauer2011-07-031-1/+0
|
* Bounce PORTREVISION for gettext-related ports. Have fun, ya'll.ade2010-05-311-1/+1
|
* Fix build breakage caused by missing -E in previous commit. Oops.johans2010-02-261-1/+1
| | | | Feature safe: yes
* Fix port installation for the INSTALL_AS_USER case.johans2010-02-261-1/+3
| | | | | | | | This doesn't affect regular (root) installs. PR: ports/143933 Submitted by: gerald Feature safe: yes
* Update my mail address to @FreeBSD.orgjohans2010-02-241-1/+1
| | | | Feature safe: yes
* - Enable NLSjohans2009-12-282-8/+35
| | | | - Claim maintainership
* Install additional info file.johans2009-12-081-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 ↵amdmi32009-08-221-1/+1
| | | | starting with T,U,V
* install flex header to include/flex, thus resolve build problem for those, ↵makc2009-01-051-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.linimon2008-09-071-1/+1
| | | | Hat: portmgr
* - Update to 2.5.35sat2008-02-282-4/+4
|
* - Update to 2.5.34sat2007-12-132-6/+5
|
* Migration from bison 1.x to 2.xade2007-10-171-2/+3
| | | | | PR: 117086 Tested by: -exp runs
* Add port textproc/flex:sat2006-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.