aboutsummaryrefslogtreecommitdiff
path: root/ftp/axel/Makefile
blob: d0d637133550078c4955edc3fbb3ec3fc32373e7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# ex:ts=8
# New ports collection makefile for:	axel
# Date created:			Jul 23, 2001
# Whom:				ijliao
#
# $FreeBSD$
#

PORTNAME=	axel
PORTVERSION=	1.1
PORTREVISION=	1
CATEGORIES=	ftp
MASTER_SITES=	${MASTER_SITE_GENTOO} \
		http://alioth.debian.org/frs/download.php/2287/
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 --i18n=1

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,-O3,${CFLAGS},; s|gcc|${CC}|; \
		s|-pthread|${PTHREAD_LIBS}|' ${WRKSRC}/Makefile.settings

.include <bsd.port.post.mk>