summaryrefslogtreecommitdiff
path: root/cad/opentimer/Makefile
blob: 4d04b1ad2e4f13c1c5c8b9745cd8f621fa8a2ffb (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
44
45
46
47
48
49
50
51
52
53
54
55
PORTNAME=	opentimer
DISTVERSION=	2.1.0-20250707
CATEGORIES=	cad

MAINTAINER=	yuri@FreeBSD.org
COMMENT=	High-performance timing analysis tool for VLSI systems
WWW=		https://github.com/OpenTimer/OpenTimer

LICENSE=	MIT
LICENSE_FILE=	${WRKSRC}/LICENSE

USES=		cmake compiler:c++17-lang python:test shebangfix tcl

USE_GITHUB=	yes
GH_ACCOUNT=	OpenTimer
GH_PROJECT=	OpenTimer
GH_TAGNAME=	8c76916c

SHEBANG_FILES=	inttest/*.py

TEST_TARGET=	test

PLIST_FILES=	bin/ot-shell \
		bin/ot-tau15 \
		bin/ot-tau18 \
		bin/ot-utility
PORTDOCS=	*
PORTEXAMPLES=	*

OPTIONS_DEFINE=	DOCS EXAMPLES
OPTIONS_SUB=	yes

do-install: # see https://github.com/OpenTimer/OpenTimer/issues/47
.for e in ot-shell ot-tau15 ot-tau18 ot-utility
	${INSTALL_PROGRAM} ${WRKSRC}/bin/${e} \
		${STAGEDIR}${PREFIX}/bin
.endfor

post-install-DOCS-on:
	cd ${WRKSRC} && \
		${COPYTREE_SHARE} "doc wiki" ${STAGEDIR}${DOCSDIR}

post-install-EXAMPLES-on:
	${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
	cd ${WRKSRC}/example && \
		${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}
.for e in fcpc26 incremental optimizer simple sizer unit
	${STRIP_CMD} ${STAGEDIR}${EXAMPLESDIR}/${e}/${e}
.endfor

quick-test: # runs the script suggested in https://github.com/OpenTimer/OpenTimer
	@cd ${WRKSRC} && \
		bin/ot-shell < ${FILESDIR}/test.txt

.include <bsd.port.mk>