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
+10
View File
@@ -0,0 +1,10 @@
safecat is an implementation of D. J. Bernstein's maildir algorithm.
It can be used to write mail messages to a qmail-style maildir, or
to write data to a "spool" directory reliably. There are no lockfiles
with safecat, and nothing is left to chance. If safecat returns a
successful exit status, then you can be (practically) 100% sure
your data is safely committed to disk. Further, if data is written
to a directory using safecat (or other implementations of the
maildir algorithm), then every file in that directory is guaranteed
to be complete. If safecat fails to write all of the data, there
will be no file at all in the destination directory.
+22
View File
@@ -0,0 +1,22 @@
# $NetBSD: Makefile,v 1.16 2012/10/08 12:19:30 asau Exp $
#
DISTNAME= safecat-1.13
PKGREVISION= 1
CATEGORIES= mail
MASTER_SITES= http://jeenyus.net/~budney/linux/software/safecat/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://jeenyus.net/~budney/linux/software/safecat.html
COMMENT= Write data safely to a maildir
MAKE_JOBS_SAFE= no
DJB_RESTRICTED= NO
BUILD_TARGETS= install instcheck
DJB_CONFIG_HOME= conf-root
MAKE_FLAGS+= DESTDIR=${DESTDIR:Q}
.include "../../mk/djbware.mk"
.include "../../mk/bsd.pkg.mk"
+5
View File
@@ -0,0 +1,5 @@
@comment $NetBSD: PLIST,v 1.2 2012/03/14 23:16:29 joerg Exp $
bin/maildir
bin/safecat
man/man1/maildir.1
man/man1/safecat.1
+8
View File
@@ -0,0 +1,8 @@
$NetBSD: distinfo,v 1.7 2012/03/14 23:16:29 joerg Exp $
SHA1 (safecat-1.13.tar.gz) = 07b42cb06490abeacefce9429a1dbf96caa1629b
RMD160 (safecat-1.13.tar.gz) = 614df1d43d13a638ab30a2921b66d78f3fafc4c6
Size (safecat-1.13.tar.gz) = 33953 bytes
SHA1 (patch-aa) = 2e06a02df248b91e2b1fda9f783c53a10081b196
SHA1 (patch-ab) = 59b4876e127ebffdbd3cad83a37e3971d9736e8f
SHA1 (patch-hier.c) = c6825043a97e94d1748852a867bd0f87f2175297
+18
View File
@@ -0,0 +1,18 @@
$NetBSD: patch-aa,v 1.2 2007/01/15 11:01:24 schmonz Exp $
--- tryulong32.c.orig 2000-02-28 23:10:12.000000000 -0500
+++ tryulong32.c
@@ -1,5 +1,8 @@
void main()
{
+#ifdef __arm__
+ _exit(0);
+#else
unsigned long u;
u = 1;
u += u; u += u; u += u; u += u; u += u; u += u; u += u; u += u;
@@ -8,4 +11,5 @@ void main()
u += u; u += u; u += u; u += u; u += u; u += u; u += u; u += u;
if (!u) _exit(0);
_exit(1);
+#endif
}
+16
View File
@@ -0,0 +1,16 @@
$NetBSD: patch-ab,v 1.1 2008/02/16 15:21:40 heinz Exp $
Allow installation to DESTDIR (taken from safecat-buildroot.patch in
the archive).
--- Makefile.orig 2004-08-17 02:50:09.000000000 +0200
+++ Makefile
@@ -31,7 +31,7 @@ compile auto-str.c substdio.h readwrite.
auto_home.c: \
auto-str conf-root
- ./auto-str auto_home `head -1 conf-root` > auto_home.c
+ ./auto-str auto_home $(DESTDIR)`head -1 conf-root` > auto_home.c
auto_home.o: \
compile auto_home.c
+14
View File
@@ -0,0 +1,14 @@
$NetBSD: patch-hier.c,v 1.1 2012/03/14 23:16:29 joerg Exp $
--- hier.c.orig 2012-03-13 17:44:57.000000000 +0000
+++ hier.c
@@ -9,9 +9,6 @@ void hier()
d(auto_home,"man",-1,-1,02755);
d(auto_home,"man/man1",-1,-1,02755);
- d(auto_home,"man/cat1",-1,-1,02755);
c(auto_home,"man/man1","safecat.1",-1,-1,0644);
- c(auto_home,"man/cat1","safecat.0",-1,-1,0644);
c(auto_home,"man/man1","maildir.1",-1,-1,0644);
- c(auto_home,"man/cat1","maildir.0",-1,-1,0644);
}