1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-26 05:02:18 +00:00
freebsd-ports/irc/anope/Makefile
Dennis Herrmann 2b3b399de8 - Use my FreeBSD address on the ports I maintain
Approved by:	tabthorpe (co-mentor)
2009-03-06 18:14:36 +00:00

55 lines
1021 B
Makefile

# New ports collection makefile for: anope
# Date created: 13/04/2004
# Whom: mat
#
# $FreeBSD$
#
PORTNAME= anope
PORTVERSION= 1.8.0
CATEGORIES= irc
MASTER_SITES= SF
MAINTAINER= dhn@FreeBSD.org
COMMENT= A set of IRC services for IRC networks
USE_GMAKE= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --with-bindir=${PREFIX}/libexec/anope \
--with-datadir=${DATADIR} \
--with-rungroup=ircdru
USE_PERL5_BUILD= yes
PORTDOCS= BUGS COPYING DEFCON EVENTS \
FAQ INSTALL IRCD MODULES MYSQL \
NEWS PROXY README
USE_RC_SUBR= anope
OPTIONS= MYSQL "Use mysql" ON
.include <bsd.port.pre.mk>
# XXX Add here other arch which needs -fPIC :-)
.if ${ARCH} == "amd64" || ${ARCH} == "ia64"
CFLAGS+= -fPIC
.endif
.if defined(WITH_MYSQL)
USE_MYSQL= yes
.else
CONFIGURE_ARGS+= --without-mysql
.endif
pre-install:
@${MKDIR} ${PREFIX}/libexec/anope
@${MKDIR} ${DATADIR}
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
@${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/docs/,} ${DOCSDIR}/
.endif
.include <bsd.port.post.mk>