mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-24 04:33:24 +00:00
334eb0fc61
If a port used other USE_GNOME items it was untouched. The ports that used other USES were fixed by hand. PR: ports/177081 Reviewed by: bapt Approved by: portmgr (miwi)
63 lines
1.4 KiB
Makefile
63 lines
1.4 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= charybdis
|
|
PORTVERSION= 3.4.2
|
|
PORTREVISION= 1
|
|
CATEGORIES= irc net
|
|
MASTER_SITES= http://www.stack.nl/~jilles/irc/ \
|
|
http://www.bayofrum.net/dist/${PORTNAME}/
|
|
DISTFILES= ${DISTNAME}.tbz2 ${DOCSDIST}
|
|
EXTRACT_ONLY= ${DISTFILES:M*tbz2}
|
|
|
|
MAINTAINER= crees@FreeBSD.org
|
|
COMMENT= A powerful IRC daemon, based on ircd-ratbox
|
|
|
|
LICENSE= GPLv2
|
|
|
|
CONFLICTS= ircd-ratbox-[0-9]* ircd-ratbox-devel-[0-9]* \
|
|
nefarious-[0-9]* ircd-hybrid-[0-9]* \
|
|
ptlink-ircd-[0-9]* bnc-[0-9]* \
|
|
expect-[0-9]* whois-[0-9]* undernet-ircu-[0-9]* \
|
|
ru-ircd-hybrid-[0-9]* \
|
|
|
|
.for s in ${MASTER_SITES}
|
|
MASTER_SITES+= $scharybdis-stable-oper-guide/:pdf
|
|
.endfor
|
|
|
|
MAN8= ircd.8
|
|
PORTDOCS= charybdis-oper-guide.pdf
|
|
|
|
USE_LDCONFIG= yes
|
|
USE_AUTOTOOLS= autoconf
|
|
USES= pathfix
|
|
USE_RC_SUBR= ${PORTNAME}
|
|
GNU_CONFIGURE= yes
|
|
USERS= ircd
|
|
GROUPS= ircd
|
|
CONFIGURE_ARGS= --with-confdir=${ETCDIR} \
|
|
--with-helpdir=${DATADIR}/help \
|
|
--with-logdir=/var/log/${PORTNAME} \
|
|
--with-moduledir=${DATADIR}/modules \
|
|
--enable-kqueue
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
. for d in ${PORTDOCS}
|
|
DOCSDIST+= $d:pdf
|
|
. endfor
|
|
.endif
|
|
|
|
pre-su-install:
|
|
@${MKDIR} ${DATADIR}
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
@${MKDIR} ${DOCSDIR}
|
|
@${INSTALL_DATA} ${DISTDIR}/charybdis-oper-guide.pdf ${DOCSDIR}
|
|
.endif
|
|
@${MKDIR} ${ETCDIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/doc/ircd.motd ${ETCDIR}/ircd.motd.sample
|
|
@[ -f ${ETCDIR}/ircd.motd ] || ${CP} -p ${ETCDIR}/ircd.motd.sample \
|
|
${ETCDIR}/ircd.motd
|
|
|
|
.include <bsd.port.mk>
|