# New ports collection makefile for:   epic5
# Date created:                24 February 2005
# Whom:                        Josh Paetzel <josh@tcbug.org>
#
# $FreeBSD: ports/irc/epic5/Makefile,v 1.54 2005/03/13 20:07:54 flz Exp $
#

PORTNAME=	epic5
PORTVERSION=	0.0.3
CATEGORIES=	irc ipv6
MASTER_SITES=	http://www.tcbug.org/ \
		ftp://ftp.epicsol.org/pub/epic/EPIC5-BETA/

MAINTAINER=	josh@tcbug.org
COMMENT=	The (E)nhanced (P)rogrammable (I)RC-II (C)lient

CONFLICTS=	epic4-*

GNU_CONFIGURE=	yes
MAN1=		epic5.1
USE_OPENSSL=	yes

.include <bsd.port.pre.mk>

##  WITHOUT_IPV6:   disable IPv6 support
#
.if defined(WITHOUT_IPV6)
CONFIGURE_ARGS+=	--without-ipv6
.endif

##  WITH_TCL:       enable Tcl support
#
.if defined(WITH_TCL)
LIB_DEPENDS+=		tcl84:${PORTSDIR}/lang/tcl84
CONFIGURE_ARGS+=	--with-tcl
.endif

##  WITH_SOCKS5:    enable SOCKS5 support
#
.if defined(WITH_SOCKS5)
LIB_DEPENDS+=		socks5:${PORTSDIR}/net/socks5
CONFIGURE_ARGS+=	--with-socks5
.endif

##  WITH_PERL:      enable perl5 support (requires perl 5.6.1 or newer)
#
# The path provided to --with-perl is needed, since the configure script
# looks for libperl.so in places very specific to Linux.  Possibly a
# patch to configure would be a better idea, but we need to rely on
# SITE_PERL and PERL_VER to create the path.
#
.if defined(WITH_PERL)
.if ${PERL_LEVEL} < 500601
IGNORE=		"Perl 5.6.1 or newer is required; we recommend perl 5.8.5"
.endif
USE_PERL5=	yes
CONFIGURE_ARGS+=	--with-perl=${SITE_PERL}/../../${PERL_VER}/mach/CORE
.endif

post-extract:
	@${FIND} ${WRKDIR} -type d -name CVS | ${XARGS} ${RM} -rf

post-install:
.if !defined(NOPORTDOCS)
	${MKDIR} ${DOCSDIR}
.for i in BUG_FORM COPYRIGHT KNOWNBUGS README UPDATES VOTES
	${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
.endfor
.endif

.include <bsd.port.post.mk>
