From ed6a99bbf8762e5d05044e6944dcbd8058d92216 Mon Sep 17 00:00:00 2001 From: Kyle Guinn Date: Fri, 24 Jan 2014 20:50:04 -0600 Subject: academic/cxsparse: Renamed and moved from libraries. Signed-off-by: Robby Workman --- academic/cxsparse/README | 4 + academic/cxsparse/autotoolize.diff | 325 ++++++++++++++++++++++++++++++++++ academic/cxsparse/cxsparse.SlackBuild | 107 +++++++++++ academic/cxsparse/cxsparse.info | 10 ++ academic/cxsparse/slack-desc | 19 ++ 5 files changed, 465 insertions(+) create mode 100644 academic/cxsparse/README create mode 100644 academic/cxsparse/autotoolize.diff create mode 100644 academic/cxsparse/cxsparse.SlackBuild create mode 100644 academic/cxsparse/cxsparse.info create mode 100644 academic/cxsparse/slack-desc (limited to 'academic/cxsparse') diff --git a/academic/cxsparse/README b/academic/cxsparse/README new file mode 100644 index 0000000000..3d959a54c9 --- /dev/null +++ b/academic/cxsparse/README @@ -0,0 +1,4 @@ +CXSparse is an extended version of CSparse, with support for double or +complex matrices, with int or long integers. + +This package is part of SuiteSparse. diff --git a/academic/cxsparse/autotoolize.diff b/academic/cxsparse/autotoolize.diff new file mode 100644 index 0000000000..524c26f0f8 --- /dev/null +++ b/academic/cxsparse/autotoolize.diff @@ -0,0 +1,325 @@ +diff --git a/Demo/Makefile.am b/Demo/Makefile.am +new file mode 100644 +--- /dev/null ++++ b/Demo/Makefile.am +@@ -0,0 +1,131 @@ ++AM_CPPFLAGS = -I$(top_srcdir)/Include $(SUITESPARSECONFIG_CFLAGS) ++LDADD = $(top_builddir)/Source/libcxsparse.la ++ ++noinst_HEADERS = \ ++ cs_demo.h \ ++ cs_ci_demo.h \ ++ cs_cl_demo.h \ ++ cs_di_demo.h \ ++ cs_dl_demo.h ++ ++check_PROGRAMS = \ ++ cs_demo1 \ ++ cs_demo2 \ ++ cs_demo3 \ ++ cs_ci_demo1 \ ++ cs_ci_demo2 \ ++ cs_ci_demo3 \ ++ cs_cl_demo1 \ ++ cs_cl_demo2 \ ++ cs_cl_demo3 \ ++ cs_di_demo1 \ ++ cs_di_demo2 \ ++ cs_di_demo3 \ ++ cs_dl_demo1 \ ++ cs_dl_demo2 \ ++ cs_dl_demo3 \ ++ cs_idemo \ ++ cs_ldemo ++ ++cs_demo1_SOURCES = cs_demo1.c ++cs_demo2_SOURCES = cs_demo2.c cs_demo.c ++cs_demo3_SOURCES = cs_demo3.c cs_demo.c ++cs_ci_demo1_SOURCES = cs_ci_demo1.c ++cs_ci_demo2_SOURCES = cs_ci_demo2.c cs_ci_demo.c ++cs_ci_demo3_SOURCES = cs_ci_demo3.c cs_ci_demo.c ++cs_cl_demo1_SOURCES = cs_cl_demo1.c ++cs_cl_demo2_SOURCES = cs_cl_demo2.c cs_cl_demo.c ++cs_cl_demo3_SOURCES = cs_cl_demo3.c cs_cl_demo.c ++cs_di_demo1_SOURCES = cs_di_demo1.c ++cs_di_demo2_SOURCES = cs_di_demo2.c cs_di_demo.c ++cs_di_demo3_SOURCES = cs_di_demo3.c cs_di_demo.c ++cs_dl_demo1_SOURCES = cs_dl_demo1.c ++cs_dl_demo2_SOURCES = cs_dl_demo2.c cs_dl_demo.c ++cs_dl_demo3_SOURCES = cs_dl_demo3.c cs_dl_demo.c ++ ++cs_idemo_SOURCES = cs_idemo.c ++cs_ldemo_SOURCES = cs_ldemo.c ++cs_ldemo_CPPFLAGS = $(AM_CPPFLAGS) -DCS_LONG ++ ++MATRICES = \ ++ $(top_srcdir)/Matrix/ash219 \ ++ $(top_srcdir)/Matrix/bcsstk01 \ ++ $(top_srcdir)/Matrix/bcsstk16 \ ++ $(top_srcdir)/Matrix/c4 \ ++ $(top_srcdir)/Matrix/c_mbeacxc \ ++ $(top_srcdir)/Matrix/c_west0067 \ ++ $(top_srcdir)/Matrix/fs_183_1 \ ++ $(top_srcdir)/Matrix/lp_afiro \ ++ $(top_srcdir)/Matrix/mbeacxc \ ++ $(top_srcdir)/Matrix/mhd1280b \ ++ $(top_srcdir)/Matrix/neumann \ ++ $(top_srcdir)/Matrix/qc324 \ ++ $(top_srcdir)/Matrix/t1 \ ++ $(top_srcdir)/Matrix/t2 \ ++ $(top_srcdir)/Matrix/t3 \ ++ $(top_srcdir)/Matrix/t4 \ ++ $(top_srcdir)/Matrix/west0067 \ ++ $(top_srcdir)/Matrix/young1c ++ ++check-local: $(check_PROGRAMS) $(MATRICES) ++ -./cs_demo1 < $(top_srcdir)/Matrix/t1 ++ -./cs_demo2 < $(top_srcdir)/Matrix/t1 ++ -./cs_demo2 < $(top_srcdir)/Matrix/fs_183_1 ++ -./cs_demo2 < $(top_srcdir)/Matrix/west0067 ++ -./cs_demo2 < $(top_srcdir)/Matrix/lp_afiro ++ -./cs_demo2 < $(top_srcdir)/Matrix/ash219 ++ -./cs_demo2 < $(top_srcdir)/Matrix/mbeacxc ++ -./cs_demo2 < $(top_srcdir)/Matrix/bcsstk01 ++ -./cs_demo3 < $(top_srcdir)/Matrix/bcsstk01 ++ -./cs_demo2 < $(top_srcdir)/Matrix/bcsstk16 ++ -./cs_demo3 < $(top_srcdir)/Matrix/bcsstk16 ++ -./cs_di_demo1 < $(top_srcdir)/Matrix/t1 ++ -./cs_di_demo2 < $(top_srcdir)/Matrix/t1 ++ -./cs_di_demo2 < $(top_srcdir)/Matrix/fs_183_1 ++ -./cs_di_demo2 < $(top_srcdir)/Matrix/west0067 ++ -./cs_di_demo2 < $(top_srcdir)/Matrix/lp_afiro ++ -./cs_di_demo2 < $(top_srcdir)/Matrix/ash219 ++ -./cs_di_demo2 < $(top_srcdir)/Matrix/mbeacxc ++ -./cs_di_demo2 < $(top_srcdir)/Matrix/bcsstk01 ++ -./cs_di_demo3 < $(top_srcdir)/Matrix/bcsstk01 ++ -./cs_di_demo2 < $(top_srcdir)/Matrix/bcsstk16 ++ -./cs_di_demo3 < $(top_srcdir)/Matrix/bcsstk16 ++ -./cs_dl_demo1 < $(top_srcdir)/Matrix/t1 ++ -./cs_dl_demo2 < $(top_srcdir)/Matrix/t1 ++ -./cs_dl_demo2 < $(top_srcdir)/Matrix/fs_183_1 ++ -./cs_dl_demo2 < $(top_srcdir)/Matrix/west0067 ++ -./cs_dl_demo2 < $(top_srcdir)/Matrix/lp_afiro ++ -./cs_dl_demo2 < $(top_srcdir)/Matrix/ash219 ++ -./cs_dl_demo2 < $(top_srcdir)/Matrix/mbeacxc ++ -./cs_dl_demo2 < $(top_srcdir)/Matrix/bcsstk01 ++ -./cs_dl_demo3 < $(top_srcdir)/Matrix/bcsstk01 ++ -./cs_dl_demo2 < $(top_srcdir)/Matrix/bcsstk16 ++ -./cs_dl_demo3 < $(top_srcdir)/Matrix/bcsstk16 ++ -./cs_ci_demo1 < $(top_srcdir)/Matrix/t2 ++ -./cs_ci_demo2 < $(top_srcdir)/Matrix/t2 ++ -./cs_ci_demo2 < $(top_srcdir)/Matrix/t3 ++ -./cs_ci_demo2 < $(top_srcdir)/Matrix/t4 ++ -./cs_ci_demo2 < $(top_srcdir)/Matrix/c_west0067 ++ -./cs_ci_demo2 < $(top_srcdir)/Matrix/c_mbeacxc ++ -./cs_ci_demo2 < $(top_srcdir)/Matrix/young1c ++ -./cs_ci_demo2 < $(top_srcdir)/Matrix/qc324 ++ -./cs_ci_demo2 < $(top_srcdir)/Matrix/neumann ++ -./cs_ci_demo2 < $(top_srcdir)/Matrix/c4 ++ -./cs_ci_demo3 < $(top_srcdir)/Matrix/c4 ++ -./cs_ci_demo2 < $(top_srcdir)/Matrix/mhd1280b ++ -./cs_ci_demo3 < $(top_srcdir)/Matrix/mhd1280b ++ -./cs_cl_demo1 < $(top_srcdir)/Matrix/t2 ++ -./cs_cl_demo2 < $(top_srcdir)/Matrix/t2 ++ -./cs_cl_demo2 < $(top_srcdir)/Matrix/t3 ++ -./cs_cl_demo2 < $(top_srcdir)/Matrix/t4 ++ -./cs_cl_demo2 < $(top_srcdir)/Matrix/c_west0067 ++ -./cs_cl_demo2 < $(top_srcdir)/Matrix/c_mbeacxc ++ -./cs_cl_demo2 < $(top_srcdir)/Matrix/young1c ++ -./cs_cl_demo2 < $(top_srcdir)/Matrix/qc324 ++ -./cs_cl_demo2 < $(top_srcdir)/Matrix/neumann ++ -./cs_cl_demo2 < $(top_srcdir)/Matrix/c4 ++ -./cs_cl_demo3 < $(top_srcdir)/Matrix/c4 ++ -./cs_cl_demo2 < $(top_srcdir)/Matrix/mhd1280b ++ -./cs_cl_demo3 < $(top_srcdir)/Matrix/mhd1280b ++ -./cs_idemo < $(top_srcdir)/Matrix/t2 ++ -./cs_ldemo < $(top_srcdir)/Matrix/t2 +diff --git a/Include/Makefile.am b/Include/Makefile.am +new file mode 100644 +--- /dev/null ++++ b/Include/Makefile.am +@@ -0,0 +1 @@ ++pkginclude_HEADERS = cs.h +diff --git a/Makefile.am b/Makefile.am +new file mode 100644 +--- /dev/null ++++ b/Makefile.am +@@ -0,0 +1,5 @@ ++SUBDIRS = Include Source Matrix Demo ++EXTRA_DIST = README.txt Doc/ChangeLog Doc/License.txt Doc/lesser.txt ++ ++pkgconfigdir = $(libdir)/pkgconfig ++pkgconfig_DATA = cxsparse.pc +diff --git a/Matrix/Makefile.am b/Matrix/Makefile.am +new file mode 100644 +--- /dev/null ++++ b/Matrix/Makefile.am +@@ -0,0 +1,23 @@ ++dist_noinst_DATA = \ ++ ash219 \ ++ bcsstk01 \ ++ bcsstk16 \ ++ c4 \ ++ c_ibm32a \ ++ c_ibm32b \ ++ c_mbeacxc \ ++ c_west0067 \ ++ fs_183_1 \ ++ ibm32a \ ++ ibm32b \ ++ lp_afiro \ ++ mbeacxc \ ++ mhd1280b \ ++ neumann \ ++ qc324 \ ++ t1 \ ++ t2 \ ++ t3 \ ++ t4 \ ++ west0067 \ ++ young1c +diff --git a/Source/Makefile.am b/Source/Makefile.am +new file mode 100644 +--- /dev/null ++++ b/Source/Makefile.am +@@ -0,0 +1,72 @@ ++AM_CPPFLAGS = -I$(top_srcdir)/Include $(SUITESPARSECONFIG_CFLAGS) ++ ++CS_SOURCE = \ ++ cs_add.c \ ++ cs_amd.c \ ++ cs_chol.c \ ++ cs_cholsol.c \ ++ cs_compress.c \ ++ cs_counts.c \ ++ cs_cumsum.c \ ++ cs_dfs.c \ ++ cs_dmperm.c \ ++ cs_droptol.c \ ++ cs_dropzeros.c \ ++ cs_dupl.c \ ++ cs_entry.c \ ++ cs_ereach.c \ ++ cs_etree.c \ ++ cs_fkeep.c \ ++ cs_gaxpy.c \ ++ cs_happly.c \ ++ cs_house.c \ ++ cs_ipvec.c \ ++ cs_leaf.c \ ++ cs_load.c \ ++ cs_lsolve.c \ ++ cs_ltsolve.c \ ++ cs_lu.c \ ++ cs_lusol.c \ ++ cs_malloc.c \ ++ cs_maxtrans.c \ ++ cs_multiply.c \ ++ cs_norm.c \ ++ cs_permute.c \ ++ cs_pinv.c \ ++ cs_post.c \ ++ cs_print.c \ ++ cs_pvec.c \ ++ cs_qr.c \ ++ cs_qrsol.c \ ++ cs_randperm.c \ ++ cs_reach.c \ ++ cs_scatter.c \ ++ cs_scc.c \ ++ cs_schol.c \ ++ cs_spsolve.c \ ++ cs_sqr.c \ ++ cs_symperm.c \ ++ cs_tdfs.c \ ++ cs_transpose.c \ ++ cs_updown.c \ ++ cs_usolve.c \ ++ cs_util.c \ ++ cs_utsolve.c ++ ++lib_LTLIBRARIES = libcxsparse.la ++noinst_LTLIBRARIES = libcxsparse_di.la libcxsparse_dl.la libcxsparse_ci.la libcxsparse_cl.la ++ ++libcxsparse_di_la_SOURCES = $(CS_SOURCE) ++ ++libcxsparse_dl_la_SOURCES = $(CS_SOURCE) ++libcxsparse_dl_la_CPPFLAGS = $(AM_CPPFLAGS) -DCS_LONG ++ ++libcxsparse_ci_la_SOURCES = $(CS_SOURCE) ++libcxsparse_ci_la_CPPFLAGS = $(AM_CPPFLAGS) -DCS_COMPLEX ++ ++libcxsparse_cl_la_SOURCES = $(CS_SOURCE) ++libcxsparse_cl_la_CPPFLAGS = $(AM_CPPFLAGS) -DCS_LONG -DCS_COMPLEX ++ ++libcxsparse_la_SOURCES = cs_convert.c ++libcxsparse_la_LIBADD = libcxsparse_di.la libcxsparse_dl.la libcxsparse_ci.la libcxsparse_cl.la -lm ++libcxsparse_la_LDFLAGS = -no-undefined -version-number 3:1:2 +diff --git a/configure.ac b/configure.ac +new file mode 100644 +--- /dev/null ++++ b/configure.ac +@@ -0,0 +1,45 @@ ++# -*- Autoconf -*- ++# Process this file with autoconf to produce a configure script. ++ ++AC_PREREQ([2.69]) ++AC_INIT([CXSparse],[3.1.2],[DrTimothyAldenDavis@gmail.com],[cxsparse],[http://www.suitesparse.com/]) ++AC_CONFIG_SRCDIR([Source/cs_print.c]) ++AC_CONFIG_HEADERS([config.h]) ++AM_INIT_AUTOMAKE([foreign]) ++LT_INIT ++ ++# Checks for programs. ++AC_PROG_INSTALL ++AC_PROG_CC ++ ++LIBS_SAVED=$LIBS ++ ++# Checks for libraries. ++AC_CHECK_LIB([m], [sqrt]) ++ ++PKG_PROG_PKG_CONFIG ++PKG_CHECK_MODULES([SUITESPARSECONFIG],[suitesparseconfig], ++ [], ++ [AC_MSG_ERROR([cannot find suitesparseconfig])]) ++ ++# Checks for header files. ++AC_CHECK_HEADERS([limits.h stdlib.h]) ++ ++# Checks for typedefs, structures, and compiler characteristics. ++AC_TYPE_SIZE_T ++ ++# Checks for library functions. ++AC_FUNC_MALLOC ++AC_FUNC_REALLOC ++AC_CHECK_FUNCS([sqrt]) ++ ++LIBS=$LIBS_SAVED ++ ++AC_CONFIG_FILES([ ++ cxsparse.pc ++ Makefile ++ Demo/Makefile ++ Include/Makefile ++ Matrix/Makefile ++ Source/Makefile]) ++AC_OUTPUT +diff --git a/cxsparse.pc.in b/cxsparse.pc.in +new file mode 100644 +--- /dev/null ++++ b/cxsparse.pc.in +@@ -0,0 +1,13 @@ ++prefix=@prefix@ ++exec_prefix=@exec_prefix@ ++libdir=@libdir@ ++includedir=@includedir@ ++ ++Name: @PACKAGE_NAME@ ++Description: An extended version of CSparse ++Version: @PACKAGE_VERSION@ ++URL: @PACKAGE_URL@ ++Requires.private: suitesparseconfig ++Libs: -L${libdir} -lcxsparse ++Libs.private: -lm ++Cflags: -I${includedir}/cxsparse diff --git a/academic/cxsparse/cxsparse.SlackBuild b/academic/cxsparse/cxsparse.SlackBuild new file mode 100644 index 0000000000..4f0a4d490b --- /dev/null +++ b/academic/cxsparse/cxsparse.SlackBuild @@ -0,0 +1,107 @@ +#!/bin/sh + +# Slackware build script for CXSparse + +# Copyright 2013 Kyle Guinn , USA +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +PRGNAM=cxsparse +SRCNAM=CXSparse +VERSION=${VERSION:-3.1.2} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +if [ -z "$ARCH" ]; then + case "$(uname -m)" in + i?86) ARCH=i486 ;; + arm*) ARCH=arm ;; + *) ARCH=$(uname -m) ;; + esac +fi + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +DOCS="README.txt Doc/ChangeLog Doc/License.txt Doc/lesser.txt" + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" +fi + +# Recommended by SuiteSparse +SLKCFLAGS="$SLKCFLAGS -fexceptions -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE" + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $SRCNAM +tar xvf $CWD/$SRCNAM-$VERSION.tar.gz +cd $SRCNAM +chown -R root:root . +find -L . \ + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + +patch -p1 < $CWD/autotoolize.diff +autoreconf -vif + +CFLAGS="$SLKCFLAGS" \ +./configure \ + --prefix=/usr \ + --libdir=/usr/lib${LIBDIRSUFFIX} \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --mandir=/usr/man \ + --infodir=/usr/info \ + --docdir=/usr/doc/$PRGNAM-$VERSION \ + --enable-shared \ + --disable-static \ + --disable-dependency-tracking \ + --build=$ARCH-slackware-linux + +make +make check +make install-strip DESTDIR=$PKG + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a $DOCS $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/academic/cxsparse/cxsparse.info b/academic/cxsparse/cxsparse.info new file mode 100644 index 0000000000..f4423e2e72 --- /dev/null +++ b/academic/cxsparse/cxsparse.info @@ -0,0 +1,10 @@ +PRGNAM="cxsparse" +VERSION="3.1.2" +HOMEPAGE="https://www.cise.ufl.edu/research/sparse/CXSparse/" +DOWNLOAD="https://www.cise.ufl.edu/research/sparse/CXSparse/versions/CXSparse-3.1.2.tar.gz" +MD5SUM="1406442cd2741e9786393bfa7514c17f" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="suitesparseconfig" +MAINTAINER="Kyle Guinn" +EMAIL="elyk03@gmail.com" diff --git a/academic/cxsparse/slack-desc b/academic/cxsparse/slack-desc new file mode 100644 index 0000000000..bd288a17a1 --- /dev/null +++ b/academic/cxsparse/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. +# Line up the first '|' above the ':' following the base package name, and +# the '|' on the right side marks the last column you can put a character in. +# You must make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':' except on otherwise blank lines. + + |-----handy-ruler------------------------------------------------------| +cxsparse: CXSparse (sparse matrix routines) +cxsparse: +cxsparse: CXSparse is an extended version of CSparse, with support for +cxsparse: double or complex matrices, with int or long integers. +cxsparse: +cxsparse: +cxsparse: +cxsparse: +cxsparse: +cxsparse: +cxsparse: -- cgit v1.2.3