1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-11 02:50:24 +00:00
freebsd-ports/security/sks/Makefile
Gabor Kovesdan c0ce4105e7 Remove USE_GPG from all effected ports. This knob is a no-op and the way it
was supposed to work is useless, because if we can't trust the distfile from
the remote machine, we can't trust the signature from the same machine either.
Our MD5 and SHA256 are good for checking both the sanity and the
trustiness of distfiles.

Approved by:	portmgr (erwin), erwin (mentor)
2007-01-29 19:05:07 +00:00

48 lines
1.2 KiB
Makefile

# New ports collection makefile for: sks
# Date created: 2004-10-16
# Whom: johans@stack.nl
#
# $FreeBSD$
#
PORTNAME= sks
PORTVERSION= 1.0.9
PORTREVISION= 2
CATEGORIES= security
MASTER_SITES= ${MASTER_SITE_SAVANNAH}
MASTER_SITE_SUBDIR= ${PORTNAME}
EXTRACT_SUFX= .tgz
MAINTAINER= johans@stack.nl
COMMENT= Synchronizing Key Server, a fast OpenPGP keyserver
BUILD_DEPENDS= ocaml:${PORTSDIR}/lang/ocaml-nox11
LIB_DEPENDS= db-4.2:${PORTSDIR}/databases/db42
USE_GMAKE= yes
MAKE_ENV= BDBINCLUDE="-I${LOCALBASE}/include/db42" \
BDBLIB="-L${LOCALBASE}/lib" \
LIBDB="-ldb-4.2" \
MANDIR="${MANPREFIX}/man"
ALL_TARGET= all sks.8
USE_PERL5_BUILD= yes
PLIST_FILES= bin/sks bin/sks_add_mail bin/sks_build.sh
MAN8= sks.8
PORTDOCS= ANNOUNCEMENT BUGS README TODO
post-patch:
@${CP} ${FILESDIR}/sks.numerix.patch ${WRKDIR}
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/sks ${PREFIX}/bin
${INSTALL_PROGRAM} ${WRKSRC}/sks_add_mail ${PREFIX}/bin
${INSTALL_SCRIPT} ${WRKSRC}/sks_build.sh ${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/sks.8 ${MAN8PREFIX}/man/man8
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}
.endif
.include <bsd.port.mk>