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 | |
parent | 97690cea6f7db302e38b104ca62b6b924ff5f762 (diff) |
Notes
Diffstat (limited to 'math/e')
-rw-r--r-- | math/e/Makefile | 36 | ||||
-rw-r--r-- | math/e/distinfo | 2 | ||||
-rw-r--r-- | math/e/pkg-descr | 6 | ||||
-rw-r--r-- | math/e/pkg-plist | 5 |
4 files changed, 49 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> diff --git a/math/e/distinfo b/math/e/distinfo new file mode 100644 index 000000000000..091450e492cb --- /dev/null +++ b/math/e/distinfo @@ -0,0 +1,2 @@ +MD5 (e-0.02718.tar.gz) = 04b0b7415dd26551a88c1c70ca7bf514 +SIZE (e-0.02718.tar.gz) = 13926 diff --git a/math/e/pkg-descr b/math/e/pkg-descr new file mode 100644 index 000000000000..63a94b98e53a --- /dev/null +++ b/math/e/pkg-descr @@ -0,0 +1,6 @@ +This is the port of e, a tiny expression evaluator. + +WWW: http://www.softnet.tuc.gr/~apdim/projects/e/ + +- Nicholas +snowy@netphile.de diff --git a/math/e/pkg-plist b/math/e/pkg-plist new file mode 100644 index 000000000000..265aa26bb4b0 --- /dev/null +++ b/math/e/pkg-plist @@ -0,0 +1,5 @@ +bin/e +%%PORTDOCS%%%%DOCSDIR%%/EXAMPLES +%%PORTDOCS%%%%DOCSDIR%%/GRAMMAR +%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%@dirrm %%DOCSDIR%% |