ports/irc/ircproxy/Makefile
Peter Pentchev 8e58200b71 Well, yeah, leave it to me to test an update and all dependent ports,
notify maintainers, wait for a couple of days, and then only commit
the update itself, leaving the dependent ports un-updated :(

Bump the shared lib dependency on ports touched by the c-ares update.

Pointy hat to:	roam (myself)
2009-06-15 12:10:15 +00:00

53 lines
1.0 KiB
Makefile

# New ports collection makefile for: ircproxy
# Date created: 10 July 2003
# Whom: Jonas Kvinge <jonas@night-light.net>
#
# $FreeBSD$
#
PORTNAME= ircproxy
PORTVERSION= 1.3.3c
PORTREVISION= 1
CATEGORIES= irc
MASTER_SITES= SF
MAINTAINER= jonas@night-light.net
COMMENT= An IRC proxy/bouncer daemon
LIB_DEPENDS= cares.2:${PORTSDIR}/dns/c-ares
GNU_CONFIGURE= yes
LDFLAGS+= -L${LOCALBASE}/lib
CFLAGS+= -I${LOCALBASE}/include
OPTIONS= SSL "Enable SSL support" on \
IPV6 "Enable IPv6 support" on \
MEMDEBUG "Enable memory debugging" on \
FDDEBUG "Enable file descriptor debugging" on
.include <bsd.port.pre.mk>
.if defined(WITH_SSL)
.include "${PORTSDIR}/Mk/bsd.openssl.mk"
.else
CONFIGURE_ARGS+= --disable-ssl
.endif
.if !defined(WITH_IPV6)
CONFIGURE_ARGS+= --disable-ipv6
.endif
.if defined(WITH_MEMDEBUG)
CONFIGURE_ARGS+= --enable-memdebug
.else
CONFIGURE_ARGS+= --disable-memdebug
.endif
.if defined(WITH_FDDEBUG)
CONFIGURE_ARGS+= --enable-fddebug
.else
CONFIGURE_ARGS+= --disable-fddebug
.endif
.include <bsd.port.post.mk>