mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
46 lines
968 B
Makefile
46 lines
968 B
Makefile
# Created by: Oliver Eikemeier
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= miau
|
|
PORTVERSION= 0.6.6
|
|
CATEGORIES= irc ipv6
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= dhn@FreeBSD.org
|
|
COMMENT= A fully featured easy to use IRC-bouncer
|
|
|
|
USE_BZIP2= yes
|
|
USES= iconv
|
|
GNU_CONFIGURE= yes
|
|
|
|
INFO= miau
|
|
|
|
CONFIGURE_ARGS= --enable-dccbounce \
|
|
--enable-automode \
|
|
--enable-releasenick \
|
|
--enable-ctcp-replies \
|
|
--enable-mkpasswd \
|
|
--enable-uptime \
|
|
--enable-chanlog \
|
|
--enable-privlog \
|
|
--enable-onconnect \
|
|
--enable-empty-awaymsg \
|
|
--enable-dumpstatus \
|
|
--disable-dependency-tracking
|
|
CONFIGURE_ENV= LIBS="${LIBS}"
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
|
|
.if defined(WITH_IPV6)
|
|
CONFIGURE_ARGS+= --enable-ipv6
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's,\$$datadir/doc/miau/examples,${EXAMPLESDIR},g' \
|
|
${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT}
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/ChangeLog ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|