openbsd-ports/www/aria2/Makefile
gonzalo fc100b69f7 Update for Aria2 1.16.4:
* Bring back datetime in console log
* Run checksum check if -V and -c are used and file is completed
* Support for gzipped -i and --save-session
* Support BitTorrent UDP tracker

Ok benoit@
2013-03-21 18:08:03 +00:00

43 lines
924 B
Makefile

# $OpenBSD: Makefile,v 1.23 2013/03/21 18:08:03 gonzalo Exp $
COMMENT = lightweight multi-protocol & multi-source download utility
DISTNAME = aria2-1.16.4
CATEGORIES = www
HOMEPAGE = http://aria2.sourceforge.net/
MAINTAINER = Gonzalo L. R. <gonzalo@openbsd.org>
# GPLv2
PERMIT_PACKAGE_CDROM = Yes
MASTER_SITES = ${MASTER_SITE_SOURCEFORGE:=aria2/}
MODULES = devel/gettext
LIB_DEPENDS = net/libcares
TEST_DEPENDS += devel/cppunit
WANTLIB += c cares crypto expat m sqlite3 ssl stdc++ z
CONFIGURE_STYLE = gnu
CONFIGURE_ENV = CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
CONFIGURE_ARGS += --with-sqlite3 \
--with-openssl \
--without-gnutls \
--with-libz \
--with-libcares \
--with-libexpat \
--without-libxml2
# Prevent gcc 4.2.1 from running out of memory.
.if ${MACHINE_ARCH:Mmips64*}
CFLAGS += -O0
.endif
TEST_FLAGS += LDFLAGS="-lcppunit"
.include <bsd.port.mk>