diff options
author | Kirill Ponomarev <krion@FreeBSD.org> | 2004-11-03 14:33:46 +0000 |
---|---|---|
committer | Kirill Ponomarev <krion@FreeBSD.org> | 2004-11-03 14:33:46 +0000 |
commit | fe81dd4aea545942f516f47f1403a8c3f45d2c10 (patch) | |
tree | c5347c92400bc590965eff4c0292b298efca3834 /math/e/Makefile | |
parent | 97690cea6f7db302e38b104ca62b6b924ff5f762 (diff) |
Notes
Diffstat (limited to 'math/e/Makefile')
-rw-r--r-- | math/e/Makefile | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/math/e/Makefile b/math/e/Makefile new file mode 100644 index 000000000000..80fc42676eb3 --- /dev/null +++ b/math/e/Makefile @@ -0,0 +1,36 @@ +# New ports collection makefile for: e +# Date created: 3 November 2004 +# Whom: snowy +# +# $FreeBSD$ +# + +PORTNAME= e +PORTVERSION= 0.02718 +CATEGORIES= math +MASTER_SITES= http://www.softnet.tuc.gr/~apdim/projects/e/ + +MAINTAINER= snowy@netphile.de +COMMENT= A tiny expression evaluator + +MAKEFILE= makefile +ALL_TARGET= e +USE_REINPLACE= yes + +post-patch: + @${RM} ${WRKSRC}/${PORTNAME} + @${REINPLACE_CMD} -e 's|gcc|${CC}|g ; \ + s|-O2|${CFLAGS}|g' ${WRKSRC}/makefile + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin + +post-install: +.if !defined(NOPORTDOCS) + ${MKDIR} ${DOCSDIR} +.for i in EXAMPLES GRAMMAR README + ${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR} +.endfor +.endif + +.include <bsd.port.mk> |