mirror of
https://git.freebsd.org/ports.git
synced 2025-06-04 12:26:27 -04:00
Update maintainer email
Convert to new options framework PR: ports/168580 Submitted by: Oleg Ginzburg <olevole@olevole.ru>
This commit is contained in:
parent
779f9aecef
commit
67d6dd12e0
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=298032
1 changed files with 19 additions and 17 deletions
|
@ -10,47 +10,49 @@ PORTVERSION= 2.12
|
||||||
CATEGORIES= net
|
CATEGORIES= net
|
||||||
MASTER_SITES= http://downloads.mikekohn.net/nakenchat/
|
MASTER_SITES= http://downloads.mikekohn.net/nakenchat/
|
||||||
|
|
||||||
MAINTAINER= oleg.ginzburg@nevosoft.ru
|
MAINTAINER= olevole@olevole.ru
|
||||||
COMMENT= Small (under 50k) chat server with many features
|
COMMENT= Small (under 50k) chat server with many features
|
||||||
|
|
||||||
HAS_CONFIGURE= yes
|
HAS_CONFIGURE= yes
|
||||||
USE_RC_SUBR= nakenchat
|
USE_RC_SUBR= nakenchat
|
||||||
|
|
||||||
OPTIONS= KEEPALIVEOFF "Disable socket keepalive option" off \
|
OPTIONS_DEFINE= KEEPALIVEOFF USERCHANLISTOFF DEBUG HIDDENCAVES DOTQ FUSERLIST ELITEFILTER
|
||||||
USERCHANLISTOFF "Disable userlist based on channel" off \
|
|
||||||
DEBUG "Compile in debug code" off \
|
|
||||||
HIDDENCAVES "Enable hidden caves feature" off \
|
|
||||||
DOTQ "compile in .Q option" off \
|
|
||||||
FUSERLIST "support to save current userlist to a file" off \
|
|
||||||
ELITEFILTER "Enable the 3li73 filter" off
|
|
||||||
|
|
||||||
.include <bsd.port.pre.mk>
|
KEEPALIVEOFF_DESC= Disable socket keepalive option
|
||||||
|
USERCHANLISTOFF_DESC= Disable userlist based on channel
|
||||||
|
DEBUG_DESC= Compile in debug code
|
||||||
|
HIDDENCAVES_DESC= Enable hidden caves feature
|
||||||
|
DOTQ_DESC= compile in .Q option
|
||||||
|
FUSERLIST_DESC= support to save current userlist to a file
|
||||||
|
ELITEFILTER_DESC= Enable the 3li73 filter
|
||||||
|
|
||||||
.if defined(WITH_KEEPALIVEOFF)
|
.include <bsd.port.options.mk>
|
||||||
|
|
||||||
|
.if ${PORT_OPTIONS:MWITH_KEEPALIVEOFF}
|
||||||
CONFIGURE_ARGS+= --disable-keepalive
|
CONFIGURE_ARGS+= --disable-keepalive
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
.if defined(WITH_USERCHANLISTOFF)
|
.if ${PORT_OPTIONS:MWITH_USERCHANLISTOFF}
|
||||||
CONFIGURE_ARGS+= --disable-userchanlist
|
CONFIGURE_ARGS+= --disable-userchanlist
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
.if defined(WITH_DEBUG)
|
.if ${PORT_OPTIONS:MWITH_DEBUG}
|
||||||
CONFIGURE_ARGS+= --enable-debug
|
CONFIGURE_ARGS+= --enable-debug
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
.if defined(WITH_HIDDENCAVES)
|
.if ${PORT_OPTIONS:MWITH_HIDDENCAVES}
|
||||||
CONFIGURE_ARGS+= --enable-hidden-caves
|
CONFIGURE_ARGS+= --enable-hidden-caves
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
.if defined(WITH_DOTQ)
|
.if ${PORT_OPTIONS:MWITH_DOTQ}
|
||||||
CONFIGURE_ARGS+= --enable-dotQ
|
CONFIGURE_ARGS+= --enable-dotQ
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
.if defined(WITH_FUSERLIST)
|
.if ${PORT_OPTIONS:MWITH_FUSERLIST}
|
||||||
CONFIGURE_ARGS+= --enable-whofile
|
CONFIGURE_ARGS+= --enable-whofile
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
.if defined(WITH_ELITEFILTER)
|
.if ${PORT_OPTIONS:MWITH_ELITEFILTER}
|
||||||
CONFIGURE_ARGS+= --enable-elite
|
CONFIGURE_ARGS+= --enable-elite
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
|
@ -59,4 +61,4 @@ post-install:
|
||||||
${CP} -p ${PREFIX}/etc/nakenchat.conf.sample ${PREFIX}/etc/nakenchat.conf ; \
|
${CP} -p ${PREFIX}/etc/nakenchat.conf.sample ${PREFIX}/etc/nakenchat.conf ; \
|
||||||
fi
|
fi
|
||||||
|
|
||||||
.include <bsd.port.post.mk>
|
.include <bsd.port.mk>
|
||||||
|
|
Loading…
Add table
Reference in a new issue