blob: bbce60934046df1a542de69fee465356fb09f846 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# New ports collection makefile for: conserver.com
# Date created: 9 December 2001
# Whom: Jun Kuriyama <kuriyama@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= conserver
PORTVERSION= 8.1.18
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
OPTIONS= UDS "Use Unix domain sockets for client/server" off
DEFAULTPORT?= 782
DEFAULTHOST?= localhost
.include <bsd.port.pre.mk>
.if defined(WITH_UDS)
CONFIGURE_ARGS+= --with-uds
.endif
.include <bsd.port.post.mk>
|