diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2006-08-31 18:50:03 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2006-08-31 18:50:03 +0000 |
commit | 8f0aefc2018441e61e116b83c02b2da5b597ec12 (patch) | |
tree | c9fb5457f00db7c14693fb87efc0d591d45d4976 /math | |
parent | 81799e350f6d7d8e904453df881e45ada219c27c (diff) | |
download | ports-8f0aefc2018441e61e116b83c02b2da5b597ec12.tar.gz ports-8f0aefc2018441e61e116b83c02b2da5b597ec12.zip |
liborigin and opj2dat - library and tool for reading
OriginLab OPJ project files
Usage :
$ ./opj2dat <project.opj>
FEATURES :
* reads any worksheets with all columns
* supports 4.1, 5.0, 6.0, 6.1, 7.0, 7.5 projects
WWW: http://sourceforge.net/projects/liborigin/
PR: ports/102619
Submitted by: Max Brazhnikov <makc@issp.ac.ru>
Notes
Notes:
svn path=/head/; revision=171749
Diffstat (limited to 'math')
-rw-r--r-- | math/Makefile | 1 | ||||
-rw-r--r-- | math/liborigin/Makefile | 28 | ||||
-rw-r--r-- | math/liborigin/distinfo | 3 | ||||
-rw-r--r-- | math/liborigin/pkg-descr | 11 |
4 files changed, 43 insertions, 0 deletions
diff --git a/math/Makefile b/math/Makefile index 6d985c504d1b..22ea52484084 100644 --- a/math/Makefile +++ b/math/Makefile @@ -121,6 +121,7 @@ SUBDIR += libjbigi SUBDIR += libmath++ SUBDIR += libneural + SUBDIR += liborigin SUBDIR += libqalculate SUBDIR += libranlib SUBDIR += libtommath diff --git a/math/liborigin/Makefile b/math/liborigin/Makefile new file mode 100644 index 000000000000..c7389446c326 --- /dev/null +++ b/math/liborigin/Makefile @@ -0,0 +1,28 @@ +# New ports collection makefile for: liborigin +# Date created: 2006-08-26 +# Whom: Max Brazhnikov <makc@issp.ac.ru> +# +# $FreeBSD$ +# + +PORTNAME= liborigin +PORTVERSION= 20060616 +CATEGORIES= math +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} + +MAINTAINER= makc@issp.ac.ru +COMMENT= Tools for importing OriginLab .OPJ files + +PLIST_FILES= bin/opj2dat \ + lib/liborigin.so \ + lib/liborigin.so.0 + +USE_LDCONFIG= yes + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/opj2dat ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/liborigin.so ${PREFIX}/lib/liborigin.so.0 + ${LN} -fs ${PREFIX}/lib/liborigin.so.0 ${PREFIX}/lib/liborigin.so + +.include <bsd.port.mk> diff --git a/math/liborigin/distinfo b/math/liborigin/distinfo new file mode 100644 index 000000000000..d3a9d4ff828e --- /dev/null +++ b/math/liborigin/distinfo @@ -0,0 +1,3 @@ +MD5 (liborigin-20060616.tar.gz) = 37cddf26175fb335c77ff448170770c2 +SHA256 (liborigin-20060616.tar.gz) = 9daad51b7bda61ae9acc17eaa3b98761c7a0225eb1822bebe75b54154c03aaf0 +SIZE (liborigin-20060616.tar.gz) = 17643 diff --git a/math/liborigin/pkg-descr b/math/liborigin/pkg-descr new file mode 100644 index 000000000000..1cd927b22ae6 --- /dev/null +++ b/math/liborigin/pkg-descr @@ -0,0 +1,11 @@ +liborigin and opj2dat - library and tool for reading +OriginLab OPJ project files + +Usage : + $ ./opj2dat <project.opj> + +FEATURES : + * reads any worksheets with all columns + * supports 4.1, 5.0, 6.0, 6.1, 7.0, 7.5 projects + +WWW: http://sourceforge.net/projects/liborigin/ |