diff options
author | Steve Price <steve@FreeBSD.org> | 1999-11-01 02:23:52 +0000 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 1999-11-01 02:23:52 +0000 |
commit | a9a5267e924e75c2fea4f50cfdd8b7c1b0899416 (patch) | |
tree | b3da8015c673f330f4a426dda2c73991977e62d9 | |
parent | Activate the ddup port. (diff) |
Initial import of rcalc version 0.1.
A symbolic calculator for GNOME.
PR: 14585
Submitted by: Chris D. Faulhaber <jedgar@fxp.org>
Notes
Notes:
svn path=/head/; revision=22792
-rw-r--r-- | math/rcalc/Makefile | 30 | ||||
-rw-r--r-- | math/rcalc/distinfo | 1 | ||||
-rw-r--r-- | math/rcalc/pkg-comment | 1 | ||||
-rw-r--r-- | math/rcalc/pkg-descr | 16 | ||||
-rw-r--r-- | math/rcalc/pkg-plist | 1 |
5 files changed, 49 insertions, 0 deletions
diff --git a/math/rcalc/Makefile b/math/rcalc/Makefile new file mode 100644 index 000000000000..a64f6cad349c --- /dev/null +++ b/math/rcalc/Makefile @@ -0,0 +1,30 @@ +# New ports collection makefile for: rcalc +# Version required: 0.1 +# Date created: 28 October 1999 +# Whom: Chris D. Faulhaber <jedgar@fxp.org> +# +# $FreeBSD$ +# + +DISTNAME= rCalc-0.1 +PKGNAME= rcalc-0.1 +CATEGORIES= math gnome +MASTER_SITES= http://members.xoom.com/ratsoft/download/ + +MAINTAINER= jedgar@fxp.org + +LIB_DEPENDS= gnome.3:${PORTSDIR}/x11/gnomelibs + +FETCH_BEFORE_ARGS+= -b # members.xoom.com is broken + +GTK_CONFIG?= ${X11BASE}/bin/gtk12-config + +USE_X_PREFIX= yes +USE_GMAKE= yes +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --with-x +CONFIGURE_ENV+= CFLAGS="-I${LOCALBASE}/include ${CFLAGS}" \ + GTK_CONFIG="${GTK_CONFIG}" \ + LIBS="-L${LOCALBASE}/lib" + +.include <bsd.port.mk> diff --git a/math/rcalc/distinfo b/math/rcalc/distinfo new file mode 100644 index 000000000000..faf8abc252ac --- /dev/null +++ b/math/rcalc/distinfo @@ -0,0 +1 @@ +MD5 (rCalc-0.1.tar.gz) = 06bad68e9286d03a2598244458437943 diff --git a/math/rcalc/pkg-comment b/math/rcalc/pkg-comment new file mode 100644 index 000000000000..402a0ccec14e --- /dev/null +++ b/math/rcalc/pkg-comment @@ -0,0 +1 @@ +Symbolic calculator for GNOME diff --git a/math/rcalc/pkg-descr b/math/rcalc/pkg-descr new file mode 100644 index 000000000000..565a3a3758cd --- /dev/null +++ b/math/rcalc/pkg-descr @@ -0,0 +1,16 @@ +rCalc is a symbolic calculator for GNOME, featuring: + + * Standard infix expressions - you type something like + 1+3*sin(pi) and it will be evaluated for you in the + correct order. + * Variables (this is where the `symbolic' comes in). + If you enter an expression like a=1+e^2.5, then the + result is stored in a variable called a. You can + then use it in future expressions, like b=sqrt(a*5). + * Furthermore, variables are stored between sessions + unless you delete them. + +WWW: http://rat.spunge.org/rcalc/ + +- Chris D. Faulhaber +jedgar@fxp.org diff --git a/math/rcalc/pkg-plist b/math/rcalc/pkg-plist new file mode 100644 index 000000000000..4b32dca3bad2 --- /dev/null +++ b/math/rcalc/pkg-plist @@ -0,0 +1 @@ +bin/rcalc |