summaryrefslogtreecommitdiffstats
path: root/ftp/wget2/DEPENDS
diff options
context:
space:
mode:
Diffstat (limited to 'ftp/wget2/DEPENDS')
-rwxr-xr-xftp/wget2/DEPENDS77
1 files changed, 77 insertions, 0 deletions
diff --git a/ftp/wget2/DEPENDS b/ftp/wget2/DEPENDS
new file mode 100755
index 0000000000..454e2a4ae1
--- /dev/null
+++ b/ftp/wget2/DEPENDS
@@ -0,0 +1,77 @@
+depends smgl-fhs &&
+
+optional_depends pcre2 \
+ "--with-libpcre2" \
+ "--without-libpcre2" \
+ "for PCRE2 regular expressions" &&
+
+optional_depends pcre \
+ "--with-libpcre" \
+ "--without-libpcre" \
+ "for Perl-style regular expressions" &&
+
+optional_depends libidn2 \
+ "--with-libidn2" \
+ "--without-libidn2" \
+ "for IDN2 support" &&
+
+optional_depends libidn \
+ "--with-libidn" \
+ "--without-libidn" \
+ "for IDN support" &&
+
+optional_depends "GETTEXT" \
+ "--enable-nls" \
+ "--disable-nls" \
+ "for i18n support" &&
+
+optional_depends libpsl \
+ '--with-libpsl' \
+ '--without-libpsl' \
+ 'for PSL cookie checking' &&
+
+optional_depends zlib \
+ '--with-zlib' \
+ '--without-zlib' \
+ 'gzip compression support' &&
+
+optional_depends xz-utils \
+ '--with-lzma' \
+ '--without-lzma' \
+ 'LZMA compression support' &&
+
+optional_depends bzip2 \
+ '--with-bzip2' \
+ '--without-bzip2' \
+ 'bzip2 compression support' &&
+
+optional_depends brotli \
+ '--with-brotlidec' \
+ '--without-brotlidec' \
+ 'Brotli compression support' &&
+
+optional_depends zstd \
+ '--with-zstd' \
+ '--without-zstd' \
+ 'Zstandard compression support' &&
+
+optional_depends gpgme \
+ '--with-gpgme' \
+ '--without-gpgme' \
+ 'GPGME support' &&
+
+optional_depends nghttp2 \
+ '--without-libnghttp2' \
+ '--without-libnghttp2' \
+ 'HTTP2 support' &&
+
+case $WGET_SSL in
+ none)
+ ;;
+ gnutls) depends gnutls "--with-ssl=gnutls"
+ ;;
+ SSL)
+ depends SSL "--with-ssl=openssl" &&
+ optional_depends ca-certificates '' '' 'provides security certificates'
+ ;;
+esac