Date: Fri, 27 Jan 2017 00:14:32 +0000 (UTC) From: Baptiste Daroussin <bapt@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r432541 - in head/math: . libxls Message-ID: <201701270014.v0R0EWvp082850@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bapt Date: Fri Jan 27 00:14:31 2017 New Revision: 432541 URL: https://svnweb.freebsd.org/changeset/ports/432541 Log: Library for parsing Excel (XLS) files, with a sample program for converting Excel files into CSV. WWW: http://libxls.sourceforge.net/ Added: head/math/libxls/ head/math/libxls/Makefile (contents, props changed) head/math/libxls/distinfo (contents, props changed) head/math/libxls/pkg-descr (contents, props changed) head/math/libxls/pkg-plist (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Thu Jan 26 21:50:32 2017 (r432540) +++ head/math/Makefile Fri Jan 27 00:14:31 2017 (r432541) @@ -259,6 +259,7 @@ SUBDIR += librsb SUBDIR += libtommath SUBDIR += libtsnnls + SUBDIR += libxls SUBDIR += linpack SUBDIR += lll_spect SUBDIR += lp_solve Added: head/math/libxls/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/libxls/Makefile Fri Jan 27 00:14:31 2017 (r432541) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= libxls +PORTVERSION= 1.4.0 +CATEGORIES= math devel +MASTER_SITES= SF/${PORTNAME}/ + +MAINTAINER= bapt@FreeBSD.org +COMMENT= Extract Cell Data From Excel xls files + +LICENSE= BSD2CLAUSE + +USES= zip libtool + +GNU_CONFIGURE= yes +INSTALL_TARGET= install-strip +USE_LDCONFIG= yes + +WRKSRC= ${WRKDIR}/${PORTNAME} + +.include <bsd.port.mk> Added: head/math/libxls/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/libxls/distinfo Fri Jan 27 00:14:31 2017 (r432541) @@ -0,0 +1,3 @@ +TIMESTAMP = 1485474888 +SHA256 (libxls-1.4.0.zip) = d3baea458a511d9b587a367528fa2a7fef410113ac9f6359834469b8f8d10dbd +SIZE (libxls-1.4.0.zip) = 428782 Added: head/math/libxls/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/libxls/pkg-descr Fri Jan 27 00:14:31 2017 (r432541) @@ -0,0 +1,4 @@ +Library for parsing Excel (XLS) files, with a sample program for converting +Excel files into CSV. + +WWW: http://libxls.sourceforge.net/ Added: head/math/libxls/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/libxls/pkg-plist Fri Jan 27 00:14:31 2017 (r432541) @@ -0,0 +1,12 @@ +bin/xls2csv +include/libxls/brdb.c.h +include/libxls/brdb.h +include/libxls/ole.h +include/libxls/xlsstruct.h +include/libxls/xlstool.h +include/libxls/xlstypes.h +include/xls.h +lib/libxlsreader.a +lib/libxlsreader.so +lib/libxlsreader.so.1 +lib/libxlsreader.so.1.2.1
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201701270014.v0R0EWvp082850>