diff options
author | Nuno Teixeira <eduardo@FreeBSD.org> | 2022-07-10 02:56:23 +0000 |
---|---|---|
committer | Nuno Teixeira <eduardo@FreeBSD.org> | 2022-07-10 02:58:35 +0000 |
commit | 45429a57c212da4643a0312395174eb69ed85279 (patch) | |
tree | 878bb7ab9e17e041e9110c087a8b1d669a792419 /comms/conserver-com/Makefile | |
parent | 6f77116de779ba65de5a7fedab5f7221daddf296 (diff) |
comms/conserver-com: Adopt/Update to 8.2.7
- switch to MASTER_SITES
- regen files/patch-Makefile.in -> files/patch-conserver_Makefile.in
- reformat Makefile with portfmt
ChangeLog: https://github.com/bstansell/conserver/releases/tag/v8.2.7
Diffstat (limited to 'comms/conserver-com/Makefile')
-rw-r--r-- | comms/conserver-com/Makefile | 44 |
1 files changed, 23 insertions, 21 deletions
diff --git a/comms/conserver-com/Makefile b/comms/conserver-com/Makefile index c60a2ae406bf..33fb843fa0ef 100644 --- a/comms/conserver-com/Makefile +++ b/comms/conserver-com/Makefile @@ -1,39 +1,46 @@ PORTNAME= conserver -DISTVERSIONPREFIX= v -DISTVERSION= 8.2.6 +DISTVERSION= 8.2.7 CATEGORIES= comms +MASTER_SITES= https://github.com/bstansell/conserver/releases/download/v${DISTVERSION}/ PKGNAMESUFFIX= -com -MAINTAINER= ports@FreeBSD.org +MAINTAINER= eduardo@FreeBSD.org COMMENT= Application that allows multiple users to watch serial consoles LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE USES= autoreconf:2.69 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 +CONFIGURE_ARGS= --with-libwrap \ + --with-master=${DEFAULTHOST} \ + --with-openssl \ + --with-pam \ + --with-port=${DEFAULTPORT} CONFLICTS_INSTALL= conserver -OPTIONS_DEFINE= FREEIPMI GSSAPI GSSAPIONLY STRIPREALM UDS -FREEIPMI_DESC= Compile in FreeIPMI support -GSSAPIONLY_DESC=Never prompt for a password when using GSSAPI +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_DESC= Strip @REALM when using GSSAPI STRIPREALM_IMPLIES= GSSAPI -UDS_DESC= Use Unix domain sockets for client/server +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 +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 +UDS_CONFIGURE_WITH= uds + +post-extract: +.for file in config.guess config.sub + ${CP} -f ${TEMPLATES}/${file} ${WRKSRC} +.endfor post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/sbin/conserver-convert @@ -41,9 +48,4 @@ post-install: DEFAULTPORT?= 782 DEFAULTHOST?= localhost -post-extract: -.for file in config.guess config.sub - ${CP} -f ${TEMPLATES}/${file} ${WRKSRC} -.endfor - .include <bsd.port.mk> |