forked from Lainports/freebsd-ports
to use USES=autoreconf. Changes since 8.2.2: - Correct man page typo (Ed Maste <emaste@freebsd.org>) - Remove autotools generated files from repo and create with release - Better integration of Cirrus CI - FreeBSD, Linux, and MacOS - Moving README to markdown - Fix #12 - Remote infomation flags (i.e. "-x") cannot be filtered by console - Fix #8 - defaultaccess appears broken - Rename configure.in and use autoreconf - Better use of version.h and letting configure build things with versions - Correct 'impi' typo (Ed Maste <emaste@freebsd.org>) - Correct argument type passed to time() (Ed Maste <emaste@freebsd.org>) - Fix compilation without deprecated OpenSSL APIs (Rosen Penev <rosenp@gmail.com>) - Fix compilation without deprecated OpenSSL 1.1 APIs (Rosen Penev <rosenp@gmail.com>) - Fix #6 - clang "-Wstring-plus-int" warning (Bryan Stansell <bryan@conserver.com>) - configure.in: Add test for closefrom (Ed Maste <emaste@freebsd.org>) - regenerate autoconf files (Ed Maste <emaste@freebsd.org>) - Use closefrom if available (Ed Maste <emaste@freebsd.org>) - Correct typo (Ed Maste <emaste@freebsd.org>) - Add Cirrus-CI FreeBSD CI build config (Ed Maste <emaste@freebsd.org>) - off by one found by Ed Maste (Bryan Stansell <bryan@conserver.com>) PR: 242412 Approved by: kuriyama (maintainer timeout, 2 weeks), ler (mentor, implicit)
51 lines
1.3 KiB
Makefile
51 lines
1.3 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= conserver
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 8.2.4
|
|
CATEGORIES= comms
|
|
PKGNAMESUFFIX= -com
|
|
|
|
MAINTAINER= kuriyama@FreeBSD.org
|
|
COMMENT= Application that allows multiple users to watch serial consoles
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= autoreconf ssl
|
|
USE_GITHUB= yes
|
|
USE_RC_SUBR= conserver
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-master=${DEFAULTHOST} --with-port=${DEFAULTPORT} \
|
|
--with-pam --with-libwrap --with-openssl
|
|
|
|
CONFLICTS_INSTALL= conserver-[0-9]*
|
|
|
|
OPTIONS_DEFINE= FREEIPMI GSSAPI GSSAPIONLY STRIPREALM UDS
|
|
FREEIPMI_DESC= Compile in FreeIPMI support
|
|
GSSAPIONLY_DESC=Never prompt for a password when using GSSAPI
|
|
GSSAPIONLY_IMPLIES= GSSAPI
|
|
STRIPREALM_DESC=Strip @REALM when using GSSAPI
|
|
STRIPREALM_IMPLIES= GSSAPI
|
|
UDS_DESC= Use Unix domain sockets for client/server
|
|
|
|
FREEIPMI_CONFIGURE_ON= --with-freeipmi=${LOCALBASE}
|
|
FREEIPMI_LIB_DEPENDS= libfreeipmi.so:sysutils/freeipmi
|
|
GSSAPI_CONFIGURE_WITH= gssapi
|
|
GSSAPIONLY_EXTRA_PATCHES= ${FILESDIR}/extra-patch-conserver__master.c
|
|
STRIPREALM_CONFIGURE_WITH= striprealm
|
|
UDS_CONFIGURE_WITH= uds
|
|
|
|
post-install:
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/sbin/conserver-convert
|
|
|
|
DEFAULTPORT?= 782
|
|
DEFAULTHOST?= localhost
|
|
|
|
post-extract:
|
|
.for file in config.guess config.sub
|
|
${CP} -f ${TEMPLATES}/${file} ${WRKSRC}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|