openbsd-ports/comms/conserver/Makefile

53 lines
1.2 KiB
Makefile
Raw Normal View History

# $OpenBSD: Makefile,v 1.53 2015/08/12 07:45:04 sthen Exp $
2001-05-05 18:39:36 -04:00
COMMENT= manage remote serial consoles via TCP/IP
1998-04-28 23:31:56 -04:00
2015-06-10 09:07:33 -04:00
DISTNAME= conserver-8.2.1
REVISION= 0
1998-04-28 23:31:56 -04:00
CATEGORIES= comms
MAINTAINER= Stuart Henderson <sthen@openbsd.org>
2010-11-07 15:47:08 -05:00
HOMEPAGE= http://www.conserver.com/
2004-03-02 02:57:20 -05:00
# BSD
2000-05-27 19:49:39 -04:00
PERMIT_PACKAGE_CDROM= Yes
2010-09-03 10:39:07 -04:00
WANTLIB += c util
FLAVORS= ipmi net
FLAVOR?=
2000-02-12 01:29:49 -05:00
MASTER_SITES= ${HOMEPAGE} \
ftp://ftp.conserver.com/conserver/
2002-10-25 07:34:24 -04:00
AUTOCONF_VERSION= 2.68
CONFIGURE_STYLE= autoconf
CONFIGURE_ARGS= --with-master=localhost \
--with-pidfile=${LOCALSTATEDIR}/run/conserver/conserver.pid
.if ${FLAVOR:Mnet}
# not yet using experimental IPv6 support added in 8.2.0; investigate
# implications of ifdef'ing out ProbeInterfaces in cutil.c before enabling
WANTLIB+= crypto ssl
CONFIGURE_ARGS+= --with-openssl \
--with-port=3109
.else
CONFIGURE_ARGS+= --with-uds=${LOCALSTATEDIR}/run/conserver \
--with-trust-uds-cred
.endif
.if ${FLAVOR:Mipmi}
CONFIGURE_ARGS+= --with-freeipmi=yes
LIB_DEPENDS+= sysutils/freeipmi
WANTLIB+= freeipmi ipmiconsole pthread
.endif
post-install:
${INSTALL_DATA} ${WRKSRC}/conserver.cf/samples/* \
${FILESDIR}/console.cf ${PREFIX}/share/examples/conserver/
2013-03-10 21:30:26 -04:00
TEST_TARGET= test
1998-04-28 23:31:56 -04:00
.include <bsd.port.mk>