mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-27 00:57:50 +00:00
28fe8e4844
is multi-platform and builds on Windows(2k,XP), Linux and Mac OS X. Besides that, it is a multi-threaded download manager. This means that it can split a file into several pieces and download the pieces simultaneously. Features: * Faster downloads (with Segmented/Multi-threaded/Accelerated transfers). * Download resuming (Pause and restart where you stopped). * Download scheduling. * Organizes files you have already downloaded. * View server messages (HTTP, FTP, file://). No HTTPS support. * Available in multiple languages and easily translated. Now available in Portuguese [Brazil], Spanish, English, German, Russian, Hungarian, Armenian and Indonesian. * Connection to FTP servers which require a password. * Calculates the MD5 checksum of downloaded files so they can be easily. verified. * Metalink support. WWW: http://dfast.sourceforge.net/
37 lines
780 B
Makefile
37 lines
780 B
Makefile
# New ports collection makefile for: wxdfast
|
|
# Date created: 2006-11-07
|
|
# Whom: alepulver
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= wxdfast
|
|
PORTVERSION= 0.5.3
|
|
CATEGORIES= ftp www
|
|
MASTER_SITES= SF/dfast
|
|
DISTNAME= ${PORTNAME}_${PORTVERSION}
|
|
|
|
MAINTAINER= alepulver@FreeBSD.org
|
|
COMMENT= A great multithreaded and multi-platform download manager
|
|
|
|
USE_GETTEXT= yes
|
|
USE_WX= 2.6
|
|
WX_CONF_ARGS= relative
|
|
WX_UNICODE= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --mandir="${MANPREFIX}/man"
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
|
|
|
# Debugging symbols.
|
|
STRIP= #
|
|
CONFIGURE_ARGS+=--enable-debug
|
|
|
|
MAN1= wxdfast.1
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|wxrc|${WXRC_CMD:T}|' \
|
|
${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT}
|
|
@${REINPLACE_CMD} -e 's|pt_BR||' ${WRKSRC}/man/Makefile.in
|
|
|
|
.include <bsd.port.mk>
|