mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
0f595a2990
- Use datadir macro PR: ports/119174 Submitted by: Jonas Kvinge <jonas@night-light.net> Approved by: linimon (mentor)
51 lines
1022 B
Makefile
51 lines
1022 B
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
|
|
CATEGORIES= irc
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= jonas@night-light.net
|
|
COMMENT= An IRC proxy/bouncer daemon
|
|
|
|
LIB_DEPENDS= cares.1:${PORTSDIR}/dns/c-ares
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --prefix=${LOCALBASE}
|
|
|
|
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>
|