908e590ee8
PR: 132069 Submitted by: Dennis Herrmann <adox@mcx2.org> Approved by: maintainer timeout
52 lines
1.1 KiB
Makefile
52 lines
1.1 KiB
Makefile
# ex:ts=8
|
|
# New ports collection makefile for: axel
|
|
# Date created: Jul 23, 2001
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
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= prudhvikrishna@gmail.com
|
|
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>
|