mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
82c16827c5
StaticBox and SorceryNet. A variant of charybdis has currently been deployed on Freenode. WWW: http://www.atheme.org/project/charybdis PR: ports/155316 Submitted by: Chris Rees <utisoft at gmail.com>
52 lines
1.1 KiB
Makefile
52 lines
1.1 KiB
Makefile
# New ports collection Makefile for: charybdis
|
|
# Date created: 6th March 2011
|
|
# Whom: Chris Rees <utisoft@gmail.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= charybdis
|
|
PORTVERSION= 3.3.0
|
|
CATEGORIES= irc net
|
|
MASTER_SITES= http://www.stack.nl/~jilles/irc/ \
|
|
http://www.bayofrum.net/dist/${PORTNAME}/
|
|
EXTRACT_SUFX= .tbz2
|
|
|
|
MAINTAINER= utisoft@gmail.com
|
|
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]*
|
|
|
|
MAN8= ircd.8
|
|
|
|
USE_LDCONFIG= yes
|
|
USE_RC_SUBR= ${PORTNAME}
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-confdir=${ETCDIR} \
|
|
--with-helpdir=${DATADIR}/help \
|
|
--with-logdir=/var/log/${PORTNAME} \
|
|
--with-moduledir=${DATADIR}/modules \
|
|
--enable-kqueue
|
|
|
|
USERS= ircd
|
|
GROUPS= ircd
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e \
|
|
's#(libdir)/pkgconfig#${PREFIX}/libdata/pkgconfig#' \
|
|
${WRKSRC}/libratbox/Makefile.in
|
|
# Fix BANDB path madness
|
|
@${REINPLACE_CMD} -e 's#bandb_dpath != NULL#0#' \
|
|
${WRKSRC}/bandb/rsdb_sqlite3.c
|
|
|
|
pre-su-install:
|
|
@${MKDIR} ${DATADIR}
|
|
|
|
.include <bsd.port.mk>
|