| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
| |
With hat: portmgr
Sponsored by: Absolight
|
| |
|
|
|
|
|
| |
Announcement: http://sourceforge.net/p/flex/mailman/message/34626590/
Add port examples
|
| |
|
| |
|
|
|
|
|
| |
Reviewed by: bdrewery
Approved by: bdrewery
|
|
|
|
| |
With hat: portmgr
|
|
|
|
|
|
|
|
|
|
| |
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
|
| |
|
|
|
|
|
|
|
| |
These cause problems with several ports.
PR: ports/186790
Submitted by: Matthew Rezny <matthew@reztek.cz> and others
|
|
|
|
| |
Reported by: miwi
|
| |
|
|
|
|
|
|
| |
this fixes packaging as a regular user
Submitted by: antoine
|
| |
|
|
|
|
| |
textproc)
|
|
|
|
| |
Submitted by: antoine
|
|
|
|
|
| |
- Change USE_GNOME=pkgconfig|gnomehack to USES=pathfix|pkgconfig and
USE_GETTEXT=yes to USES=gettext while here
|
|
|
|
| |
Approved by: portmgr (bapt)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
| |
- Reduce Makefile header
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
Feature safe: yes
|
|
|
|
|
|
|
|
| |
This doesn't affect regular (root) installs.
PR: ports/143933
Submitted by: gerald
Feature safe: yes
|
|
|
|
| |
Feature safe: yes
|
|
|
|
| |
- Claim maintainership
|
|
|
|
|
|
|
| |
The flex man page is very brief and points to this info file.
PR: ports/139163
Submitted by: Anonymous <swell.k@gmail.com>
|
|
|
|
| |
starting with T,U,V
|
|
|
|
|
|
|
| |
who use system flex (e.g. ports/126520)
Submitted by: Andy Fawcett via irc
Approved by: miwi (mentor)
|
|
|
|
| |
Hat: portmgr
|
| |
|
| |
|
|
|
|
|
| |
PR: 117086
Tested by: -exp runs
|
|
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.
|