diff options
author | edwin <edwin@FreeBSD.org> | 2004-01-03 10:41:59 +0000 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2004-01-03 10:41:59 +0000 |
commit | 5904b5da592e6bd109cf45eda41ef89a2c5329aa (patch) | |
tree | 6d85e71317f05fff0289c1e100e1962e4e8cf1c2 /german/geonext/Makefile | |
parent | 1adca1b0aad9a74eef6076838020e645a6257cfd (diff) | |
download | FreeBSD-ports-5904b5da592e6bd109cf45eda41ef89a2c5329aa.zip FreeBSD-ports-5904b5da592e6bd109cf45eda41ef89a2c5329aa.tar.gz |
[NEW PORT] german/de-geonext: Interactive (dynamic) elementary Geometry Software
The dynamic mathematics software Geonext establishes new
ways of teaching and learning mathematics. It offers
opportunities of visualisation that can't be realised on
paper or blackboard and with traditional construction tools.
Geonext enables autonomous and cooperative learning of
mathematics in the classroom. It encourages an active
discovering approach to mathematical thinking. Geonext can
be used at school and at home for free (GPL). Therefore
the software can be handed out to students without any
copyright problems (GPL).
Geonext can be used from elementary school up to calculus
at high school and in teacher-training at university in a
manifold and flexible way.
WWW: http://www.geonext.de
- Andreas Fehlner
fehlner@gmx.de
PR: ports/59453
Submitted by: Andreas Fehlner <fehlner@gmx.de>
Diffstat (limited to 'german/geonext/Makefile')
-rw-r--r-- | german/geonext/Makefile | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/german/geonext/Makefile b/german/geonext/Makefile new file mode 100644 index 0000000..5fc55c5 --- /dev/null +++ b/german/geonext/Makefile @@ -0,0 +1,48 @@ +# New ports collection makefile for: de-geonext +# Date created: 24 July 2003 +# Whom: Andreas Fehlner (fehlner@gmx.de) +# +# $FreeBSD$ +# + +PORTNAME= geonext +PORTVERSION= 1.0 +CATEGORIES= german +MASTER_SITES= http://geonext.uni-bayreuth.de/data/download/linux/ +PKGNAMEPREFIX?= de- +DISTNAME= geonext +EXTRACT_SUFX= .tgz + +MAINTAINER= fehlner@gmx.de +COMMENT= Interactive (dynamic) elementary Geometry Software + +WRKSRC= ${WRKDIR}/geonext_install +NO_BUILD= yes +#USE_JAVA= 1.4 +#JAVA= ${JAVA_HOME}/bin/java +GNAME= geonext-de +GLOCATE= ${PREFIX}/share/${GNAME} +DATA= cacerts didmat.crt geonext.html geonext.jar license.txt index.html +GIF= pixel.gif gx.gif gni.gif gn.gif g.gif x.ico + +do-install: + ${MKDIR} ${PREFIX}/share/${GNAME} + cd ${WRKSRC} && ${INSTALL_DATA} ${DATA} ${GLOCATE} + cd ${WRKSRC} && ${INSTALL_DATA} ${GIF} ${GLOCATE} + @${ECHO_MSG} '#!/bin/sh' > ${GLOCATE}/${GNAME} + @${ECHO_MSG} '${JAVA} -cp ${GLOCATE}/geonext.jar geonext/Geonext&'\ + >>${GLOCATE}/${GNAME} + ${CHMOD} a+x ${GLOCATE}/${GNAME} + ${SED} -e 's/GEONExT.html/geonext.html/' ${GLOCATE}/index.html > \ + ${GLOCATE}/index.tmp + ${LN} ${GLOCATE}/${GNAME} ${GLOCATE}/geonext + ${MV} ${GLOCATE}/index.tmp ${GLOCATE}/index.html + ${INSTALL_SCRIPT} ${GLOCATE}/geonext-de ${PREFIX}/bin + @${ECHO_MSG} "---------------------------------------------------------" + @${ECHO_MSG} "Application: ${GLOCATE}/geonext or geonext-de" + @${ECHO_MSG} "Browser-Applet: ${GLOCATE}/geonext.html" + @${ECHO_MSG} "" + @${ECHO_MSG} " WWW: http://www.geonext.de" + @${ECHO_MSG} "------------------------------------------------------" + +.include <bsd.port.mk> |