Index: head/devel/re2c/Makefile =================================================================== --- head/devel/re2c/Makefile (revision 491547) +++ head/devel/re2c/Makefile (revision 491548) @@ -1,29 +1,31 @@ # Created by: Eivind Eklund # $FreeBSD$ PORTNAME= re2c PORTVERSION= 0.14.3 CATEGORIES= devel MASTER_SITES= SF/${PORTNAME}/${PORTVERSION} MAINTAINER= chalpin@cs.wisc.edu COMMENT= Compile regular expression to C (much faster final code than flex) +LICENSE= PD + OPTIONS_DEFINE= DOCS EXAMPLES GNU_CONFIGURE= yes PLIST_FILES= bin/re2c \ man/man1/re2c.1.gz PORTDOCS= * PORTEXAMPLES= * post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR}/ (cd ${WRKSRC}/doc/ && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}/) post-install-EXAMPLES-on: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/ (cd ${WRKSRC}/examples/ && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}/) .include Index: head/devel/re2c/pkg-descr =================================================================== --- head/devel/re2c/pkg-descr (revision 491547) +++ head/devel/re2c/pkg-descr (revision 491548) @@ -1,8 +1,8 @@ re2c is a tool for generating C-based recognizers from regular expressions. re2c-based scanners are efficient: for programming languages, given similar specifications, an re2c-based scanner is typically almost twice as fast as a flex-based scanner with little or no increase in size (possibly a decrease on cisc architectures). Indeed, re2c-based scanners are quite competitive with hand-crafted ones. -WWW: http://re2c.sourceforge.net/ +WWW: http://re2c.org/