- Fixes for machine-readable indices. Key expiration times are now read from self-signatures on the key's UIDs. In addition, instead of 8-digit key IDs, index entries now return the most specific key ID possible: 16-digit key ID for V3 keys, and the full fingerprint for V4 keys. - Add metadata information (number of keys, number of files, checksums, etc) to key dump. This allows for information on the key dump ahead of download/import, and direct verification of checksums using md5sum -c <metadata-file>. - Replaced occurrances of the deprecated operator 'or' with '||' (BB issue #2) - Upgraded to cryptlib-1.7 and own changes are now packaged as separate patches that is installed during 'make'. Added the SHA-3 algorithm, Keccak - Option max_matches was setting max_internal_matches. Fixed (BB issue #4) - op=hget now supports option=mr for completeness (BB issue #17) - Add CORS header to web server responses. Allows JavaScript code to interact with keyservers, for example the OpenPGP.js project. - Change the default hkp_address and recon_address to making the default configuration support IPv6. (Requires OCaml 3.11.0 or newer) - Only use '-warn-error A' if the source is marked as development as per the version suffix (+) (part of BB Issue #2) - Reduce logging verbosity for debug level lower than 6 for (i) bad requests, and (ii) no results found (removal of HTTP headers in log) (BB Issue #13) - Add additional OIDs for ECC RFC6637 style implementations (brainpool and secp256k1) (BB Issue #25) and fix issue for 32 bit arches. - Fix a non-persistent cross-site scripting possibility resulting from improper input sanitation before writing to client. (BB Issue #26 | CVE-2014-3207)
59 lines
1.8 KiB
Makefile
59 lines
1.8 KiB
Makefile
# $NetBSD: Makefile,v 1.10 2014/06/03 08:28:50 pettai Exp $
|
|
#
|
|
|
|
DISTNAME= sks-1.1.5
|
|
CATEGORIES= security
|
|
MASTER_SITES= https://bitbucket.org/skskeyserver/sks-keyserver/downloads/
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://bitbucket.org/skskeyserver/
|
|
COMMENT= Self Replicating PGP Key Server
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
MAKE_JOBS_SAFE= no
|
|
|
|
BUILDLINK_API_DEPENDS.ocaml+= ocaml>=3.10.2
|
|
BUILDLINK_API_DEPENDS.db4+= db4>=4.6.0
|
|
|
|
REPLACE_SH= sks_build.sh
|
|
|
|
USE_TOOLS+= gmake perl:run tar
|
|
BDB_ACCEPTED= db4
|
|
|
|
EGDIR= ${PREFIX}/share/examples/sks
|
|
|
|
MAKE_ENV+= LIBDB=-ldb4 \
|
|
BDBINCLUDE=-I${BUILDLINK_DIR}/include \
|
|
BDBLIB=-L${BUILDLINK_DIR}/lib \
|
|
PREFIX=${PREFIX:Q} \
|
|
MANDIR=${PREFIX:Q}/man
|
|
|
|
INSTALLATION_DIRS= ${PKGMANDIR}/man8 bin ${EGDIR}
|
|
|
|
.include "../../lang/ocaml/buildlink3.mk"
|
|
.include "../../databases/db4/buildlink3.mk"
|
|
|
|
pre-build:
|
|
cd ${WRKSRC} && ${MAKE_PROGRAM} dep
|
|
|
|
post-install:
|
|
cd ${WRKSRC} && ${MAKE_PROGRAM} sks.8
|
|
${INSTALL_PROGRAM} ${WRKSRC}/sks ${DESTDIR}${PREFIX}/bin
|
|
${INSTALL_PROGRAM} ${WRKSRC}/sks_add_mail ${DESTDIR}${PREFIX}/bin
|
|
${INSTALL_SCRIPT} ${WRKSRC}/sks_build.sh ${DESTDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/sks.8 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man8
|
|
${INSTALL_DATA} ${WRKSRC}/sampleConfig/aliases.sample \
|
|
${DESTDIR}${EGDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/sampleConfig/crontab.sample \
|
|
${DESTDIR}${EGDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/sampleConfig/mailsync ${DESTDIR}${EGDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/sampleConfig/membership ${DESTDIR}${EGDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/sampleConfig/procmailrc ${DESTDIR}${EGDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/sampleConfig/sksconf.minimal \
|
|
${DESTDIR}${EGDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/sampleConfig/sksconf.typical \
|
|
${DESTDIR}${EGDIR}
|
|
|
|
.include "../../devel/zlib/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|