diff options
author | pav <pav@FreeBSD.org> | 2006-09-01 02:50:03 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2006-09-01 02:50:03 +0800 |
commit | b639f52804dcd6e1f898084787d9b5ba8c49902e (patch) | |
tree | 4cfc2655fe484de7f886324d61ce20b24bd19f52 /math/liborigin | |
parent | 5f4fe9cde7d1d7459f8e35a255509cfdd7839619 (diff) | |
download | freebsd-ports-gnome-b639f52804dcd6e1f898084787d9b5ba8c49902e.tar.gz freebsd-ports-gnome-b639f52804dcd6e1f898084787d9b5ba8c49902e.tar.zst freebsd-ports-gnome-b639f52804dcd6e1f898084787d9b5ba8c49902e.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>
Diffstat (limited to 'math/liborigin')
-rw-r--r-- | math/liborigin/Makefile | 28 | ||||
-rw-r--r-- | math/liborigin/distinfo | 3 | ||||
-rw-r--r-- | math/liborigin/pkg-descr | 11 |
3 files changed, 42 insertions, 0 deletions
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/ |