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

6
sysutils/bsign/DESCR Normal file
View File

@@ -0,0 +1,6 @@
This package embeds secure hashes (SHA1) and digital signatures (GNU
Privacy Guard) into files for verification and authentication.
Currently, target file types are all ELF format: executables, kernel
modules, shared and static link libraries. This program has
functionality similar to tripwire and integrit without the need to
maintain a database.

30
sysutils/bsign/Makefile Normal file
View File

@@ -0,0 +1,30 @@
# $NetBSD: Makefile,v 1.4 2012/10/23 19:50:53 asau Exp $
DISTNAME= bsign_0.4.5
PKGNAME= bsign-0.4.5
CATEGORIES= sysutils
MASTER_SITES= ${MASTER_SITE_DEBIAN:=pool/main/b/bsign/}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://packages.debian.org/unstable/admin/bsign.html
COMMENT= Utility to embed a hash or signature into an executable
MAKE_JOBS_SAFE= no
INSTALL_MAKE_FLAGS+= prefix=${DESTDIR}${PREFIX} mandir=${DESTDIR}${PREFIX}/${PKGMANDIR}
WRKSRC= ${WRKDIR}/${PKGNAME_NOREV}
GNU_CONFIGURE= yes
USE_LANGUAGES+= c c++
USE_TOOLS+= gmake
USE_FEATURES+= fts_open
.include "../../mk/bsd.prefs.mk"
.if ${OPSYS} == "SunOS"
BUILDLINK_TRANSFORM+= rm:-static
.endif
CFLAGS.SunOS+= -DMAP_FILE=0
.include "../../mk/bsd.pkg.mk"

7
sysutils/bsign/PLIST Normal file
View File

@@ -0,0 +1,7 @@
@comment $NetBSD: PLIST,v 1.2 2009/06/14 18:16:01 joerg Exp $
bin/bsign
man/man1/bsign.1
share/doc/bsign/scripts/bsign_check
share/doc/bsign/scripts/bsign_hash
share/doc/bsign/scripts/bsign_sign
share/doc/bsign/scripts/bsign_verify

7
sysutils/bsign/distinfo Normal file
View File

@@ -0,0 +1,7 @@
$NetBSD: distinfo,v 1.4 2012/07/03 17:32:00 joerg Exp $
SHA1 (bsign_0.4.5.tar.gz) = f24acc5ec3fc9653ee06a8314da2e8dde8992ebb
RMD160 (bsign_0.4.5.tar.gz) = 0e57631ee5713088a9209b6d7287765224751453
Size (bsign_0.4.5.tar.gz) = 77471 bytes
SHA1 (patch-aa) = aabee5c6c76239c773eb56013b12c9aae29c074d
SHA1 (patch-configure) = 392a74fe9e1100b9a7da67892fd96f157458a79c

View File

@@ -0,0 +1,23 @@
$NetBSD: patch-aa,v 1.4 2012/07/03 17:32:00 joerg Exp $
--- Makefile.in.orig 2002-01-27 20:56:56.000000000 +0000
+++ Makefile.in
@@ -51,7 +51,8 @@ RELEASE_PATH=${HOME}/release
CC=@CC@
CXX=@CXX@
-CFLAGS=@CFLAGS@ @DEFS@
+CFLAGS+=@CPPFLAGS@ @CFLAGS@ @DEFS@
+CFLAGS_I=$(CFLAGS)
#CFLAGS_O=-O2
#CFLAGS_O=-O2 -fomit-frame-pointer
#CFLAGS_P=$(CFLAGS) -pg
@@ -196,7 +197,7 @@ debclean: distclean
.version_patch` > .version
_version.h: .version
- @/bin/echo -e \#define SZ_VERSION \"`cat .version`\" > _version.h
+ @/bin/echo '#define SZ_VERSION '\"`cat .version`\" > _version.h
.PHONY: transmit
transmit: # distribution-archive

View File

@@ -0,0 +1,40 @@
$NetBSD: patch-configure,v 1.1 2012/07/03 17:32:00 joerg Exp $
--- configure.orig 2002-01-18 01:16:44.000000000 +0000
+++ configure
@@ -665,7 +665,7 @@ cat > conftest.$ac_ext << EOF
#line 666 "configure"
#include "confdefs.h"
-main(){return(0);}
+int main(){return(0);}
EOF
if { (eval echo configure:671: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
ac_cv_prog_cc_works=yes
@@ -1664,7 +1664,7 @@ extern "C" void exit(int);
#endif
#include <stdio.h>
#include <sys/types.h>
-main()
+int main()
{
FILE *f=fopen("conftestval", "w");
if (!f) exit(1);
@@ -1706,7 +1706,7 @@ extern "C" void exit(int);
#endif
#include <stdio.h>
#include <sys/types.h>
-main()
+int main()
{
FILE *f=fopen("conftestval", "w");
if (!f) exit(1);
@@ -1748,7 +1748,7 @@ extern "C" void exit(int);
#endif
#include <stdio.h>
#include <sys/types.h>
-main()
+int main()
{
FILE *f=fopen("conftestval", "w");
if (!f) exit(1);