Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 13 Aug 2006 15:30:22 +0000 (UTC)
From:      Andrew Pantyukhin <sat@FreeBSD.org>
To:        ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org
Subject:   cvs commit: ports/textproc Makefile ports/textproc/flex Makefile distinfo pkg-descr
Message-ID:  <200608131530.k7DFUMh4036046@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
sat         2006-08-13 15:30:22 UTC

  FreeBSD ports repository

  Modified files:
    textproc             Makefile 
  Added files:
    textproc/flex        Makefile distinfo pkg-descr 
  Log:
  Add port textproc/flex:
  
  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.
  
  Revision  Changes    Path
  1.1046    +1 -0      ports/textproc/Makefile
  1.1       +32 -0     ports/textproc/flex/Makefile (new)
  1.1       +3 -0      ports/textproc/flex/distinfo (new)
  1.1       +13 -0     ports/textproc/flex/pkg-descr (new)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200608131530.k7DFUMh4036046>