tar -xf mathomatic-16.0.5.tar.bz2 cc -O2 -march=armv5te -fexceptions -DUNIX -DVERSION=\"`cat VERSION`\" -DREADLINE -c -o main.o main.c cc -O2 -march=armv5te -fexceptions -DUNIX -DVERSION=\"`cat VERSION`\" -DREADLINE -c -o globals.o globals.c cc -O2 -march=armv5te -fexceptions -DUNIX -DVERSION=\"`cat VERSION`\" -DREADLINE -c -o am.o am.c cc -O2 -march=armv5te -fexceptions -DUNIX -DVERSION=\"`cat VERSION`\" -DREADLINE -c -o solve.o solve.c cc -O2 -march=armv5te -fexceptions -DUNIX -DVERSION=\"`cat VERSION`\" -DREADLINE -c -o help.o help.c cc -O2 -march=armv5te -fexceptions -DUNIX -DVERSION=\"`cat VERSION`\" -DREADLINE -c -o parse.o parse.c cc -O2 -march=armv5te -fexceptions -DUNIX -DVERSION=\"`cat VERSION`\" -DREADLINE -c -o cmds.o cmds.c cc -O2 -march=armv5te -fexceptions -DUNIX -DVERSION=\"`cat VERSION`\" -DREADLINE -c -o simplify.o simplify.c cc -O2 -march=armv5te -fexceptions -DUNIX -DVERSION=\"`cat VERSION`\" -DREADLINE -c -o factor.o factor.c cc -O2 -march=armv5te -fexceptions -DUNIX -DVERSION=\"`cat VERSION`\" -DREADLINE -c -o super.o super.c cc -O2 -march=armv5te -fexceptions -DUNIX -DVERSION=\"`cat VERSION`\" -DREADLINE -c -o unfactor.o unfactor.c cc -O2 -march=armv5te -fexceptions -DUNIX -DVERSION=\"`cat VERSION`\" -DREADLINE -c -o poly.o poly.c cc -O2 -march=armv5te -fexceptions -DUNIX -DVERSION=\"`cat VERSION`\" -DREADLINE -c -o diff.o diff.c cc -O2 -march=armv5te -fexceptions -DUNIX -DVERSION=\"`cat VERSION`\" -DREADLINE -c -o integrate.o integrate.c cc -O2 -march=armv5te -fexceptions -DUNIX -DVERSION=\"`cat VERSION`\" -DREADLINE -c -o complex.o complex.c cc -O2 -march=armv5te -fexceptions -DUNIX -DVERSION=\"`cat VERSION`\" -DREADLINE -c -o complex_lib.o complex_lib.c cc -O2 -march=armv5te -fexceptions -DUNIX -DVERSION=\"`cat VERSION`\" -DREADLINE -c -o list.o list.c cc -O2 -march=armv5te -fexceptions -DUNIX -DVERSION=\"`cat VERSION`\" -DREADLINE -c -o gcd.o gcd.c cc -O2 -march=armv5te -fexceptions -DUNIX -DVERSION=\"`cat VERSION`\" -DREADLINE -c -o factor_int.o factor_int.c cc -O2 -march=armv5te -fexceptions -DUNIX -DVERSION=\"`cat VERSION`\" -DREADLINE main.o globals.o am.o solve.o help.o parse.o cmds.o simplify.o factor.o super.o unfactor.o poly.o diff.o integrate.o complex.o complex_lib.o list.o gcd.o factor_int.o -lncurses -lm -lreadline -o mathomatic ./mathomatic successfully created. Testing ./mathomatic (Mathomatic version 16.0.5) cd tests && time -p ../mathomatic -t all 0<&- >test.out && diff -u --strip-trailing-cr all.out test.out && rm test.out && cd .. real 8.47 user 8.21 sys 0.09 All tests passed 100% correctly. install -d /builds/original/ap/mathomatic/pkg/usr/bin install -d /builds/original/ap/mathomatic/pkg/usr/share/applications install -d /builds/original/ap/mathomatic/pkg/usr/share/pixmaps install -d /builds/original/ap/mathomatic/pkg/usr/man/man1 install mathomatic /builds/original/ap/mathomatic/pkg/usr/bin install -m 0644 icons/mathomatic.desktop /builds/original/ap/mathomatic/pkg/usr/share/applications install -m 0644 icons/mathomatic.png icons/mathomatic.xpm /builds/original/ap/mathomatic/pkg/usr/share/pixmaps install -m 0644 mathomatic.1 /builds/original/ap/mathomatic/pkg/usr/man/man1 Installing docs... install -d /builds/original/ap/mathomatic/pkg/usr/doc/mathomatic-16.0.5 install -d /builds/original/ap/mathomatic/pkg/usr/doc/mathomatic-16.0.5/html install -d /builds/original/ap/mathomatic/pkg/usr/doc/mathomatic-16.0.5/tests install -d /builds/original/ap/mathomatic/pkg/usr/doc/mathomatic-16.0.5/examples install -m 0644 VERSION AUTHORS COPYING README.txt NEWS /builds/original/ap/mathomatic/pkg/usr/doc/mathomatic-16.0.5 install -m 0644 doc/* /builds/original/ap/mathomatic/pkg/usr/doc/mathomatic-16.0.5/html install -m 0644 *.pdf /builds/original/ap/mathomatic/pkg/usr/doc/mathomatic-16.0.5 install: cannot stat '*.pdf': No such file or directory make: [docinstall] Error 1 (ignored) install -m 0644 tests/* /builds/original/ap/mathomatic/pkg/usr/doc/mathomatic-16.0.5/tests install -m 0644 examples/* /builds/original/ap/mathomatic/pkg/usr/doc/mathomatic-16.0.5/examples Mathomatic is installed. install -d /builds/original/ap/mathomatic/pkg/usr/share/mathomatic install -d /builds/original/ap/mathomatic/pkg/usr/share/mathomatic/m4 echo '#!/bin/sh' >/builds/original/ap/mathomatic/pkg/usr/bin/matho echo '# Shell script to run Mathomatic with the GNU m4 preprocessor.' >>/builds/original/ap/mathomatic/pkg/usr/bin/matho echo '# This allows entry of many standard math functions.' >>/builds/original/ap/mathomatic/pkg/usr/bin/matho echo '#' >>/builds/original/ap/mathomatic/pkg/usr/bin/matho echo '# Usage: matho [ input_files ]' >>/builds/original/ap/mathomatic/pkg/usr/bin/matho echo >>/builds/original/ap/mathomatic/pkg/usr/bin/matho echo 'if ! m4 --version >/dev/null' >>/builds/original/ap/mathomatic/pkg/usr/bin/matho echo 'then' >>/builds/original/ap/mathomatic/pkg/usr/bin/matho echo ' echo The m4 package is not installed. GNU m4 is required to run m4 Mathomatic.' >>/builds/original/ap/mathomatic/pkg/usr/bin/matho echo ' exit 1' >>/builds/original/ap/mathomatic/pkg/usr/bin/matho echo 'fi' >>/builds/original/ap/mathomatic/pkg/usr/bin/matho echo >>/builds/original/ap/mathomatic/pkg/usr/bin/matho echo 'm4 -eP -- /usr/share/mathomatic/m4/functions.m4 "$@" - | mathomatic -ru -s-1' >>/builds/original/ap/mathomatic/pkg/usr/bin/matho chmod 0755 /builds/original/ap/mathomatic/pkg/usr/bin/matho install m4/rmath /builds/original/ap/mathomatic/pkg/usr/bin install -m 0644 rmath.1 /builds/original/ap/mathomatic/pkg/usr/man/man1 cd /builds/original/ap/mathomatic/pkg/usr/man/man1 && ln -sf rmath.1 matho.1 install -m 0644 m4/functions.m4 m4/degrees.m4 m4/gradians.m4 /builds/original/ap/mathomatic/pkg/usr/share/mathomatic/m4 m4 Mathomatic install completed. make: Entering directory `/builds/salix/ap/mathomatic/src/mathomatic-16.0.5/primes' cc -O2 -march=armv5te matho-primes.c -lncurses -lm -o matho-primes matho-primes.c:80:2: warning: #warning "long double number of digits precision is less than 18, probably meaning matho-primes is double precision only." [-Wcpp] matho-primes.c:81:2: warning: #warning "Due to the above floating point warning, more testing or compiling with -DUSE_DOUBLES is recommended." [-Wcpp] cc -O2 -march=armv5te matho-pascal.c -lncurses -lm -o matho-pascal cc -O2 -march=armv5te -c -o matho-sumsq.o matho-sumsq.c cc -O2 -march=armv5te -c -o lsqrt.o lsqrt.c cc -O2 -march=armv5te matho-sumsq.o lsqrt.o -lncurses -lm -o matho-sumsq Prime Number Tools successfully created. make: Leaving directory `/builds/salix/ap/mathomatic/src/mathomatic-16.0.5/primes' make: Entering directory `/builds/salix/ap/mathomatic/src/mathomatic-16.0.5/primes' Testing basic functionality of matho-primes: time -p ./matho-primes 10000000000000 10000000300000 twin >test.out && diff -u --strip-trailing-cr twins.out test.out real 1.42 user 1.40 sys 0.00 Small primes test passed. make: Leaving directory `/builds/salix/ap/mathomatic/src/mathomatic-16.0.5/primes' make: Entering directory `/builds/salix/ap/mathomatic/src/mathomatic-16.0.5/primes' install -d /builds/original/ap/mathomatic/pkg/usr/bin install -d /builds/original/ap/mathomatic/pkg/usr/man/man1 install matho-primes matho-pascal matho-sumsq primorial matho-mult matho-sum /builds/original/ap/mathomatic/pkg/usr/bin install -m 0644 matho-primes.1 matho-pascal.1 matho-sumsq.1 primorial.1 matho-mult.1 matho-sum.1 /builds/original/ap/mathomatic/pkg/usr/man/man1 The Prime Number Tools are installed. make: Leaving directory `/builds/salix/ap/mathomatic/src/mathomatic-16.0.5/primes' /builds/original/ap/mathomatic/pkg: total 8 drwxr-xr-x 2 root root 4096 Mar 2 22:33 install drwxr-xr-x 7 root root 4096 Mar 2 22:33 usr /builds/original/ap/mathomatic/pkg/install: total 4 -rw-r--r-- 1 root root 646 Mar 2 22:33 slack-desc /builds/original/ap/mathomatic/pkg/usr: total 20 drwxr-xr-x 2 root root 4096 Mar 2 22:33 bin drwxr-xr-x 3 root root 4096 Mar 2 22:33 doc drwxr-xr-x 3 root root 4096 Mar 2 22:33 man drwxr-xr-x 6 root root 4096 Mar 2 22:33 share drwxr-xr-x 3 root root 4096 Mar 2 22:31 src /builds/original/ap/mathomatic/pkg/usr/bin: total 324 -rwxr-xr-x 1 root root 369 Mar 2 22:33 matho -rwxr-xr-x 1 root root 702 Mar 2 22:33 matho-mult -rwxr-xr-x 1 root root 6900 Mar 2 22:33 matho-pascal -rwxr-xr-x 1 root root 14500 Mar 2 22:33 matho-primes -rwxr-xr-x 1 root root 540 Mar 2 22:33 matho-sum -rwxr-xr-x 1 root root 6508 Mar 2 22:33 matho-sumsq -rwxr-xr-x 1 root root 273344 Mar 2 22:33 mathomatic -rwxr-xr-x 1 root root 1037 Mar 2 22:33 primorial -rwxr-xr-x 1 root root 520 Mar 2 22:33 rmath /builds/original/ap/mathomatic/pkg/usr/doc: total 4 drwxr-xr-x 5 root root 4096 Mar 2 22:33 mathomatic-16.0.5 /builds/original/ap/mathomatic/pkg/usr/doc/mathomatic-16.0.5: total 88 -rw-r--r-- 1 root root 1406 Mar 2 22:33 AUTHORS -rw-r--r-- 1 root root 26530 Mar 2 22:33 COPYING -rw-r--r-- 1 root root 21609 Mar 2 22:33 NEWS -rw-r--r-- 1 root root 15371 Mar 2 22:33 README.txt -rw-r--r-- 1 root root 7 Mar 2 22:33 VERSION drwxr-xr-x 2 root root 4096 Mar 2 22:33 examples drwxr-xr-x 2 root root 4096 Mar 2 22:33 html drwxr-xr-x 2 root root 4096 Mar 2 22:33 tests /builds/original/ap/mathomatic/pkg/usr/doc/mathomatic-16.0.5/examples: total 48 -rw-r--r-- 1 root root 1838 Mar 2 22:33 README.txt -rw-r--r-- 1 root root 469 Mar 2 22:33 compile.limits -rw-r--r-- 1 root root 426 Mar 2 22:33 compile.roots -rw-r--r-- 1 root root 836 Mar 2 22:33 fact.c -rw-r--r-- 1 root root 621 Mar 2 22:33 fact.py -rw-r--r-- 1 root root 744 Mar 2 22:33 factorial -rw-r--r-- 1 root root 315 Mar 2 22:33 intfact.c -rw-r--r-- 1 root root 5280 Mar 2 22:33 limits.c -rw-r--r-- 1 root root 5275 Mar 2 22:33 roots.c -rw-r--r-- 1 root root 1453 Mar 2 22:33 testprimes /builds/original/ap/mathomatic/pkg/usr/doc/mathomatic-16.0.5/html: total 256 -rw-r--r-- 1 root root 775 Mar 2 22:33 README.txt -rw-r--r-- 1 root root 96459 Mar 2 22:33 am.html -rw-r--r-- 1 root root 1062 Mar 2 22:33 doc.css -rw-r--r-- 1 root root 318 Mar 2 22:33 favicon.ico -rw-r--r-- 1 root root 24927 Mar 2 22:33 fdl-1.3-standalone.html -rw-r--r-- 1 root root 1748 Mar 2 22:33 gnu-fdl.png -rw-r--r-- 1 root root 893 Mar 2 22:33 greenfade.png -rw-r--r-- 1 root root 3648 Mar 2 22:33 index.html -rw-r--r-- 1 root root 1174 Mar 2 22:33 led_circle_green.png -rw-r--r-- 1 root root 29424 Mar 2 22:33 manual.html -rw-r--r-- 1 root root 2131 Mar 2 22:33 matho-mult.1.html -rw-r--r-- 1 root root 2454 Mar 2 22:33 matho-pascal.1.html -rw-r--r-- 1 root root 5237 Mar 2 22:33 matho-primes.1.html -rw-r--r-- 1 root root 2115 Mar 2 22:33 matho-sum.1.html -rw-r--r-- 1 root root 2646 Mar 2 22:33 matho-sumsq.1.html -rw-r--r-- 1 root root 10550 Mar 2 22:33 mathomatic.1.html -rw-r--r-- 1 root root 189 Mar 2 22:33 mathomatic16x16.png -rw-r--r-- 1 root root 2902 Mar 2 22:33 open_book_nae_02.png -rw-r--r-- 1 root root 2254 Mar 2 22:33 primorial.1.html -rw-r--r-- 1 root root 8628 Mar 2 22:33 quickrefcard.html -rw-r--r-- 1 root root 6317 Mar 2 22:33 rmath.1.html /builds/original/ap/mathomatic/pkg/usr/doc/mathomatic-16.0.5/tests: total 316 -rw-r--r-- 1 root root 2349 Mar 2 22:33 README.txt -rw-r--r-- 1 root root 1299 Mar 2 22:33 all.in -rw-r--r-- 1 root root 127189 Mar 2 22:33 all.out -rw-r--r-- 1 root root 1332 Mar 2 22:33 batman_gnuplot_bug.in -rw-r--r-- 1 root root 794 Mar 2 22:33 batman_plot -rw-r--r-- 1 root root 425 Mar 2 22:33 circles.in -rw-r--r-- 1 root root 363 Mar 2 22:33 collatz.in -rw-r--r-- 1 root root 1389 Mar 2 22:33 cubic.in -rw-r--r-- 1 root root 1161 Mar 2 22:33 cubic2.in -rw-r--r-- 1 root root 395 Mar 2 22:33 demo -rw-r--r-- 1 root root 1430 Mar 2 22:33 demo.in -rw-r--r-- 1 root root 1326 Mar 2 22:33 demo_sub -rw-r--r-- 1 root root 549 Mar 2 22:33 distance.in -rw-r--r-- 1 root root 555 Mar 2 22:33 electronics.in -rw-r--r-- 1 root root 594 Mar 2 22:33 ellipse.in -rw-r--r-- 1 root root 2388 Mar 2 22:33 examples.in -rw-r--r-- 1 root root 1156 Mar 2 22:33 fibonacci.in -rw-r--r-- 1 root root 971 Mar 2 22:33 finance.in -rw-r--r-- 1 root root 596 Mar 2 22:33 fix1.in -rw-r--r-- 1 root root 373 Mar 2 22:33 fix2.in -rw-r--r-- 1 root root 202 Mar 2 22:33 fix5.in -rw-r--r-- 1 root root 383 Mar 2 22:33 fix7.in -rw-r--r-- 1 root root 287 Mar 2 22:33 fix8.in -rw-r--r-- 1 root root 238 Mar 2 22:33 fix9.in -rw-r--r-- 1 root root 433 Mar 2 22:33 fraction.in -rw-r--r-- 1 root root 232 Mar 2 22:33 heart.in -rw-r--r-- 1 root root 1857 Mar 2 22:33 heron.in -rw-r--r-- 1 root root 1853 Mar 2 22:33 how_limit_works.in -rw-r--r-- 1 root root 505 Mar 2 22:33 hypertrig.in -rw-r--r-- 1 root root 1010 Mar 2 22:33 limits.in -rw-r--r-- 1 root root 713 Mar 2 22:33 linear.in -rw-r--r-- 1 root root 849 Mar 2 22:33 pie.in -rw-r--r-- 1 root root 659 Mar 2 22:33 points.in -rw-r--r-- 1 root root 753 Mar 2 22:33 poly.in -rw-r--r-- 1 root root 507 Mar 2 22:33 pyth3d.in -rw-r--r-- 1 root root 1395 Mar 2 22:33 quadratic.in -rw-r--r-- 1 root root 1574 Mar 2 22:33 quartic.in -rw-r--r-- 1 root root 679 Mar 2 22:33 radius.in -rw-r--r-- 1 root root 1014 Mar 2 22:33 simplify.in -rw-r--r-- 1 root root 958 Mar 2 22:33 t -rw-r--r-- 1 root root 121 Mar 2 22:33 test.in -rw-r--r-- 1 root root 143 Mar 2 22:33 test1.in -rw-r--r-- 1 root root 180 Mar 2 22:33 test2.in -rw-r--r-- 1 root root 120 Mar 2 22:33 test3.in -rw-r--r-- 1 root root 675 Mar 2 22:33 test6.in -rw-r--r-- 1 root root 718 Mar 2 22:33 trig -rw-r--r-- 1 root root 752 Mar 2 22:33 trig.in /builds/original/ap/mathomatic/pkg/usr/man: total 4 drwxr-xr-x 2 root root 4096 Mar 2 22:33 man1 /builds/original/ap/mathomatic/pkg/usr/man/man1: total 32 -rw-r--r-- 1 root root 497 Mar 2 22:33 matho-mult.1.gz -rw-r--r-- 1 root root 556 Mar 2 22:33 matho-pascal.1.gz -rw-r--r-- 1 root root 1617 Mar 2 22:33 matho-primes.1.gz -rw-r--r-- 1 root root 492 Mar 2 22:33 matho-sum.1.gz -rw-r--r-- 1 root root 719 Mar 2 22:33 matho-sumsq.1.gz lrwxrwxrwx 1 root root 10 Mar 2 22:33 matho.1.gz -> rmath.1.gz -rw-r--r-- 1 root root 3181 Mar 2 22:33 mathomatic.1.gz -rw-r--r-- 1 root root 487 Mar 2 22:33 primorial.1.gz -rw-r--r-- 1 root root 1731 Mar 2 22:33 rmath.1.gz /builds/original/ap/mathomatic/pkg/usr/share: total 16 drwxr-xr-x 2 root root 4096 Mar 2 22:33 applications drwxr-xr-x 3 root root 4096 Mar 2 22:33 icons drwxr-xr-x 3 root root 4096 Mar 2 22:33 mathomatic drwxr-xr-x 2 root root 4096 Mar 2 22:33 pixmaps /builds/original/ap/mathomatic/pkg/usr/share/applications: total 4 -rw-r--r-- 1 root root 241 Mar 2 22:33 mathomatic.desktop /builds/original/ap/mathomatic/pkg/usr/share/icons: total 4 drwxr-xr-x 3 root root 4096 Mar 2 22:33 hicolor /builds/original/ap/mathomatic/pkg/usr/share/icons/hicolor: total 4 drwxr-xr-x 3 root root 4096 Mar 2 22:33 48x48 /builds/original/ap/mathomatic/pkg/usr/share/icons/hicolor/48x48: total 4 drwxr-xr-x 2 root root 4096 Mar 2 22:33 apps /builds/original/ap/mathomatic/pkg/usr/share/icons/hicolor/48x48/apps: total 4 -rw-r--r-- 1 root root 2952 Mar 2 22:33 mathomatic.png /builds/original/ap/mathomatic/pkg/usr/share/mathomatic: total 4 drwxr-xr-x 2 root root 4096 Mar 2 22:33 m4 /builds/original/ap/mathomatic/pkg/usr/share/mathomatic/m4: total 12 -rw-r--r-- 1 root root 949 Mar 2 22:33 degrees.m4 -rw-r--r-- 1 root root 3049 Mar 2 22:33 functions.m4 -rw-r--r-- 1 root root 953 Mar 2 22:33 gradians.m4 /builds/original/ap/mathomatic/pkg/usr/share/pixmaps: total 8 -rw-r--r-- 1 root root 2952 Mar 2 22:33 mathomatic.png -rw-r--r-- 1 root root 1319 Mar 2 22:33 mathomatic.xpm /builds/original/ap/mathomatic/pkg/usr/src: total 4 drwxr-xr-x 2 root root 4096 Mar 2 22:33 mathomatic-16.0.5 /builds/original/ap/mathomatic/pkg/usr/src/mathomatic-16.0.5: total 4 -rw-r--r-- 1 root root 1901 Mar 2 22:33 SLKBUILD Slackware package maker, version 3.14159. Searching for symbolic links: usr/man/man1/matho.1.gz -> rmath.1.gz Making symbolic link creation script: ( cd usr/man/man1 ; rm -rf matho.1.gz ) ( cd usr/man/man1 ; ln -sf rmath.1.gz matho.1.gz ) It is recommended that you make these lines your new installation script. Would you like to make this stuff the install script for this package and remove the symbolic links ([y]es, [n]o)? y Removing symbolic links: removed './usr/man/man1/matho.1.gz' Creating your new ./install/doinst.sh... This next step is optional - you can set the directories in your package to some sane permissions. If any of the directories in your package have special permissions, then DO NOT reset them here! Would you like to reset all directory permissions to 755 (drwxr-xr-x) and directory ownerships to root.root ([y]es, [n]o)? n Creating Slackware package: /builds/original/ap/mathomatic/mathomatic-16.0.5-arm-1rl.txz ./ usr/ usr/man/ usr/man/man1/ usr/man/man1/matho-sumsq.1.gz usr/man/man1/rmath.1.gz usr/man/man1/matho-primes.1.gz usr/man/man1/matho-sum.1.gz usr/man/man1/matho-pascal.1.gz usr/man/man1/mathomatic.1.gz usr/man/man1/primorial.1.gz usr/man/man1/matho-mult.1.gz usr/src/ usr/src/mathomatic-16.0.5/ usr/src/mathomatic-16.0.5/SLKBUILD usr/bin/ usr/bin/primorial usr/bin/matho-pascal usr/bin/mathomatic usr/bin/rmath usr/bin/matho-mult usr/bin/matho usr/bin/matho-sum usr/bin/matho-sumsq usr/bin/matho-primes usr/share/ usr/share/mathomatic/ usr/share/mathomatic/m4/ usr/share/mathomatic/m4/degrees.m4 usr/share/mathomatic/m4/gradians.m4 usr/share/mathomatic/m4/functions.m4 usr/share/applications/ usr/share/applications/mathomatic.desktop usr/share/pixmaps/ usr/share/pixmaps/mathomatic.xpm usr/share/pixmaps/mathomatic.png usr/share/icons/ usr/share/icons/hicolor/ usr/share/icons/hicolor/48x48/ usr/share/icons/hicolor/48x48/apps/ usr/share/icons/hicolor/48x48/apps/mathomatic.png usr/doc/ usr/doc/mathomatic-16.0.5/ usr/doc/mathomatic-16.0.5/README.txt usr/doc/mathomatic-16.0.5/AUTHORS usr/doc/mathomatic-16.0.5/NEWS usr/doc/mathomatic-16.0.5/tests/ usr/doc/mathomatic-16.0.5/tests/how_limit_works.in usr/doc/mathomatic-16.0.5/tests/README.txt usr/doc/mathomatic-16.0.5/tests/pie.in usr/doc/mathomatic-16.0.5/tests/radius.in usr/doc/mathomatic-16.0.5/tests/test3.in usr/doc/mathomatic-16.0.5/tests/finance.in usr/doc/mathomatic-16.0.5/tests/cubic2.in usr/doc/mathomatic-16.0.5/tests/simplify.in usr/doc/mathomatic-16.0.5/tests/fix2.in usr/doc/mathomatic-16.0.5/tests/quartic.in usr/doc/mathomatic-16.0.5/tests/trig usr/doc/mathomatic-16.0.5/tests/demo usr/doc/mathomatic-16.0.5/tests/fix5.in usr/doc/mathomatic-16.0.5/tests/cubic.in usr/doc/mathomatic-16.0.5/tests/distance.in usr/doc/mathomatic-16.0.5/tests/t usr/doc/mathomatic-16.0.5/tests/fix7.in usr/doc/mathomatic-16.0.5/tests/electronics.in usr/doc/mathomatic-16.0.5/tests/hypertrig.in usr/doc/mathomatic-16.0.5/tests/fibonacci.in usr/doc/mathomatic-16.0.5/tests/circles.in usr/doc/mathomatic-16.0.5/tests/ellipse.in usr/doc/mathomatic-16.0.5/tests/all.out usr/doc/mathomatic-16.0.5/tests/batman_gnuplot_bug.in usr/doc/mathomatic-16.0.5/tests/fraction.in usr/doc/mathomatic-16.0.5/tests/test.in usr/doc/mathomatic-16.0.5/tests/fix9.in usr/doc/mathomatic-16.0.5/tests/linear.in usr/doc/mathomatic-16.0.5/tests/collatz.in usr/doc/mathomatic-16.0.5/tests/pyth3d.in usr/doc/mathomatic-16.0.5/tests/examples.in usr/doc/mathomatic-16.0.5/tests/batman_plot usr/doc/mathomatic-16.0.5/tests/poly.in usr/doc/mathomatic-16.0.5/tests/limits.in usr/doc/mathomatic-16.0.5/tests/test2.in usr/doc/mathomatic-16.0.5/tests/heart.in usr/doc/mathomatic-16.0.5/tests/trig.in usr/doc/mathomatic-16.0.5/tests/demo_sub usr/doc/mathomatic-16.0.5/tests/fix1.in usr/doc/mathomatic-16.0.5/tests/all.in usr/doc/mathomatic-16.0.5/tests/quadratic.in usr/doc/mathomatic-16.0.5/tests/fix8.in usr/doc/mathomatic-16.0.5/tests/points.in usr/doc/mathomatic-16.0.5/tests/test1.in usr/doc/mathomatic-16.0.5/tests/heron.in usr/doc/mathomatic-16.0.5/tests/demo.in usr/doc/mathomatic-16.0.5/tests/test6.in usr/doc/mathomatic-16.0.5/COPYING usr/doc/mathomatic-16.0.5/html/ usr/doc/mathomatic-16.0.5/html/rmath.1.html usr/doc/mathomatic-16.0.5/html/README.txt usr/doc/mathomatic-16.0.5/html/greenfade.png usr/doc/mathomatic-16.0.5/html/matho-sumsq.1.html usr/doc/mathomatic-16.0.5/html/matho-sum.1.html usr/doc/mathomatic-16.0.5/html/manual.html usr/doc/mathomatic-16.0.5/html/primorial.1.html usr/doc/mathomatic-16.0.5/html/matho-pascal.1.html usr/doc/mathomatic-16.0.5/html/am.html usr/doc/mathomatic-16.0.5/html/doc.css usr/doc/mathomatic-16.0.5/html/open_book_nae_02.png usr/doc/mathomatic-16.0.5/html/quickrefcard.html usr/doc/mathomatic-16.0.5/html/led_circle_green.png usr/doc/mathomatic-16.0.5/html/favicon.ico usr/doc/mathomatic-16.0.5/html/matho-mult.1.html usr/doc/mathomatic-16.0.5/html/matho-primes.1.html usr/doc/mathomatic-16.0.5/html/mathomatic16x16.png usr/doc/mathomatic-16.0.5/html/gnu-fdl.png usr/doc/mathomatic-16.0.5/html/index.html usr/doc/mathomatic-16.0.5/html/mathomatic.1.html usr/doc/mathomatic-16.0.5/html/fdl-1.3-standalone.html usr/doc/mathomatic-16.0.5/VERSION usr/doc/mathomatic-16.0.5/examples/ usr/doc/mathomatic-16.0.5/examples/README.txt usr/doc/mathomatic-16.0.5/examples/factorial usr/doc/mathomatic-16.0.5/examples/fact.py usr/doc/mathomatic-16.0.5/examples/limits.c usr/doc/mathomatic-16.0.5/examples/compile.roots usr/doc/mathomatic-16.0.5/examples/roots.c usr/doc/mathomatic-16.0.5/examples/intfact.c usr/doc/mathomatic-16.0.5/examples/compile.limits usr/doc/mathomatic-16.0.5/examples/fact.c usr/doc/mathomatic-16.0.5/examples/testprimes install/ install/doinst.sh install/slack-desc Slackware package /builds/original/ap/mathomatic/mathomatic-16.0.5-arm-1rl.txz created. Package has been built. Cleaning pkg and src directories