pkgsrc-WIP-changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
axel: update to 2.17.14
Module Name: pkgsrc-wip
Committed By: Bartosz Kuzma <bartosz.kuzma%gmail.com@localhost>
Pushed By: bartosz.kuzma
Date: Sun Jul 19 08:26:20 2026 +0200
Changeset: ae4516bd2b62df3d62c5b8ab006f80d4f551987e
Modified Files:
axel/Makefile
axel/PLIST.nls
axel/distinfo
axel/options.mk
Log Message:
axel: update to 2.17.14
To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=ae4516bd2b62df3d62c5b8ab006f80d4f551987e
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
diffstat:
axel/Makefile | 7 +++++--
axel/PLIST.nls | 1 +
axel/distinfo | 6 +++---
axel/options.mk | 33 +++++++++++++++++++--------------
4 files changed, 28 insertions(+), 19 deletions(-)
diffs:
diff --git a/axel/Makefile b/axel/Makefile
index 6789b7d8b4..dd25ef9fed 100644
--- a/axel/Makefile
+++ b/axel/Makefile
@@ -1,6 +1,6 @@
# $NetBSD: Makefile,v 1.8 2012/09/24 16:56:41 asau Exp $
-DISTNAME= axel-2.17.11
+DISTNAME= axel-2.17.14
CATEGORIES= net
MASTER_SITES= ${MASTER_SITE_GITHUB:=axel-download-accelerator/}
GITHUB_RELEASE= v${PKGVERSION_NOREV}
@@ -8,7 +8,11 @@ GITHUB_RELEASE= v${PKGVERSION_NOREV}
MAINTAINER= ismael%iodev.co.uk@localhost
HOMEPAGE= https://github.com/axel-download-accelerator/axel
COMMENT= HTTP/FTP download accelerator
+LICENSE= gnu-gpl-v2
+.include "options.mk"
+
+USE_TOOLS= pkg-config
GNU_CONFIGURE= yes
INSTALLATION_DIRS+= share/examples/axel
@@ -18,5 +22,4 @@ CONF_FILES= ${EGDIR}/axelrc.example ${PKG_SYSCONFDIR}/axelrc
post-install:
${INSTALL_DATA} ${WRKSRC}/doc/axelrc.example ${DESTDIR}${EGDIR}
-.include "options.mk"
.include "../../mk/bsd.pkg.mk"
diff --git a/axel/PLIST.nls b/axel/PLIST.nls
index 194bc95774..7c19d97d91 100644
--- a/axel/PLIST.nls
+++ b/axel/PLIST.nls
@@ -4,6 +4,7 @@ share/locale/es/LC_MESSAGES/axel.mo
share/locale/id_ID/LC_MESSAGES/axel.mo
share/locale/it/LC_MESSAGES/axel.mo
share/locale/ja/LC_MESSAGES/axel.mo
+share/locale/ka/LC_MESSAGES/axel.mo
share/locale/nl/LC_MESSAGES/axel.mo
share/locale/pt_BR/LC_MESSAGES/axel.mo
share/locale/ru/LC_MESSAGES/axel.mo
diff --git a/axel/distinfo b/axel/distinfo
index 5cea4226f4..441dfeead3 100644
--- a/axel/distinfo
+++ b/axel/distinfo
@@ -1,5 +1,5 @@
$NetBSD: distinfo,v 1.1.1.1 2007/04/05 20:03:22 alchow Exp $
-BLAKE2s (axel-2.17.11.tar.gz) = 0e3e798dd26fef59b8c4e52248181920667413e7817125f9280efeebf9720896
-SHA512 (axel-2.17.11.tar.gz) = ab84ff9cc4b059b651c93d0298219a8143ed3a8620b53cb614fc99a1f7aa827d66fc24a0de811ffbe6ce42a6eafb945b42093f80a3ada2ef91099a8c6bd3a3a0
-Size (axel-2.17.11.tar.gz) = 377920 bytes
+BLAKE2s (axel-2.17.14.tar.gz) = e7949abf80d52ee80141570c574b06b88b227aaa8e715bd28dbbf6891bfd2914
+SHA512 (axel-2.17.14.tar.gz) = 5ec46fb1f26d01221c552a40065e932e468fde0bb2a66914778d0f0ea09a4860a4975cc5eb4bc4604bc96e2b34d732a914ee56dd24065b3de303d7222789e525
+Size (axel-2.17.14.tar.gz) = 313731 bytes
diff --git a/axel/options.mk b/axel/options.mk
index 4a0191ca15..f11ee19762 100644
--- a/axel/options.mk
+++ b/axel/options.mk
@@ -1,9 +1,12 @@
# $NetBSD$
+
PKG_OPTIONS_VAR= PKG_OPTIONS.axel
-PKG_SUPPORTED_OPTIONS= nls ssl
-PKG_SUGGESTED_OPTIONS= nls ssl
+
+PKG_SUPPORTED_OPTIONS= nls
+PKG_SUGGESTED_OPTIONS= nls openssl
+
PKG_OPTIONS_OPTIONAL_GROUPS= ssl
-PKG_OPTIONS_GROUP.ssl= openssl libressl
+PKG_OPTIONS_GROUP.ssl= openssl libressl wolfssl
.include "../../mk/bsd.prefs.mk"
.include "../../mk/bsd.options.mk"
@@ -16,16 +19,18 @@ PLIST_SRC+= PLIST.nls
CONFIGURE_ARGS+= --disable-nls
.endif
-PKG_SUGGESTED_OPTIONS+= ${PKG_OPTIONS_GROUP.ssl:[1]}
-.if empty(PKG_OPTIONS:Mssl)
-CONFIGURE_ARGS+= --without-ssl
-PKG_OPTIONS:= ${PKG_OPTIONS:N*ssl}
+###
+### SSL support
+###
+.if !empty(PKG_OPTIONS:Mopenssl)
+. include "../../security/openssl/buildlink3.mk"
+CONFIGURE_ARGS+= --with-ssl=openssl
+.elif !empty(PKG_OPTIONS:Mlibressl)
+. include "../../security/libressl/buildlink3.mk"
+CONFIGURE_ARGS+= --with-ssl=openssl
+.elif !empty(PKG_OPTIONS:Mwolfssl)
+. include "../../security/wolfssl/buildlink3.mk"
+CONFIGURE_ARGS+= --with-ssl=wolfssl
.else
-. if empty(PKG_OPTIONS:M*?ssl)
-PKG_OPTIONS+= ${PKG_OPTIONS_GROUP.ssl:[1]}
-. endif
-LIBSSL:= ${PKG_OPTIONS:M*?ssl}
-. include "../../security/${LIBSSL}/buildlink3.mk"
-CONFIGURE_ARGS+= --with-ssl=${BUILDLINK_PREFIX.${LIBSSL}}
-USE_TOOLS+= pkg-config
+CONFIGURE_ARGS+= --without-ssl
.endif
Home |
Main Index |
Thread Index |
Old Index