During bulk build, naddy@ took note of a missing libdep
in net/transmission's Makefile.  The build failed to
find libdeflate due to the bulk build's junk removal.

This patch adds the explicit libdep.  Builds and runs on amd64.
diff --git a/net/transmission/Makefile b/net/transmission/Makefile
index 335908e903f..e2cf1338446 100644
--- a/net/transmission/Makefile
+++ b/net/transmission/Makefile
@@ -10,9 +10,9 @@ PKGNAME-qt=   transmission-qt-${VER}
 CATEGORIES=    net
 HOMEPAGE=      https://transmissionbt.com/
 MAINTAINER=    Josh Grosse <j...@jggimi.net>
-REVISION-gtk=  0
-REVISION-main= 0
-REVISION-qt=   0
+REVISION-gtk=  1
+REVISION-main= 1
+REVISION-qt=   1
 
 # GPLv2+
 PERMIT_PACKAGE=        Yes
@@ -46,7 +46,8 @@ WANTLIB-qt += Qt6Widgets
 MODULES +=             devel/cmake \
                        textproc/intltool
 
-LIB_DEPENDS-common +=  net/curl \
+LIB_DEPENDS-common +=  archivers/libdeflate \
+                       net/curl \
                        net/libpsl \
                        net/miniupnp/libnatpmp \
                        net/miniupnp/miniupnpc>=1.9

Reply via email to