pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/math/ordCalc ordCalc is a program for interactively de...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/d3ba94668027
branches:  trunk
changeset: 399354:d3ba94668027
user:      is <is%pkgsrc.org@localhost>
date:      Fri Sep 18 14:09:26 2009 +0000

description:
ordCalc is a program for interactively dealing with ordinals (generalized
integers).

diffstat:

 math/ordCalc/DESCR            |   9 +++++++++
 math/ordCalc/Makefile         |  40 ++++++++++++++++++++++++++++++++++++++++
 math/ordCalc/PLIST            |   5 +++++
 math/ordCalc/distinfo         |   7 +++++++
 math/ordCalc/patches/patch-aa |  13 +++++++++++++
 math/ordCalc/patches/patch-ab |  13 +++++++++++++
 6 files changed, 87 insertions(+), 0 deletions(-)

diffs (111 lines):

diff -r 77a5dbe8cf2b -r d3ba94668027 math/ordCalc/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/math/ordCalc/DESCR        Fri Sep 18 14:09:26 2009 +0000
@@ -0,0 +1,9 @@
+                                OrdCalc
+        An interactive tool to understand the recursive ordinals
+
+'ord' is a program for understanding the recursive ordinals.
+It has a command line interpreter resembling command line calculators.
+
+See 'ordCalc.pdf' for a brief description of how to use the interpreter.
+See 'ordinal.pdf' for a description of the structure of the program and the
+theory on which it is based.
diff -r 77a5dbe8cf2b -r d3ba94668027 math/ordCalc/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/math/ordCalc/Makefile     Fri Sep 18 14:09:26 2009 +0000
@@ -0,0 +1,40 @@
+# $NetBSD: Makefile,v 1.1.1.1 2009/09/18 14:09:26 is Exp $
+#
+
+ORDCALCVER=    0.1
+PKGNAME=       ordCalc-${ORDCALCVER}
+DISTNAME=      ordCalc_${ORDCALCVER}
+CATEGORIES=    math
+MASTER_SITES=  http://mtnmath.com/ord/
+EXTRACT_SUFX=  .tar.bz2
+
+MAINTAINER=    is%NetBSD.org@localhost
+HOMEPAGE=      http://mtnmath.com/ord/
+COMMENT=       Ordinal arithmetic calculator and research tool
+LICENSE=       gnu-gpl-v2
+
+USE_LANGUAGES= c++
+USE_TOOLS+=    bash bison flex gmake
+USE_LIBTOOL=   yes
+
+PKG_DESTDIR_SUPPORT= user-destdir
+
+BUILD_TARGET=  EXE
+
+DOCS=           ${DESTDIR}${PREFIX}/share/doc/ordCalc
+
+AUTO_MKDIRS=yes
+
+do-install:
+       ${INSTALL_PROGRAM} ${WRKSRC}/src/ord ${DESTDIR}${PREFIX}/bin
+       ${INSTALL_DATA} ${WRKSRC}/README ${DOCS}
+       ${INSTALL_DATA} ${WRKSRC}/ordCalc.pdf ${DOCS}
+       ${INSTALL_DATA} ${WRKSRC}/ordinal.pdf ${DOCS}
+
+
+
+.include "../../devel/gmp/buildlink3.mk"
+.include "../../devel/ncurses/buildlink3.mk"
+.include "../../devel/readline/buildlink3.mk"
+
+.include "../../mk/bsd.pkg.mk"
diff -r 77a5dbe8cf2b -r d3ba94668027 math/ordCalc/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/math/ordCalc/PLIST        Fri Sep 18 14:09:26 2009 +0000
@@ -0,0 +1,5 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2009/09/18 14:09:26 is Exp $
+bin/ord
+share/doc/ordCalc/README
+share/doc/ordCalc/ordCalc.pdf
+share/doc/ordCalc/ordinal.pdf
diff -r 77a5dbe8cf2b -r d3ba94668027 math/ordCalc/distinfo
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/math/ordCalc/distinfo     Fri Sep 18 14:09:26 2009 +0000
@@ -0,0 +1,7 @@
+$NetBSD: distinfo,v 1.1.1.1 2009/09/18 14:09:26 is Exp $
+
+SHA1 (ordCalc_0.1.tar.bz2) = a9a2978830b948b7f12ee247593ba94775a87672
+RMD160 (ordCalc_0.1.tar.bz2) = 556b6b94e98705fed9287d2c35a7e640b9c0274b
+Size (ordCalc_0.1.tar.bz2) = 516210 bytes
+SHA1 (patch-aa) = 903e1b6255f2247f407b7b16ff46d96470236dac
+SHA1 (patch-ab) = 0adfeaa3a1018d3197a26480e9a736e7d9da962d
diff -r 77a5dbe8cf2b -r d3ba94668027 math/ordCalc/patches/patch-aa
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/math/ordCalc/patches/patch-aa     Fri Sep 18 14:09:26 2009 +0000
@@ -0,0 +1,13 @@
+$NetBSD: patch-aa,v 1.1.1.1 2009/09/18 14:09:26 is Exp $
+
+--- src/Makefile.orig  2009-09-16 11:00:03.000000000 -0700
++++ src/Makefile
+@@ -21,7 +21,7 @@ SCRIPTS = update.sh srTest.sh cmdIntfcTe
+ ALL_FILES = ${SRC} ${HDRS} ${SCRIPTS} Makefile
+ 
+ ord : ${OBJS}
+-      g++ -g ${OBJS} -lgmp -lgmpxx -lreadline -lncurses \
++      ${LIBTOOL} --mode=link ${CXX} -g ${OBJS} -lgmp -lgmpxx -lreadline -lncurses \
+               -o ord 
+ 
+ DOC : ord
diff -r 77a5dbe8cf2b -r d3ba94668027 math/ordCalc/patches/patch-ab
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/math/ordCalc/patches/patch-ab     Fri Sep 18 14:09:26 2009 +0000
@@ -0,0 +1,13 @@
+$NetBSD: patch-ab,v 1.1.1.1 2009/09/18 14:09:26 is Exp $
+
+--- Makefile.orig      2009-09-14 21:59:55.000000000 -0700
++++ Makefile
+@@ -4,7 +4,7 @@ TEST : 
+       cd src ; make TEST
+ 
+ EXE :
+-      cd src : make ord
++      cd src ; make ord
+ 
+ ALL :
+       cd src ; make ALL



Home | Main Index | Thread Index | Old Index