freebsd-ports/comms/conserver-com/Makefile
Ryan Steinmetz 50ce31c636 - Add GSSAPI-related options to enable/control GSSAPI functionality
- Add missing include (bsd.port.options.mk)
- Bump PORTREVISION

PR:		ports/176217
Submitted by:	zi@ (me)
Approved by:	kuriyama@ (maintainer timeout, ~3weeks)
2013-03-23 21:28:12 +00:00

49 lines
1.1 KiB
Makefile

# $FreeBSD$
PORTNAME= conserver
PORTVERSION= 8.1.18
PORTREVISION= 1
CATEGORIES= comms
MASTER_SITES= http://www.conserver.com/ \
ftp://ftp.conserver.com/conserver/
PKGNAMESUFFIX= -com
MAINTAINER= kuriyama@FreeBSD.org
COMMENT= Application that allows multiple users to watch serial consoles
GNU_CONFIGURE= YES
CONFIGURE_ARGS= --with-master=${DEFAULTHOST} --with-port=${DEFAULTPORT} \
--with-pam --with-libwrap --with-openssl
USE_RC_SUBR= conserver
MAN1= console.1
MAN5= conserver.cf.5 conserver.passwd.5
MAN8= conserver.8
OPTIONS_DEFINE= UDS GSSAPI GSSAPIONLY STRIPREALM
UDS_DESC= Use Unix domain sockets for client/server
STRIPREALM_DESC=Strip @REALM when using GSSAPI
GSSAPIONLY_DESC=Never prompt for a password when using GSSAPI
.include <bsd.port.options.mk>
DEFAULTPORT?= 782
DEFAULTHOST?= localhost
.include <bsd.port.pre.mk>
.if ${PORT_OPTIONS:MUDS}
CONFIGURE_ARGS+= --with-uds
.endif
.if ${PORT_OPTIONS:MGSSAPI}
CONFIGURE_ARGS+= --with-gssapi
.if ${PORT_OPTIONS:MSTRIPREALM}
CONFIGURE_ARGS+= --with-striprealm
.endif
.if ${PORT_OPTIONS:MGSSAPIONLY}
EXTRA_PATCHES= ${FILESDIR}/extra-patch-conserver__master.c
.endif
.endif
.include <bsd.port.post.mk>