diff --git a/math/calc/Makefile b/math/calc/Makefile index 66e6fd5a6241..30e995a88293 100644 --- a/math/calc/Makefile +++ b/math/calc/Makefile @@ -1,34 +1,39 @@ # Created by: jmz PORTNAME= calc -PORTVERSION= 2.13.0.0 +PORTVERSION= 2.13.0.1 DISTVERSIONPREFIX= v CATEGORIES= math MAINTAINER= adamw@FreeBSD.org COMMENT= Interactive CLI arbitrary-precision calculator LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/COPYING-LGPL USES= gmake tar:bzip2 readline USE_GITHUB= yes GH_ACCOUNT= lcn2 MAKE_JOBS_UNSAFE= yes PLIST_SUB+= VERSION=${PORTVERSION} MAKEFILE= Makefile.ship MAKE_ARGS= DATADIR="${DATADIR}" TEST_TARGET= check OPTIONS_DEFINE= FULL HELP OPTIONS_DEFAULT=FULL HELP OPTIONS_SUB= yes FULL_DESC= Install all funcs/scripts/headers (OFF: just basic calculator) HELP_DESC= Install calc help files +# We use Makefile.freebsd because Makefile.local is in .gitignore +post-extract: + ${SED} -e 's|%%CC%%|${CC}|; s|%%CFLAGS%%|${CFLAGS}|' \ + ${FILESDIR}/Makefile.freebsd > ${WRKSRC}/Makefile.local + post-install: cd ${STAGEDIR}${PREFIX} && ${STRIP_CMD} bin/calc lib/lib*.so .include diff --git a/math/calc/distinfo b/math/calc/distinfo index c76cdb9819db..9ea2926569bc 100644 --- a/math/calc/distinfo +++ b/math/calc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1617037653 -SHA256 (lcn2-calc-v2.13.0.0_GH0.tar.gz) = cddd50c91ccd51b7ad4e7fc29a544c4c0ec582a5853cd81192d4054a1faf5372 -SIZE (lcn2-calc-v2.13.0.0_GH0.tar.gz) = 1137154 +TIMESTAMP = 1618757148 +SHA256 (lcn2-calc-v2.13.0.1_GH0.tar.gz) = 3583278e29bd2508daa70098f99e467108ddb3ae3cf043d91ff27bee29365e4f +SIZE (lcn2-calc-v2.13.0.1_GH0.tar.gz) = 1141812 diff --git a/math/calc/files/Makefile.freebsd b/math/calc/files/Makefile.freebsd new file mode 100644 index 000000000000..4e2b53f88dc1 --- /dev/null +++ b/math/calc/files/Makefile.freebsd @@ -0,0 +1,19 @@ +# vim:ft=make +ARCH_CFLAGS:= +BINDIR:= ${PREFIX}/bin +CALC_INCDIR:= ${PREFIX}/include/calc +CALC_SHAREDIR:= ${DATADIR} +CALCPAGER:= more +CC:= %%CC%% +CFLAGS:= %%CFLAGS%% ${ICFLAGS} ${CCOPT} +INCDIR:= ${LOCALBASE}/include +LCC:= %%CC%% +LIBDIR:= ${PREFIX}/lib +MANDIR:= ${PREFIX}/man/man1 +SCRIPTDIR:= ${PREFIX}/libexec/cscript +T:= ${DESTDIR} +USE_READLINE:= -DUSE_READLINE -I${LOCALBASE}/include + +# These need to be in this order: +READLINE_LIBS:= -L${LOCALBASE}/lib -lreadline +READLINE_EXTRAS:= ${READLINE_LIBS} -lhistory -lncurses diff --git a/math/calc/files/patch-Makefile.ship b/math/calc/files/patch-Makefile.ship deleted file mode 100644 index a461c4e213e1..000000000000 --- a/math/calc/files/patch-Makefile.ship +++ /dev/null @@ -1,145 +0,0 @@ ---- Makefile.ship.orig 2021-03-29 17:08:06 UTC -+++ Makefile.ship -@@ -662,7 +662,7 @@ else - #endif /* end of skip for non-Gnu makefiles */ - - # default INCDIR for non-macOS --INCDIR= /usr/include -+INCDIR= ${LOCALBASE}/include - #INCDIR= /usr/local/include - #INCDIR= /dev/env/DJDIR/include - -@@ -725,7 +725,7 @@ else - #endif /* end of skip for non-Gnu makefiles */ - - # default BINDIR for non-macOS --BINDIR= /usr/bin -+BINDIR= ${PREFIX}/bin - #BINDIR= /usr/local/bin - #BINDIR= /dev/env/DJDIR/bin - -@@ -741,7 +741,7 @@ else - #endif /* end of skip for non-Gnu makefiles */ - - # default LIBDIR for non-macOS --LIBDIR= /usr/lib -+LIBDIR= ${PREFIX}/lib - #LIBDIR= /usr/local/lib - #LIBDIR= /dev/env/DJDIR/lib - -@@ -757,7 +757,7 @@ else - #endif /* end of skip for non-Gnu makefiles */ - - # default CALC_SHAREDIR for non-macOS --CALC_SHAREDIR= /usr/share/calc -+CALC_SHAREDIR= ${DATADIR} - #CALC_SHAREDIR= /usr/local/lib/calc - #CALC_SHAREDIR= /dev/env/DJDIR/share/calc - -@@ -771,7 +771,7 @@ endif - # - #CALC_INCDIR= /usr/local/include/calc - #CALC_INCDIR= /dev/env/DJDIR/include/calc --CALC_INCDIR= ${INCDIR}/calc -+CALC_INCDIR= ${PREFIX}/include/calc - - # By default, these values are based CALC_SHAREDIR, INCDIR, BINDIR - # --------------------------------------------------------------- -@@ -798,7 +798,7 @@ HELPDIR= ${CALC_SHAREDIR}/help - CUSTOMCALDIR= ${CALC_SHAREDIR}/custom - CUSTOMHELPDIR= ${CALC_SHAREDIR}/custhelp - CUSTOMINCDIR= ${CALC_INCDIR}/custom --SCRIPTDIR= ${BINDIR}/cscript -+SCRIPTDIR= ${PREFIX}/libexec/cscript - - # T - top level directory under which calc will be installed - # -@@ -830,7 +830,7 @@ SCRIPTDIR= ${BINDIR}/cscript - # - # If in doubt, use T= - # --T= -+T= ${DESTDIR} - - # where man section 1 pages are installed - # -@@ -852,7 +852,7 @@ ifeq ($(target),Darwin) - MANDIR= /usr/local/share/man/man1 - else - #endif /* end of skip for non-Gnu makefiles */ --MANDIR= /usr/share/man/man1 -+MANDIR= ${PREFIX}/man/man1 - #if 0 /* start of skip for non-Gnu makefiles */ - endif - #endif /* end of skip for non-Gnu makefiles */ -@@ -993,11 +993,11 @@ CALCRC= ${CALC_SHAREDIR}/startup:~/.calcrc:./.calcinit - # - # If in doubt, set USE_READLINE, READLINE_LIB and READLINE_INCLUDE to nothing. - # --USE_READLINE= -+USE_READLINE= -DUSE_READLINE - #USE_READLINE= -DUSE_READLINE - # --READLINE_LIB= --READLINE_EXTRAS= -+READLINE_LIB= -L${LOCALBASE}/lib -lreadline -+READLINE_EXTRAS= -lhistory -lncurses - # - #READLINE_LIB= -lreadline - #READLINE_EXTRAS= -lhistory -lncurses -@@ -1023,7 +1023,7 @@ READLINE_EXTRAS= - #READLINE_LIB= -L/usr/local/opt/readline/lib -lreadline - #READLINE_EXTRAS= -lhistory -lncurses - # --READLINE_INCLUDE= -+READLINE_INCLUDE= -I${LOCALBASE}/include - #READLINE_INCLUDE= -I/usr/gnu/include - #READLINE_INCLUDE= -I/usr/local/include - -@@ -1034,7 +1034,7 @@ READLINE_INCLUDE= - #CALCPAGER= more - #CALCPAGER= pg - #CALCPAGER= cat --CALCPAGER= less -+CALCPAGER= more - #CALCPAGER= less.exe -ci - - # Debug/Optimize options for ${CC} and ${LCC} -@@ -1228,7 +1228,7 @@ EXTRA_LDFLAGS= - # The ARCH_CFLAGS are ${CC} when compiling C files. They follow - # CCMISC and precede EXTRA_CFLAGS. - # --ARCH_CFLAGS= -march=native -+#ARCH_CFLAGS= -march=native - #ARCH_CFLAGS= - - # COMMON_CFLAGS are the common ${CC} flags used for all programs, both -@@ -1511,8 +1511,8 @@ CCWERR= - CCOPT= ${DEBUG} - CCMISC= - # --LCC= gcc --CC= ${PURIFY} ${LCC} ${CCWERR} -+LCC= ${CC} -+#CC= ${PURIFY} ${LCC} ${CCWERR} - # - MAKE= gmake - # -@@ -1725,7 +1725,7 @@ CC= ${PURIFY} ${LCC} ${CCWERR} - # LDFLAGS for ${CC} in linking calc programs other than intermediate programs - # - ICFLAGS= ${COMMON_CFLAGS} ${CCBAN} ${CC_STATIC} --CFLAGS= ${ICFLAGS} ${CCOPT} -+CFLAGS+= ${ICFLAGS} ${CCOPT} - # - ILDFLAGS= ${COMMON_LDFLAGS} ${LD_STATIC} - LDFLAGS= ${LD_DEBUG} ${ILDFLAGS} ${LIBCALC_STATIC} ${LIBCUSTCALC_STATIC} -@@ -1853,7 +1853,7 @@ ICFLAGS= ${COMMON_CFLAGS} ${CCBAN} ${CC_STATIC} - else - ICFLAGS= ${COMMON_CFLAGS} ${CCBAN} ${CC_SHARE} - endif --CFLAGS= ${ICFLAGS} ${CCOPT} -+CFLAGS+= ${ICFLAGS} ${CCOPT} - - # Required flags to link files for calc - # diff --git a/math/calc/pkg-plist b/math/calc/pkg-plist index 8e631201618f..f3ebee106901 100644 --- a/math/calc/pkg-plist +++ b/math/calc/pkg-plist @@ -1,522 +1,489 @@ bin/calc -%%FULL%%include/calc/align32.h %%FULL%%include/calc/alloc.h -%%FULL%%include/calc/args.h %%FULL%%include/calc/banned.h %%FULL%%include/calc/blkcpy.h %%FULL%%include/calc/block.h %%FULL%%include/calc/byteswap.h %%FULL%%include/calc/calc.h -%%FULL%%include/calc/calcerr.c -%%FULL%%include/calc/calcerr.h %%FULL%%include/calc/cmath.h -%%FULL%%include/calc/conf.h %%FULL%%include/calc/config.h %%FULL%%include/calc/custom.h %%FULL%%include/calc/decl.h -%%FULL%%include/calc/endian_calc.h %%FULL%%include/calc/file.h -%%FULL%%include/calc/fposval.h %%FULL%%include/calc/func.h %%FULL%%include/calc/hash.h -%%FULL%%include/calc/have_ban_pragma.h -%%FULL%%include/calc/have_const.h -%%FULL%%include/calc/have_fpos.h -%%FULL%%include/calc/have_fpos_pos.h -%%FULL%%include/calc/have_getpgid.h -%%FULL%%include/calc/have_getprid.h -%%FULL%%include/calc/have_getsid.h -%%FULL%%include/calc/have_gettime.h -%%FULL%%include/calc/have_memmv.h -%%FULL%%include/calc/have_newstr.h -%%FULL%%include/calc/have_offscl.h -%%FULL%%include/calc/have_posscl.h -%%FULL%%include/calc/have_rusage.h -%%FULL%%include/calc/have_stdlib.h -%%FULL%%include/calc/have_strdup.h -%%FULL%%include/calc/have_strlcat.h -%%FULL%%include/calc/have_strlcpy.h -%%FULL%%include/calc/have_string.h -%%FULL%%include/calc/have_times.h -%%FULL%%include/calc/have_uid_t.h -%%FULL%%include/calc/have_unistd.h -%%FULL%%include/calc/have_unused.h -%%FULL%%include/calc/have_urandom.h -%%FULL%%include/calc/have_ustat.h %%FULL%%include/calc/hist.h %%FULL%%include/calc/jump.h %%FULL%%include/calc/label.h %%FULL%%include/calc/lib_calc.h %%FULL%%include/calc/lib_util.h -%%FULL%%include/calc/longbits.h %%FULL%%include/calc/nametype.h %%FULL%%include/calc/opcodes.h %%FULL%%include/calc/prime.h %%FULL%%include/calc/qmath.h %%FULL%%include/calc/sha1.h %%FULL%%include/calc/str.h %%FULL%%include/calc/strl.h %%FULL%%include/calc/symbol.h -%%FULL%%include/calc/terminal.h %%FULL%%include/calc/token.h %%FULL%%include/calc/value.h %%FULL%%include/calc/zmath.h %%FULL%%include/calc/zrand.h %%FULL%%include/calc/zrandom.h lib/libcalc.so lib/libcalc.so.%%VERSION%% lib/libcustcalc.so lib/libcustcalc.so.%%VERSION%% %%FULL%%libexec/cscript/4dsphere %%FULL%%libexec/cscript/fproduct %%FULL%%libexec/cscript/mersenne %%FULL%%libexec/cscript/piforever %%FULL%%libexec/cscript/plus %%FULL%%libexec/cscript/powerterm %%FULL%%libexec/cscript/simple %%FULL%%libexec/cscript/square man/man1/calc.1.gz %%FULL%%%%DATADIR%%/README %%FULL%%%%DATADIR%%/alg_config.cal %%FULL%%%%DATADIR%%/beer.cal %%FULL%%%%DATADIR%%/bernoulli.cal %%FULL%%%%DATADIR%%/bernpoly.cal %%FULL%%%%DATADIR%%/bigprime.cal %%FULL%%%%DATADIR%%/bindings %%FULL%%%%DATADIR%%/brentsolve.cal %%FULL%%%%DATADIR%%/chi.cal %%FULL%%%%DATADIR%%/chrem.cal %%FULL%%%%DATADIR%%/constants.cal %%HELP%%%%DATADIR%%/custhelp/argv %%HELP%%%%DATADIR%%/custhelp/devnull %%HELP%%%%DATADIR%%/custhelp/help %%HELP%%%%DATADIR%%/custhelp/pmodm127 %%HELP%%%%DATADIR%%/custhelp/pzasusb8 %%HELP%%%%DATADIR%%/custhelp/register %%HELP%%%%DATADIR%%/custhelp/sysinfo %%FULL%%%%DATADIR%%/custom/argv.cal %%FULL%%%%DATADIR%%/custom/halflen.cal %%FULL%%%%DATADIR%%/custom/pmodm127.cal %%FULL%%%%DATADIR%%/custom/pzasusb8.cal %%FULL%%%%DATADIR%%/custom/register.cal %%FULL%%%%DATADIR%%/deg.cal %%FULL%%%%DATADIR%%/dms.cal %%FULL%%%%DATADIR%%/dotest.cal %%FULL%%%%DATADIR%%/ellip.cal %%FULL%%%%DATADIR%%/factorial.cal %%FULL%%%%DATADIR%%/factorial2.cal %%FULL%%%%DATADIR%%/gvec.cal %%FULL%%%%DATADIR%%/hello.cal %%HELP%%%%DATADIR%%/help/COPYING %%HELP%%%%DATADIR%%/help/COPYING-LGPL %%HELP%%%%DATADIR%%/help/abs %%HELP%%%%DATADIR%%/help/access %%HELP%%%%DATADIR%%/help/acos %%HELP%%%%DATADIR%%/help/acosh %%HELP%%%%DATADIR%%/help/acot %%HELP%%%%DATADIR%%/help/acoth %%HELP%%%%DATADIR%%/help/acsc %%HELP%%%%DATADIR%%/help/acsch %%HELP%%%%DATADIR%%/help/address %%HELP%%%%DATADIR%%/help/agd %%HELP%%%%DATADIR%%/help/append %%HELP%%%%DATADIR%%/help/appr %%HELP%%%%DATADIR%%/help/archive %%HELP%%%%DATADIR%%/help/arg %%HELP%%%%DATADIR%%/help/argv %%HELP%%%%DATADIR%%/help/arrow %%HELP%%%%DATADIR%%/help/asec %%HELP%%%%DATADIR%%/help/asech %%HELP%%%%DATADIR%%/help/asin %%HELP%%%%DATADIR%%/help/asinh %%HELP%%%%DATADIR%%/help/assign %%HELP%%%%DATADIR%%/help/assoc %%HELP%%%%DATADIR%%/help/atan %%HELP%%%%DATADIR%%/help/atan2 %%HELP%%%%DATADIR%%/help/atanh %%HELP%%%%DATADIR%%/help/avg %%HELP%%%%DATADIR%%/help/base %%HELP%%%%DATADIR%%/help/base2 %%HELP%%%%DATADIR%%/help/bernoulli %%HELP%%%%DATADIR%%/help/binding %%HELP%%%%DATADIR%%/help/bindings %%HELP%%%%DATADIR%%/help/bit %%HELP%%%%DATADIR%%/help/blk %%HELP%%%%DATADIR%%/help/blkcpy %%HELP%%%%DATADIR%%/help/blkfree %%HELP%%%%DATADIR%%/help/blocks %%HELP%%%%DATADIR%%/help/bround %%HELP%%%%DATADIR%%/help/btrunc %%HELP%%%%DATADIR%%/help/bug %%HELP%%%%DATADIR%%/help/bugs %%HELP%%%%DATADIR%%/help/builtin %%HELP%%%%DATADIR%%/help/calc_tty %%HELP%%%%DATADIR%%/help/calclevel %%HELP%%%%DATADIR%%/help/calcpath %%HELP%%%%DATADIR%%/help/catalan %%HELP%%%%DATADIR%%/help/ceil %%HELP%%%%DATADIR%%/help/cfappr %%HELP%%%%DATADIR%%/help/cfsim %%HELP%%%%DATADIR%%/help/change %%HELP%%%%DATADIR%%/help/changes %%HELP%%%%DATADIR%%/help/char %%HELP%%%%DATADIR%%/help/cmdbuf %%HELP%%%%DATADIR%%/help/cmp %%HELP%%%%DATADIR%%/help/comb %%HELP%%%%DATADIR%%/help/command %%HELP%%%%DATADIR%%/help/config %%HELP%%%%DATADIR%%/help/conj %%HELP%%%%DATADIR%%/help/contrib %%HELP%%%%DATADIR%%/help/cos %%HELP%%%%DATADIR%%/help/cosh %%HELP%%%%DATADIR%%/help/cot %%HELP%%%%DATADIR%%/help/coth %%HELP%%%%DATADIR%%/help/count %%HELP%%%%DATADIR%%/help/cp %%HELP%%%%DATADIR%%/help/credit %%HELP%%%%DATADIR%%/help/csc %%HELP%%%%DATADIR%%/help/csch %%HELP%%%%DATADIR%%/help/cscript %%HELP%%%%DATADIR%%/help/ctime %%HELP%%%%DATADIR%%/help/custom %%HELP%%%%DATADIR%%/help/custom_cal %%HELP%%%%DATADIR%%/help/define %%HELP%%%%DATADIR%%/help/delete %%HELP%%%%DATADIR%%/help/den %%HELP%%%%DATADIR%%/help/dereference %%HELP%%%%DATADIR%%/help/det %%HELP%%%%DATADIR%%/help/digit %%HELP%%%%DATADIR%%/help/digits %%HELP%%%%DATADIR%%/help/display %%HELP%%%%DATADIR%%/help/dp %%HELP%%%%DATADIR%%/help/environment %%HELP%%%%DATADIR%%/help/epsilon %%HELP%%%%DATADIR%%/help/errcount %%HELP%%%%DATADIR%%/help/errmax %%HELP%%%%DATADIR%%/help/errno %%HELP%%%%DATADIR%%/help/error %%HELP%%%%DATADIR%%/help/errorcode %%HELP%%%%DATADIR%%/help/errorcodes %%HELP%%%%DATADIR%%/help/estr %%HELP%%%%DATADIR%%/help/euler %%HELP%%%%DATADIR%%/help/eval %%HELP%%%%DATADIR%%/help/exp %%HELP%%%%DATADIR%%/help/expression %%HELP%%%%DATADIR%%/help/fact %%HELP%%%%DATADIR%%/help/factor %%HELP%%%%DATADIR%%/help/fclose %%HELP%%%%DATADIR%%/help/fcnt %%HELP%%%%DATADIR%%/help/feof %%HELP%%%%DATADIR%%/help/ferror %%HELP%%%%DATADIR%%/help/fflush %%HELP%%%%DATADIR%%/help/fgetc %%HELP%%%%DATADIR%%/help/fgetfield %%HELP%%%%DATADIR%%/help/fgetfile %%HELP%%%%DATADIR%%/help/fgetline %%HELP%%%%DATADIR%%/help/fgets %%HELP%%%%DATADIR%%/help/fgetstr %%HELP%%%%DATADIR%%/help/fib %%HELP%%%%DATADIR%%/help/file %%HELP%%%%DATADIR%%/help/files %%HELP%%%%DATADIR%%/help/floor %%HELP%%%%DATADIR%%/help/fopen %%HELP%%%%DATADIR%%/help/forall %%HELP%%%%DATADIR%%/help/fpathopen %%HELP%%%%DATADIR%%/help/fprintf %%HELP%%%%DATADIR%%/help/fputc %%HELP%%%%DATADIR%%/help/fputs %%HELP%%%%DATADIR%%/help/fputstr %%HELP%%%%DATADIR%%/help/frac %%HELP%%%%DATADIR%%/help/free %%HELP%%%%DATADIR%%/help/freebernoulli %%HELP%%%%DATADIR%%/help/freeeuler %%HELP%%%%DATADIR%%/help/freeglobals %%HELP%%%%DATADIR%%/help/freeredc %%HELP%%%%DATADIR%%/help/freestatics %%HELP%%%%DATADIR%%/help/frem %%HELP%%%%DATADIR%%/help/freopen %%HELP%%%%DATADIR%%/help/fscan %%HELP%%%%DATADIR%%/help/fscanf %%HELP%%%%DATADIR%%/help/fseek %%HELP%%%%DATADIR%%/help/fsize %%HELP%%%%DATADIR%%/help/ftell %%HELP%%%%DATADIR%%/help/full %%HELP%%%%DATADIR%%/help/gcd %%HELP%%%%DATADIR%%/help/gcdrem %%HELP%%%%DATADIR%%/help/gd %%HELP%%%%DATADIR%%/help/getenv %%HELP%%%%DATADIR%%/help/hash %%HELP%%%%DATADIR%%/help/head %%HELP%%%%DATADIR%%/help/help %%HELP%%%%DATADIR%%/help/highbit %%HELP%%%%DATADIR%%/help/history %%HELP%%%%DATADIR%%/help/hmean %%HELP%%%%DATADIR%%/help/hnrmod %%HELP%%%%DATADIR%%/help/hypot %%HELP%%%%DATADIR%%/help/ilog %%HELP%%%%DATADIR%%/help/ilog10 %%HELP%%%%DATADIR%%/help/ilog2 %%HELP%%%%DATADIR%%/help/im %%HELP%%%%DATADIR%%/help/indices %%HELP%%%%DATADIR%%/help/inputlevel %%HELP%%%%DATADIR%%/help/insert %%HELP%%%%DATADIR%%/help/int %%HELP%%%%DATADIR%%/help/interrupt %%HELP%%%%DATADIR%%/help/intro %%HELP%%%%DATADIR%%/help/inverse %%HELP%%%%DATADIR%%/help/iroot %%HELP%%%%DATADIR%%/help/isalnum %%HELP%%%%DATADIR%%/help/isalpha %%HELP%%%%DATADIR%%/help/isassoc %%HELP%%%%DATADIR%%/help/isatty %%HELP%%%%DATADIR%%/help/isblk %%HELP%%%%DATADIR%%/help/iscntrl %%HELP%%%%DATADIR%%/help/isconfig %%HELP%%%%DATADIR%%/help/isdefined %%HELP%%%%DATADIR%%/help/isdigit %%HELP%%%%DATADIR%%/help/iserror %%HELP%%%%DATADIR%%/help/iseven %%HELP%%%%DATADIR%%/help/isfile %%HELP%%%%DATADIR%%/help/isgraph %%HELP%%%%DATADIR%%/help/ishash %%HELP%%%%DATADIR%%/help/isident %%HELP%%%%DATADIR%%/help/isint %%HELP%%%%DATADIR%%/help/islist %%HELP%%%%DATADIR%%/help/islower %%HELP%%%%DATADIR%%/help/ismat %%HELP%%%%DATADIR%%/help/ismult %%HELP%%%%DATADIR%%/help/isnull %%HELP%%%%DATADIR%%/help/isnum %%HELP%%%%DATADIR%%/help/isobj %%HELP%%%%DATADIR%%/help/isobjtype %%HELP%%%%DATADIR%%/help/isodd %%HELP%%%%DATADIR%%/help/isprime %%HELP%%%%DATADIR%%/help/isprint %%HELP%%%%DATADIR%%/help/isptr %%HELP%%%%DATADIR%%/help/ispunct %%HELP%%%%DATADIR%%/help/isqrt %%HELP%%%%DATADIR%%/help/isrand %%HELP%%%%DATADIR%%/help/israndom %%HELP%%%%DATADIR%%/help/isreal %%HELP%%%%DATADIR%%/help/isrel %%HELP%%%%DATADIR%%/help/issimple %%HELP%%%%DATADIR%%/help/isspace %%HELP%%%%DATADIR%%/help/issq %%HELP%%%%DATADIR%%/help/isstr %%HELP%%%%DATADIR%%/help/istype %%HELP%%%%DATADIR%%/help/isupper %%HELP%%%%DATADIR%%/help/isxdigit %%HELP%%%%DATADIR%%/help/jacobi %%HELP%%%%DATADIR%%/help/join %%HELP%%%%DATADIR%%/help/lcm %%HELP%%%%DATADIR%%/help/lcmfact %%HELP%%%%DATADIR%%/help/lfactor %%HELP%%%%DATADIR%%/help/libcalc %%HELP%%%%DATADIR%%/help/list %%HELP%%%%DATADIR%%/help/ln %%HELP%%%%DATADIR%%/help/log %%HELP%%%%DATADIR%%/help/lowbit %%HELP%%%%DATADIR%%/help/ltol %%HELP%%%%DATADIR%%/help/makelist %%HELP%%%%DATADIR%%/help/man %%HELP%%%%DATADIR%%/help/mat %%HELP%%%%DATADIR%%/help/matdim %%HELP%%%%DATADIR%%/help/matfill %%HELP%%%%DATADIR%%/help/matmax %%HELP%%%%DATADIR%%/help/matmin %%HELP%%%%DATADIR%%/help/matsum %%HELP%%%%DATADIR%%/help/mattrace %%HELP%%%%DATADIR%%/help/mattrans %%HELP%%%%DATADIR%%/help/max %%HELP%%%%DATADIR%%/help/memsize %%HELP%%%%DATADIR%%/help/meq %%HELP%%%%DATADIR%%/help/min %%HELP%%%%DATADIR%%/help/minv %%HELP%%%%DATADIR%%/help/mmin %%HELP%%%%DATADIR%%/help/mne %%HELP%%%%DATADIR%%/help/mod %%HELP%%%%DATADIR%%/help/modify %%HELP%%%%DATADIR%%/help/name %%HELP%%%%DATADIR%%/help/near %%HELP%%%%DATADIR%%/help/new_custom %%HELP%%%%DATADIR%%/help/newerror %%HELP%%%%DATADIR%%/help/nextcand %%HELP%%%%DATADIR%%/help/nextprime %%HELP%%%%DATADIR%%/help/norm %%HELP%%%%DATADIR%%/help/null %%HELP%%%%DATADIR%%/help/num %%HELP%%%%DATADIR%%/help/obj %%HELP%%%%DATADIR%%/help/oldvalue %%HELP%%%%DATADIR%%/help/operator %%HELP%%%%DATADIR%%/help/ord %%HELP%%%%DATADIR%%/help/overview %%HELP%%%%DATADIR%%/help/param %%HELP%%%%DATADIR%%/help/perm %%HELP%%%%DATADIR%%/help/pfact %%HELP%%%%DATADIR%%/help/pi %%HELP%%%%DATADIR%%/help/pix %%HELP%%%%DATADIR%%/help/places %%HELP%%%%DATADIR%%/help/pmod %%HELP%%%%DATADIR%%/help/polar %%HELP%%%%DATADIR%%/help/poly %%HELP%%%%DATADIR%%/help/pop %%HELP%%%%DATADIR%%/help/popcnt %%HELP%%%%DATADIR%%/help/pound %%HELP%%%%DATADIR%%/help/power %%HELP%%%%DATADIR%%/help/prevcand %%HELP%%%%DATADIR%%/help/prevprime %%HELP%%%%DATADIR%%/help/printf %%HELP%%%%DATADIR%%/help/prompt %%HELP%%%%DATADIR%%/help/protect %%HELP%%%%DATADIR%%/help/ptest %%HELP%%%%DATADIR%%/help/push %%HELP%%%%DATADIR%%/help/putenv %%HELP%%%%DATADIR%%/help/questions %%HELP%%%%DATADIR%%/help/quo %%HELP%%%%DATADIR%%/help/quomod %%HELP%%%%DATADIR%%/help/rand %%HELP%%%%DATADIR%%/help/randbit %%HELP%%%%DATADIR%%/help/random %%HELP%%%%DATADIR%%/help/randombit %%HELP%%%%DATADIR%%/help/randperm %%HELP%%%%DATADIR%%/help/rcin %%HELP%%%%DATADIR%%/help/rcmul %%HELP%%%%DATADIR%%/help/rcout %%HELP%%%%DATADIR%%/help/rcpow %%HELP%%%%DATADIR%%/help/rcsq %%HELP%%%%DATADIR%%/help/re %%HELP%%%%DATADIR%%/help/remove %%HELP%%%%DATADIR%%/help/resource %%HELP%%%%DATADIR%%/help/reverse %%HELP%%%%DATADIR%%/help/rewind %%HELP%%%%DATADIR%%/help/rm %%HELP%%%%DATADIR%%/help/root %%HELP%%%%DATADIR%%/help/round %%HELP%%%%DATADIR%%/help/rsearch %%HELP%%%%DATADIR%%/help/runtime %%HELP%%%%DATADIR%%/help/saveval %%HELP%%%%DATADIR%%/help/scale %%HELP%%%%DATADIR%%/help/scan %%HELP%%%%DATADIR%%/help/scanf %%HELP%%%%DATADIR%%/help/script %%HELP%%%%DATADIR%%/help/search %%HELP%%%%DATADIR%%/help/sec %%HELP%%%%DATADIR%%/help/sech %%HELP%%%%DATADIR%%/help/seed %%HELP%%%%DATADIR%%/help/segment %%HELP%%%%DATADIR%%/help/select %%HELP%%%%DATADIR%%/help/sgn %%HELP%%%%DATADIR%%/help/sha1 %%HELP%%%%DATADIR%%/help/sin %%HELP%%%%DATADIR%%/help/sinh %%HELP%%%%DATADIR%%/help/size %%HELP%%%%DATADIR%%/help/sizeof %%HELP%%%%DATADIR%%/help/sleep %%HELP%%%%DATADIR%%/help/sort %%HELP%%%%DATADIR%%/help/sqrt %%HELP%%%%DATADIR%%/help/srand %%HELP%%%%DATADIR%%/help/srandom %%HELP%%%%DATADIR%%/help/ssq %%HELP%%%%DATADIR%%/help/statement %%HELP%%%%DATADIR%%/help/stoponerror %%HELP%%%%DATADIR%%/help/str %%HELP%%%%DATADIR%%/help/strcasecmp %%HELP%%%%DATADIR%%/help/strcat %%HELP%%%%DATADIR%%/help/strcmp %%HELP%%%%DATADIR%%/help/strcpy %%HELP%%%%DATADIR%%/help/strerror %%HELP%%%%DATADIR%%/help/strlen %%HELP%%%%DATADIR%%/help/strncasecmp %%HELP%%%%DATADIR%%/help/strncmp %%HELP%%%%DATADIR%%/help/strncpy %%HELP%%%%DATADIR%%/help/strpos %%HELP%%%%DATADIR%%/help/strprintf %%HELP%%%%DATADIR%%/help/strscan %%HELP%%%%DATADIR%%/help/strscanf %%HELP%%%%DATADIR%%/help/strtolower %%HELP%%%%DATADIR%%/help/strtoupper %%HELP%%%%DATADIR%%/help/substr %%HELP%%%%DATADIR%%/help/sum %%HELP%%%%DATADIR%%/help/swap %%HELP%%%%DATADIR%%/help/system %%HELP%%%%DATADIR%%/help/systime %%HELP%%%%DATADIR%%/help/tail %%HELP%%%%DATADIR%%/help/tan %%HELP%%%%DATADIR%%/help/tanh %%HELP%%%%DATADIR%%/help/test %%HELP%%%%DATADIR%%/help/time %%HELP%%%%DATADIR%%/help/todo %%HELP%%%%DATADIR%%/help/trunc %%HELP%%%%DATADIR%%/help/type %%HELP%%%%DATADIR%%/help/types %%HELP%%%%DATADIR%%/help/unexpected %%HELP%%%%DATADIR%%/help/usage %%HELP%%%%DATADIR%%/help/usertime %%HELP%%%%DATADIR%%/help/variable %%HELP%%%%DATADIR%%/help/version %%HELP%%%%DATADIR%%/help/wishlist %%HELP%%%%DATADIR%%/help/xor %%FULL%%%%DATADIR%%/hms.cal %%FULL%%%%DATADIR%%/infinities.cal %%FULL%%%%DATADIR%%/intfile.cal %%FULL%%%%DATADIR%%/intnum.cal %%FULL%%%%DATADIR%%/lambertw.cal %%FULL%%%%DATADIR%%/linear.cal %%FULL%%%%DATADIR%%/lnseries.cal %%FULL%%%%DATADIR%%/lucas.cal %%FULL%%%%DATADIR%%/lucas_chk.cal %%FULL%%%%DATADIR%%/mersenne.cal %%FULL%%%%DATADIR%%/mfactor.cal %%FULL%%%%DATADIR%%/mod.cal %%FULL%%%%DATADIR%%/natnumset.cal %%FULL%%%%DATADIR%%/pell.cal %%FULL%%%%DATADIR%%/pi.cal %%FULL%%%%DATADIR%%/pix.cal %%FULL%%%%DATADIR%%/pollard.cal %%FULL%%%%DATADIR%%/poly.cal %%FULL%%%%DATADIR%%/prompt.cal %%FULL%%%%DATADIR%%/psqrt.cal %%FULL%%%%DATADIR%%/qtime.cal %%FULL%%%%DATADIR%%/quat.cal %%FULL%%%%DATADIR%%/randbitrun.cal %%FULL%%%%DATADIR%%/randmprime.cal %%FULL%%%%DATADIR%%/randombitrun.cal %%FULL%%%%DATADIR%%/randomrun.cal %%FULL%%%%DATADIR%%/randrun.cal %%FULL%%%%DATADIR%%/regress.cal %%FULL%%%%DATADIR%%/repeat.cal %%FULL%%%%DATADIR%%/screen.cal %%FULL%%%%DATADIR%%/seedrandom.cal %%FULL%%%%DATADIR%%/set8700.cal %%FULL%%%%DATADIR%%/set8700.line %%FULL%%%%DATADIR%%/smallfactors.cal %%FULL%%%%DATADIR%%/solve.cal %%FULL%%%%DATADIR%%/specialfunctions.cal %%FULL%%%%DATADIR%%/statistics.cal %%FULL%%%%DATADIR%%/strings.cal %%FULL%%%%DATADIR%%/sumsq.cal %%FULL%%%%DATADIR%%/sumtimes.cal %%FULL%%%%DATADIR%%/surd.cal %%FULL%%%%DATADIR%%/test1700.cal %%FULL%%%%DATADIR%%/test2300.cal %%FULL%%%%DATADIR%%/test2600.cal %%FULL%%%%DATADIR%%/test2700.cal %%FULL%%%%DATADIR%%/test3100.cal %%FULL%%%%DATADIR%%/test3300.cal %%FULL%%%%DATADIR%%/test3400.cal %%FULL%%%%DATADIR%%/test3500.cal %%FULL%%%%DATADIR%%/test4000.cal %%FULL%%%%DATADIR%%/test4100.cal %%FULL%%%%DATADIR%%/test4600.cal %%FULL%%%%DATADIR%%/test5100.cal %%FULL%%%%DATADIR%%/test5200.cal %%FULL%%%%DATADIR%%/test8400.cal %%FULL%%%%DATADIR%%/test8500.cal %%FULL%%%%DATADIR%%/test8600.cal %%FULL%%%%DATADIR%%/test8900.cal %%FULL%%%%DATADIR%%/toomcook.cal %%FULL%%%%DATADIR%%/unitfrac.cal %%FULL%%%%DATADIR%%/varargs.cal %%FULL%%%%DATADIR%%/xx_print.cal %%FULL%%%%DATADIR%%/zeta2.cal @dir include/calc/custom