a5ba8b02d1
- Package links to gpgme, make it LIB_DEPENDS also turn off linking to it when GPGME=off - Add empty line between description and WWW line, remove extraneous whitespace on EOL in pkg-descr PR: ports/174732 [1] Submitted by: Sean Greven <sean.greven@gmail.com> (maintainer)
30 lines
637 B
Makefile
30 lines
637 B
Makefile
# Created by: Sean Greven <sean.greven@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= fwknop
|
|
PORTVERSION= 2.0.4
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://www.cipherdyne.org/fwknop/download/
|
|
|
|
MAINTAINER= sean.greven@gmail.com
|
|
COMMENT= SPA implementation for Linux and FreeBSD
|
|
|
|
OPTIONS_DEFINE= GPGME
|
|
OPTIONS_DEFAULT= GPGME
|
|
GPGME_DESC= Build support for gpgme
|
|
MAN8= fwknop.8 fwknopd.8
|
|
INFO= libfko
|
|
MANCOMPRESSED= no
|
|
GNU_CONFIGURE= yes
|
|
USE_RC_SUBR= fwknopd
|
|
USE_LDCONFIG= yes
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MGPGME}
|
|
LIB_DEPENDS+= gpgme:${PORTSDIR}/security/gpgme
|
|
.else
|
|
CONFIGURE_ARGS+=--without-gpgme
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|