mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
a8994cf080
- added 'replstring' substitution option - inspired by conversation with Owen DeLong <owen@c2company.com> - added '^Ecn' option for writing a note to the logfile - patch by Bryan Schmersal <bschmer@yahoo.com> - fixed leaking file descriptors when 'host' and 'uds' consoles fail to connect - based on patch by Michael Heironimus <michael_heironimus@archwayconcepts.com> Also, the rc.d script now supports "reload", "reconnect", and "reinit" keywords (they are to send HUP/USR1/USR2 respectively). Approved by: kuriyama (maintainer)
31 lines
716 B
Makefile
31 lines
716 B
Makefile
# New ports collection makefile for: conserver.com
|
|
# Date created: 9 December 2001
|
|
# Whom: Jun Kuriyama <kuriyama@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= conserver
|
|
PORTVERSION= 8.1.16
|
|
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.sh
|
|
|
|
MAN1= console.1
|
|
MAN5= conserver.cf.5 conserver.passwd.5
|
|
MAN8= conserver.8
|
|
|
|
DEFAULTPORT?= 782
|
|
DEFAULTHOST?= localhost
|
|
|
|
.include <bsd.port.mk>
|