blob: f048692c1d643cb0c4bec5030682a04c9954c0d1 (
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
# Ports collection makefile for: GNU Thales
# Date created: 30 May 2004
# Whom: Gerrit Beine <tux@pinguru.net>
#
# $FreeBSD$
#
PORTNAME= thales
PORTVERSION= 1.0
PORTREVISION= 2
CATEGORIES= irc
MASTER_SITES= ${MASTER_SITE_GNU}
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= ports@FreeBSD.org
COMMENT= GNU Thales -- An IRC to MySQL gateway
GNU_CONFIGURE= yes
USE_GMAKE= yes
USE_MYSQL= yes
USE_RC_SUBR= thales
# Currently, not all supported IRCDs are handled here, only the ones
# I could find corresponding RUN_DEPENDS in our Ports Collection.
.if defined(WITH_IRCD) && ${WITH_IRCD} == hybrid
RUN_DEPENDS= ${LOCALBASE}/bin/ircd:${PORTSDIR}/irc/ircd-hybrid
IS_INTERACTIVE= yes
.elif defined(WITH_IRCD) && ${WITH_IRCD} == ircdru
RUN_DEPENDS= ${LOCALBASE}/sbin/ircd:${PORTSDIR}/irc/ircd-ru
IS_INTERACTIVE= yes
.else
WITH_IRCD= unreal
RUN_DEPENDS= ${LOCALBASE}/libexec/ircd:${PORTSDIR}/irc/unreal
.endif
# ``Assign with expansion'' is needed here, otherwise we cannot override
# WITH_IRCD value supplied as make(1) argument (which can be bogus).
CONFIGURE_ARGS:= --with-ircd=${WITH_IRCD} \
--prefix=${PREFIX}/sbin/thales \
--with-mysql=${LOCALBASE} \
--with-mysql-libraries=${LOCALBASE}/lib/mysql
.if defined(WITHOUT_MODES)
CONFIGURE_ARGS+= --enable-no-modes
.endif
pre-everything:: .SILENT
${ECHO_CMD} ""
${ECHO_CMD} "You may specify the IRCD which thales is compiled for"
${ECHO_CMD} ""
${ECHO_CMD} " WITH_IRCD=foo"
${ECHO_CMD} ""
${ECHO_CMD} "The default value is \"unreal\". Other possible values are:"
${ECHO_CMD} " bahamut, hybrid, ircdru, unreal, ultimate28, ultimate30"
${ECHO_CMD} ""
${ECHO_CMD} "Additinal tunables:"
${ECHO_CMD} ""
${ECHO_CMD} " WITHOUT_MODES Disable modes in the database (default: on)"
${ECHO_CMD} ""
post-patch: .SILENT
${FIND} -d ${WRKSRC} -type d -name CVS -exec ${RM} -rf {} \;
${REINPLACE_CMD} -e 's,thales.conf,${PREFIX}/etc/&,' \
${WRKSRC}/src/conf.h
do-install:
@${MKDIR} ${DATADIR}
${INSTALL_PROGRAM} ${WRKSRC}/src/thales ${PREFIX}/sbin
${INSTALL_DATA} ${WRKSRC}/data/thales.conf.default ${PREFIX}/etc
${INSTALL_DATA} ${WRKSRC}/data/*.sql ${DATADIR}
.if !defined(NOPORTDOCS)
@${MKDIR} ${EXAMPLESDIR} ${DATADIR}/tools
${CP} -r ${WRKSRC}/examples/* ${EXAMPLESDIR}
${CP} -r ${WRKSRC}/tools/* ${DATADIR}/tools
.endif
.include <bsd.port.mk>
|