mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-20 04:02:27 +00:00
5427637080
- Cleanup Makefile header Changes: http://sourceforge.net/projects/aria2/files/stable/aria2-1.16.0/README.rst/view Feature safe: yes
85 lines
2.1 KiB
Makefile
85 lines
2.1 KiB
Makefile
# Created by: Andrew Pantyukhin <infofarmer@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= aria2
|
|
PORTVERSION= 1.16.0
|
|
CATEGORIES= www
|
|
MASTER_SITES= SF/${PORTNAME}/stable/${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= Yet another download tool
|
|
|
|
LICENSE= GPLv2
|
|
|
|
OPTIONS_DEFINE= DOCS NLS SQLITE
|
|
OPTIONS_DEFAULT=SQLITE
|
|
|
|
CONFIGURE_ARGS= --enable-bittorrent --disable-epoll --enable-metalink --enable-threads=pth \
|
|
--with-libz --with-libxml2 --with-openssl \
|
|
--without-gnutls --without-libcares
|
|
CONFIGURE_ENV= OPENSSL_CFLAGS=-I${OPENSSLINC} OPENSSL_LIBS="-L${OPENSSLLIB} -lssl" \
|
|
ZLIB_CFLAGS=-I${INCLUDEDIR} ZLIB_LIBS="-L${LIBDIR} -lz"
|
|
GNU_CONFIGURE= yes
|
|
MAKE_JOBS_SAFE= yes
|
|
USE_BZIP2= yes
|
|
USE_GNOME= gnomehack libxml2
|
|
USE_OPENSSL= yes
|
|
|
|
MAN1= aria2c.1
|
|
MANLANG= "" ru
|
|
PLIST_FILES= bin/aria2c
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
PLIST_FILES+= %%DOCSDIR%%/README \
|
|
%%DOCSDIR%%/README.html \
|
|
%%DOCSDIR%%/README.rst \
|
|
%%DOCSDIR%%/bash_completion/README.txt \
|
|
%%DOCSDIR%%/bash_completion/aria2c \
|
|
%%DOCSDIR%%/xmlrpc/README.txt \
|
|
%%DOCSDIR%%/xmlrpc/aria2mon \
|
|
%%DOCSDIR%%/xmlrpc/aria2rpc
|
|
PLIST_DIRS= %%DOCSDIR%%/xmlrpc \
|
|
%%DOCSDIR%%/bash_completion \
|
|
%%DOCSDIR%%
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MNLS}
|
|
CONFIGURE_ARGS+=--with-libintl-prefix=${LOCALBASE}
|
|
USE_GETTEXT= yes
|
|
LANGS= en@boldquot en@quot fil kk oc zh_HK
|
|
LANGS_MTREE= ar bg bn ca da de el es fa fi fr he hr hu id it ja ko ms nb nl \
|
|
nn pl pt pt_BR ro ru sk sr sv th tr uk vi zh_CN zh_TW
|
|
.for lang in ${LANGS} ${LANGS_MTREE}
|
|
PLIST_FILES+= share/locale/${lang}/LC_MESSAGES/${PORTNAME}.mo
|
|
.endfor
|
|
.for lang in ${LANGS}
|
|
PLIST_DIRSTRY+= share/locale/${lang}/LC_MESSAGES \
|
|
share/locale/${lang}
|
|
.endfor
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-nls
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MSQLITE}
|
|
CONFIGURE_ARGS+=--with-sqlite3
|
|
USE_SQLITE= yes
|
|
.else
|
|
CONFIGURE_ARGS+=--without-sqlite3
|
|
.endif
|
|
|
|
post-patch:
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
.else
|
|
@${REINPLACE_CMD} -e 's|\(install-exec-am\) install-data-am|\1|' ${WRKSRC}/Makefile.in ${WRKSRC}/doc/Makefile.in
|
|
.endif
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} == "powerpc" && ${OSVERSION} > 900000
|
|
BROKEN= Does not install on powerpc-9
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|