aboutsummaryrefslogtreecommitdiff
path: root/irc/thales/Makefile
blob: 4fc331a89f6b6580af0d31d12f0b060f7f1eea21 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# Created by: Gerrit Beine <tux@pinguru.net>

PORTNAME=	thales
PORTVERSION=	1.0
PORTREVISION=	5
CATEGORIES=	irc
MASTER_SITES=	GNU

MAINTAINER=	ports@FreeBSD.org
COMMENT=	IRC to MySQL gateway

LICENSE=	GPLv2+
LICENSE_FILE=	${WRKSRC}/COPYING

USES=		gmake mysql shebangfix
SHEBANG_FILES=	examples/MRTG/thalesinfo.pl
USE_RC_SUBR=	thales

GNU_CONFIGURE=	yes
CONFIGURE_ARGS=	--with-ircd=${_IRCD} \
		--prefix=${PREFIX}/sbin/thales \
		--with-mysql=${LOCALBASE} \
		--with-mysql-libraries=${LOCALBASE}/lib/mysql

OPTIONS_DEFINE=	MODES DOCS EXAMPLES
OPTIONS_RADIO=	IRCD
OPTIONS_RADIO_IRCD=	HYBRID
OPTIONS_DEFAULT=MODES
MODES_DESC=		Support modes in the database
HYBRID_DESC=	Build for ircd-hybrid

MODES_CONFIGURE_OFF=	--enable-no-modes
HYBRID_RUN_DEPENDS=	${LOCALBASE}/bin/ircd:irc/ircd-hybrid
HYBRID_VARS=		_IRCD=hybrid IS_INTERACTIVE=yes

post-patch: .SILENT
	${FIND} -d ${WRKSRC} -type d -name CVS -exec ${RM} -r {} \;
	${REINPLACE_CMD} -e 's,thales.conf,${PREFIX}/etc/&,' \
		${WRKSRC}/src/conf.h
# Fix the build with -fno-common (for Clang 11 and GCC 10)
	${REINPLACE_CMD} -e '/total_read, total_written/s,^,extern ,' \
		${WRKSRC}/src/sockutil.h

do-install:
	@${MKDIR} ${STAGEDIR}${DATADIR}
	${INSTALL_PROGRAM} ${WRKSRC}/src/thales ${STAGEDIR}${PREFIX}/sbin
	${INSTALL_DATA} ${WRKSRC}/data/thales.conf.default ${STAGEDIR}${PREFIX}/etc
	${INSTALL_DATA} ${WRKSRC}/data/*.sql ${STAGEDIR}${DATADIR}
	@${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ${STAGEDIR}${DATADIR}/tools
	${CP} -r ${WRKSRC}/examples/* ${STAGEDIR}${EXAMPLESDIR}
	${CP} -r ${WRKSRC}/tools/* ${STAGEDIR}${DATADIR}/tools

.include <bsd.port.mk>