mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-01 05:45:45 +00:00
ef4aac653a
* Fixed long form of -1 switch to --single-pass as noted in man page and help. * Added MSVC 2003 project files and renamed old 2002 ones. * Fix whitespace in generated code. PR: ports/99038 Submitted by: maintainer
31 lines
690 B
Makefile
31 lines
690 B
Makefile
# New ports collection makefile for: re2c
|
|
# Date created: 14 May 1998
|
|
# Whom: Eivind Eklund <eivind@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= re2c
|
|
PORTVERSION= 0.10.5
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= laszlof@vonostingroup.com
|
|
COMMENT= Compile regular expression to C (much faster final code than flex)
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|
USE_GCC= 3.3+
|
|
|
|
MAN1= re2c.1
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
post-install:
|
|
@${MKDIR} ${DOCSDIR}
|
|
${CP} -R ${WRKSRC}/doc/* ${DOCSDIR}
|
|
@${MKDIR} ${EXAMPLESDIR}
|
|
${CP} -R ${WRKSRC}/examples/* ${EXAMPLESDIR}
|
|
.endif
|
|
.include <bsd.port.mk>
|