Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions

4
parallel/linda/DESCR Normal file
View File

@@ -0,0 +1,4 @@
linda is an simple library implementation of Linda parallel
programming system (http://www.cs.yale.edu/Linda/linda.html). To
write a parallel program with linda, you have to know only 6
functions: spawn, out, in, inp, rd and rdp with linda.

18
parallel/linda/Makefile Normal file
View File

@@ -0,0 +1,18 @@
# $NetBSD: Makefile,v 1.24 2012/09/15 10:06:08 obache Exp $
#
DISTNAME= linda-0.1.1
PKGREVISION= 10
CATEGORIES= parallel
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=linda/}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://sourceforge.net/projects/linda/
COMMENT= Parallel distributed database environment
USE_TOOLS+= pkg-config
GNU_CONFIGURE= yes
USE_LIBTOOL= yes
.include "../../devel/glib2/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"

4
parallel/linda/PLIST Normal file
View File

@@ -0,0 +1,4 @@
@comment $NetBSD: PLIST,v 1.4 2009/06/14 18:10:40 joerg Exp $
include/linda/linda.h
lib/libinda.la
lib/pkgconfig/linda.pc

6
parallel/linda/distinfo Normal file
View File

@@ -0,0 +1,6 @@
$NetBSD: distinfo,v 1.3 2012/11/19 03:01:07 joerg Exp $
SHA1 (linda-0.1.1.tar.gz) = 84cd0a614ce049908a0dbe2dabcc317493534fec
RMD160 (linda-0.1.1.tar.gz) = 0148408654945cebde41639ccbff4b792d35eada
Size (linda-0.1.1.tar.gz) = 187939 bytes
SHA1 (patch-src_tuplespace.c) = f8f7f6de36224ed8435776cb952d8fc862316ffa

View File

@@ -0,0 +1,13 @@
$NetBSD: patch-src_tuplespace.c,v 1.1 2012/11/19 03:01:07 joerg Exp $
--- src/tuplespace.c.orig 2012-11-19 01:13:47.000000000 +0000
+++ src/tuplespace.c
@@ -285,7 +285,7 @@ TupleResult
tuplespace_enter(Tuple * tuple, GTimeVal * end_time)
{
TupleSlot * slot;
- g_return_if_fail (tuple);
+ g_return_val_if_fail (tuple, TUPLE_HOLD);
slot = &(tuplespace[tuple->hash]);
return (TupleResult)tuple_slot_slot(slot, tuple, end_time);