6f62a97983
- Propagate the detached GPG signature to distfiles mirrors PR: ports/74510 Submitted by: Johan van Selst (maintainer)
50 lines
1.3 KiB
Makefile
50 lines
1.3 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}
|
|
DISTFILES= ${DISTNAME}.tgz ${DISTNAME}.tgz.sig
|
|
EXTRACT_ONLY= ${DISTNAME}.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_GPG?= yes
|
|
SIG_FILES= ${DISTNAME}.tgz.sig
|
|
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>
|