diff options
author | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2022-08-27 15:52:56 +0000 |
---|---|---|
committer | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2022-08-27 15:52:56 +0000 |
commit | f23fdb0f733fc2b577cc2a473ead16d0deb910e3 (patch) | |
tree | 66a73cfa8ee42620dd2728c07d938dd4543b961b | |
parent | 7f17ff39c0fe59ecda5215b1ec541313bfee286c (diff) | |
download | ports-f23fdb0f733fc2b577cc2a473ead16d0deb910e3.tar.gz ports-f23fdb0f733fc2b577cc2a473ead16d0deb910e3.zip |
archivers/zstd: Fix build on FreeBSD 13.0
md5sum is not available on FreeBSD 13.0 which reaches its EoL on 2022-08-31.
Notified by: jbeich
-rw-r--r-- | archivers/zstd/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/archivers/zstd/Makefile b/archivers/zstd/Makefile index ed8af4b8bddf..c3d6153e9861 100644 --- a/archivers/zstd/Makefile +++ b/archivers/zstd/Makefile @@ -13,11 +13,12 @@ LICENSE_FILE_BSD3CLAUSE=${WRKSRC}/LICENSE LICENSE_FILE_GPLv2= ${WRKSRC}/COPYING LIB_DEPENDS= liblz4.so:archivers/liblz4 +TEST_DEPENDS= gmd5sum:sysutils/coreutils # required by FreeBSD 13.0 USES= gmake localbase:ldflags tar:zst ALL_TARGET= default -BINARY_ALIAS= gmd5sum=md5sum +#BINARY_ALIAS= gmd5sum=md5sum TEST_TARGET= test USE_LDCONFIG= yes |