mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-13 03:03:15 +00:00
62 lines
2.0 KiB
Makefile
62 lines
2.0 KiB
Makefile
# Created by: Andrew Pantyukhin <infofarmer@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= aria2
|
|
PORTVERSION= 1.33.1
|
|
CATEGORIES= www
|
|
MASTER_SITES= https://github.com/${PORTNAME}/${PORTNAME}/releases/download/release-${PORTVERSION}/ \
|
|
LOCAL/sunpoet
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= Yet another download tool
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
OPTIONS_DEFINE= CA_BUNDLE DOCS NLS SQLITE SSH2
|
|
OPTIONS_DEFAULT=SQLITE
|
|
OPTIONS_SUB= yes
|
|
CA_BUNDLE_DESC= Use CA bundle from Mozilla Project
|
|
SSH2_DESC= SSH2 protocol support
|
|
|
|
CONFIGURE_ARGS= --disable-epoll --enable-bittorrent --enable-libaria2 \
|
|
--enable-metalink --enable-shared --enable-ssl --enable-static \
|
|
--enable-threads=posix --enable-websocket \
|
|
--with-disk-cache=${ARIA2_DISK_CACHE} \
|
|
--with-libxml2 --with-libz --with-openssl \
|
|
--without-appletls --without-gnutls --without-libcares \
|
|
--without-libexpat --without-libgcrypt --without-libgmp \
|
|
--without-libnettle --without-libuv
|
|
CONFIGURE_ENV= OPENSSL_CFLAGS=-I${OPENSSLINC} \
|
|
OPENSSL_LIBS="-L${OPENSSLLIB} -lcrypto -lssl" \
|
|
ac_cv_path_RST2HTML=no
|
|
GNU_CONFIGURE= yes
|
|
INSTALL_TARGET= install-strip
|
|
USE_CXXSTD= c++11
|
|
USE_GNOME= libxml2
|
|
USE_LDCONFIG= yes
|
|
USE_RC_SUBR= ${PORTNAME}
|
|
USES= compiler:c++11-lib gnome libtool pathfix pkgconfig ssl tar:xz
|
|
|
|
PORTDOCS= *
|
|
|
|
CA_BUNDLE_CONFIGURE_OFF=--without-ca-bundle
|
|
CA_BUNDLE_CONFIGURE_ON= --with-ca-bundle=${LOCALBASE}/share/certs/ca-root-nss.crt
|
|
CA_BUNDLE_RUN_DEPENDS= ${LOCALBASE}/share/certs/ca-root-nss.crt:security/ca_root_nss
|
|
NLS_CONFIGURE_OFF= --disable-nls --without-libintl-prefix
|
|
NLS_CONFIGURE_ON= --with-libintl-prefix=${LOCALBASE}
|
|
NLS_LDFLAGS= -lintl
|
|
NLS_USES= gettext localbase
|
|
SQLITE_CONFIGURE_WITH= sqlite3
|
|
SQLITE_USES= sqlite
|
|
SSH2_CONFIGURE_WITH= libssh2
|
|
SSH2_LIB_DEPENDS= libssh2.so:security/libssh2
|
|
|
|
ARIA2_DISK_CACHE?= 16M
|
|
|
|
post-install:
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/etc/bash_completion.d/
|
|
${INSTALL_DATA} ${WRKSRC}/doc/bash_completion/aria2c ${STAGEDIR}${PREFIX}/etc/bash_completion.d/
|
|
|
|
.include <bsd.port.mk>
|