aboutsummaryrefslogtreecommitdiff
path: root/devel/re2c/Makefile
blob: 1f9728acae916fc6567a4ad38209f9b0326aedcd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# Created by: Eivind Eklund <eivind@FreeBSD.org>

PORTNAME=	re2c
DISTVERSION=	2.2
CATEGORIES=	devel
MASTER_SITES=	https://github.com/skvadrik/${PORTNAME}/releases/download/${DISTVERSION}/

MAINTAINER=	chalpin@cs.wisc.edu
COMMENT=	Lexer generator for C, C++ and Go with a focus on generating fast code

LICENSE=	PD

TEST_DEPENDS=	bash:shells/bash

USES=		cmake cpe python:3.6+,test shebangfix tar:xz

TEST_TARGET=	check
SHEBANG_FILES=	test/posix_captures/.run/__run.sh \
		test/posix_captures/.gen/__gen.sh \
		test/__run_unicode_tests.sh

OPTIONS_DEFINE=		DOCS EXAMPLES LIBRE2C RE2GO
OPTIONS_DEFAULT=	RE2GO
OPTIONS_SUB=		yes

LIBRE2C_DESC=		Build libre2c (Experimental)
RE2GO_DESC=		Build RE2GO (identical to re2c --lang go)

DOCS_BUILD_DEPENDS=	bison:devel/bison \
			rst2man:textproc/py-docutils
DOCS_CMAKE_BOOL=	RE2C_REBUILD_DOCS
LIBRE2C_CMAKE_BOOL=	RE2C_BUILD_LIBS BUILD_SHARED_LIBS
RE2GO_CMAKE_BOOL=	RE2C_BUILD_RE2GO

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 <bsd.port.mk>