1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-28 01:06:17 +00:00

An efficient implementation of Int-indexed arrays (both mutable and

immutable), with a powerful loop fusion optimization framework.

WWW: http://code.haskell.org/vector
This commit is contained in:
Gabor Pali 2010-06-07 03:55:25 +00:00
parent 46c4f3b0f4
commit 8df3e55910
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=255984
6 changed files with 71 additions and 0 deletions

View File

@ -614,6 +614,7 @@
SUBDIR += hs-uulib
SUBDIR += hs-uvector
SUBDIR += hs-uvector-algorithms
SUBDIR += hs-vector
SUBDIR += hypersrc
SUBDIR += i386-rtems-binutils
SUBDIR += i386-rtems-gcc

20
devel/hs-vector/Makefile Normal file
View File

@ -0,0 +1,20 @@
# New ports collection makefile for: hs-vector
# Date created: June 5, 2010
# Whom: Gabor Pali <pgj@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= vector
PORTVERSION= 0.6.0.1
CATEGORIES= devel haskell
MAINTAINER= haskell@FreeBSD.org
COMMENT= Efficient Arrays
CABAL_SETUP= Setup.hs
USE_HACKAGE= primitive>=0.3
.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk"
.include <bsd.port.mk>

3
devel/hs-vector/distinfo Normal file
View File

@ -0,0 +1,3 @@
MD5 (vector-0.6.0.1.tar.gz) = 51268c3617210f4b8d2c9ac36a31575a
SHA256 (vector-0.6.0.1.tar.gz) = b0cba9b3aa94688321a2ec7b4fb4b41781073b2605584ad41957ba1c6892acce
SIZE (vector-0.6.0.1.tar.gz) = 89020

View File

@ -0,0 +1,4 @@
An efficient implementation of Int-indexed arrays (both mutable and
immutable), with a powerful loop fusion optimization framework.
WWW: http://code.haskell.org/vector

42
devel/hs-vector/pkg-plist Normal file
View File

@ -0,0 +1,42 @@
@comment $FreeBSD$
%%LIBDIR_REL%%/ghc-%%GHC_VERSION%%/include/vector.h
%%LIBDIR_REL%%/ghc-%%GHC_VERSION%%/Data/Vector.hi
%%LIBDIR_REL%%/ghc-%%GHC_VERSION%%/Data/Vector/Fusion/Stream.hi
%%LIBDIR_REL%%/ghc-%%GHC_VERSION%%/Data/Vector/Fusion/Stream/Monadic.hi
%%LIBDIR_REL%%/ghc-%%GHC_VERSION%%/Data/Vector/Fusion/Stream/Size.hi
%%LIBDIR_REL%%/ghc-%%GHC_VERSION%%/Data/Vector/Fusion/Util.hi
%%LIBDIR_REL%%/ghc-%%GHC_VERSION%%/Data/Vector/Generic.hi
%%LIBDIR_REL%%/ghc-%%GHC_VERSION%%/Data/Vector/Generic/Base.hi
%%LIBDIR_REL%%/ghc-%%GHC_VERSION%%/Data/Vector/Generic/Mutable.hi
%%LIBDIR_REL%%/ghc-%%GHC_VERSION%%/Data/Vector/Generic/New.hi
%%LIBDIR_REL%%/ghc-%%GHC_VERSION%%/Data/Vector/Internal/Check.hi
%%LIBDIR_REL%%/ghc-%%GHC_VERSION%%/Data/Vector/Mutable.hi
%%LIBDIR_REL%%/ghc-%%GHC_VERSION%%/Data/Vector/Primitive.hi
%%LIBDIR_REL%%/ghc-%%GHC_VERSION%%/Data/Vector/Primitive/Mutable.hi
%%LIBDIR_REL%%/ghc-%%GHC_VERSION%%/Data/Vector/Storable.hi
%%LIBDIR_REL%%/ghc-%%GHC_VERSION%%/Data/Vector/Storable/Internal.hi
%%LIBDIR_REL%%/ghc-%%GHC_VERSION%%/Data/Vector/Storable/Mutable.hi
%%LIBDIR_REL%%/ghc-%%GHC_VERSION%%/Data/Vector/Unboxed.hi
%%LIBDIR_REL%%/ghc-%%GHC_VERSION%%/Data/Vector/Unboxed/Base.hi
%%LIBDIR_REL%%/ghc-%%GHC_VERSION%%/Data/Vector/Unboxed/Mutable.hi
%%LIBDIR_REL%%/ghc-%%GHC_VERSION%%/HS%%PORTNAME%%-%%PORTVERSION%%.o
%%LIBDIR_REL%%/ghc-%%GHC_VERSION%%/libHS%%PORTNAME%%-%%PORTVERSION%%.a
%%LIBDIR_REL%%/register.sh
%%NOPORTDOCS%%%%DOCSDIR%%/LICENSE
%%NOPORTDOCS%%@dirrmtry %%DOCSDIR%%
@dirrm %%LIBDIR_REL%%/ghc-%%GHC_VERSION%%/Data/Vector/Unboxed
@dirrm %%LIBDIR_REL%%/ghc-%%GHC_VERSION%%/Data/Vector/Storable
@dirrm %%LIBDIR_REL%%/ghc-%%GHC_VERSION%%/Data/Vector/Primitive
@dirrm %%LIBDIR_REL%%/ghc-%%GHC_VERSION%%/Data/Vector/Internal
@dirrm %%LIBDIR_REL%%/ghc-%%GHC_VERSION%%/Data/Vector/Generic
@dirrm %%LIBDIR_REL%%/ghc-%%GHC_VERSION%%/Data/Vector/Fusion/Stream
@dirrm %%LIBDIR_REL%%/ghc-%%GHC_VERSION%%/Data/Vector/Fusion
@dirrm %%LIBDIR_REL%%/ghc-%%GHC_VERSION%%/Data/Vector
@dirrm %%LIBDIR_REL%%/ghc-%%GHC_VERSION%%/Data
@dirrm %%LIBDIR_REL%%/ghc-%%GHC_VERSION%%/include
@dirrm %%LIBDIR_REL%%/ghc-%%GHC_VERSION%%
@dirrm %%LIBDIR_REL%%
@exec /bin/sh %D/%%LIBDIR_REL%%/register.sh
@exec /bin/rm -f %D/lib/ghc-%%GHC_VERSION%%/package.conf.old
@unexec %D/bin/ghc-pkg unregister %%PORTNAME%%-%%PORTVERSION%%
@unexec /bin/rm -f %D/lib/ghc-%%GHC_VERSION%%/package.conf.old

View File

@ -125,6 +125,7 @@ uuagc_port= devel/hs-uuagc # executable
uulib_port= devel/hs-uulib
uvector_port= devel/hs-uvector
uvector-algorithms_port= devel/hs-uvector-algorithms
vector_port= devel/hs-vector
vector-space_port= math/hs-vector-space
X11_port= x11/hs-X11 # lib_depends
X11-xft_port= x11/hs-X11-xft