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

24
databases/datadraw/DESCR Normal file
View File

@@ -0,0 +1,24 @@
DataDraw is an ultra-fast persistent database for high performance programs
written in C. It's so fast that many programs keep all their data in a
DataDraw database, even while being manipulated in inner loops of compute
intensive applications. DataDraw databases are compiled, and directly link
into your C programs. DataDraw databases are resident in memory, making data
manipulation even faster than if they were stored in native C data structures
(really).
DataDraw databases can be persistent. Modifications to persistent data are
written to disk as they are made, which of course dramatically slows write
times. However, DataDraw databases can also be volatile. Volatile databases
exist only in memory, and only for the duration that your program needs it.
Volatile databases can be directly manipulated faster than C structures, since
data is better organized in memory to optimize cache performance
DataDraw supports modular design. An application can have one or more common
persistent databases, and multiple volatile databases to support various tools'
data structures. Classes in a tool's database can extend classes in the common
database.
DataDraw is also 64-bit optimized, allowing programs to run much faster and in
less memory than standard C programs using 64-bit pointers. This is because
DataDraw databases supports over 4 billion objects of a given class with 32-bit
object references.

View File

@@ -0,0 +1,28 @@
# $NetBSD: Makefile,v 1.3 2012/10/02 21:25:16 asau Exp $
#
DISTNAME= datadraw3.1.1
PKGNAME= datadraw-3.1.1
CATEGORIES= databases
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=datadraw/}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://datadraw.sourceforge.net/
COMMENT= Persistent database generator for high performance C applications
PKG_INSTALLATION_TYPES= overwrite pkgviews
LICENSE= gnu-lgpl-v2
HAS_CONFIGURE= yes
CONFIGURE_ARGS+= --prefix=${PREFIX}
CONFIGURE_ARGS+= CFLAGS=${CFLAGS:Q}
CONFIGURE_ARGS+= LDFLAGS=${LDFLAGS:Q}
USE_TOOLS+= bash:build bison flex gmake
CONFIG_SHELL= ${TOOLS_PATH.bash}
BUILD_TARGET= datadraw
INSTALL_MAKE_FLAGS+= PREFIX=${DESTDIR}${PREFIX}
.include "../../mk/bsd.pkg.mk"

18
databases/datadraw/PLIST Normal file
View File

@@ -0,0 +1,18 @@
@comment $NetBSD: PLIST,v 1.1.1.1 2009/11/25 22:42:35 dmcmahill Exp $
bin/datadraw
include/ddutil.h
include/utdatabase.h
include/utdatabasep.h
include/utdatabaseu.h
include/utdatabaseup.h
include/utmem.h
include/utpersist.h
include/uttypes.h
lib/libddutil-dbg.a
lib/libddutil.a
lib/libddutilp-dbg.a
lib/libddutilp.a
lib/libddutilu-dbg.a
lib/libddutilu.a
lib/libddutilup-dbg.a
lib/libddutilup.a

View File

@@ -0,0 +1,6 @@
$NetBSD: distinfo,v 1.1.1.1 2009/11/25 22:42:35 dmcmahill Exp $
SHA1 (datadraw3.1.1.tar.gz) = 571c01418556dab427ba95f7c5e7a23a0acb24d1
RMD160 (datadraw3.1.1.tar.gz) = 03d4ea06ad47d545f1182b1d268a1860e0304d27
Size (datadraw3.1.1.tar.gz) = 607914 bytes
SHA1 (patch-aa) = 70e52e7e0724ce3627485d07652e400d73187e8d

View File

@@ -0,0 +1,13 @@
$NetBSD: patch-aa,v 1.1.1.1 2009/11/25 22:42:35 dmcmahill Exp $
--- util/configure.orig 2008-03-30 14:42:53.000000000 +0000
+++ util/configure
@@ -131,7 +131,7 @@ makeMakefileBottom () {
" >> Makefile
done
- if [ "$SUFFIX" == "$NONDBG_SUFFIX" ]; then
+ if [ "$SUFFIX" = "$NONDBG_SUFFIX" ]; then
echo "utdatabase$SUFFIX.c utdatabase$SUFFIX.h: DatadrawUtil.dd
datadraw $DATADRAW_FLAGS -s utdatabase$SUFFIX.c -h utdatabase$SUFFIX.h DatadrawUtil.dd