# ex:ts=8
# New ports collection makefile for:	axel
# Date created:			Jul 23, 2001
# Whom:				ijliao
#
# $FreeBSD: ports/ftp/axel/Makefile,v 1.29 2009/07/13 21:40:49 miwi Exp $
#

PORTNAME=	axel
PORTVERSION=	2.3
CATEGORIES=	ftp
MASTER_SITES=	http://alioth.debian.org/frs/download.php/2717/ \
		http://mirror.mcx2.org/
MASTER_SITE_SUBDIR=	distfiles

MAINTAINER=	prudhvi-krishna-bsd@surapaneni.in
COMMENT=	A download accelerator

USE_GMAKE=	yes
HAS_CONFIGURE=	yes
CONFIGURE_ARGS=	--prefix=${PREFIX} --mandir=${MANPREFIX}/man

OPTIONS=	NLS	"I18N support"		on	\
		DEBUG	"Debugging support"	off

.include <bsd.port.pre.mk>

.if !defined(WITHOUT_NLS)
USE_GETTEXT=	yes
USE_ICONV=	yes
PLIST_SUB+=	NLS=""
CONFIGURE_ARGS+=--i18n=1
.else
PLIST_SUB+=	NLS="@comment "
CONFIGURE_ARGS+=--i18n=0
.endif

.if defined(WITH_DEBUG)
CONFIGURE_ARGS+=--debug=1 --strip=0
.endif

MAN1=		axel.1

post-configure:
	@${REINPLACE_CMD} -e 's|gcc|${CC}|; \
		s|-pthread|${PTHREAD_LIBS}|' ${WRKSRC}/Makefile.settings
	@${REINPLACE_CMD} -e '37,38d' \
		-e 's|cn|CN|g' ${WRKSRC}/Makefile
	${MV} ${WRKSRC}/zh_cn.po ${WRKSRC}/zh_CN.po
	@${ECHO} 'CFLAGS+=${CFLAGS}' >> ${WRKSRC}/Makefile.settings

.include <bsd.port.post.mk>
