mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-21 00:25:50 +00:00
168f57451a
COMMENT typos and surrounding whitespace fixes. A few Makefiles where not included as they contain Latin-1 characters that break the Phabricator workflow. Category M. CR: D306 Approved by: portmgr (bapt)
30 lines
620 B
Makefile
30 lines
620 B
Makefile
# Created by: snowy
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= e
|
|
PORTVERSION= 0.02718
|
|
CATEGORIES= math
|
|
MASTER_SITES= http://www.softnet.tuc.gr/~apdim/projects/e/
|
|
|
|
MAINTAINER= snowy@netphile.de
|
|
COMMENT= Tiny expression evaluator
|
|
|
|
MAKEFILE= makefile
|
|
ALL_TARGET= e
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-patch:
|
|
@${RM} ${WRKSRC}/${PORTNAME}
|
|
@${REINPLACE_CMD} -e 's|gcc|${CC}|g ; \
|
|
s|-O2|${CFLAGS}|g' ${WRKSRC}/makefile
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for i in EXAMPLES GRAMMAR README
|
|
${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|