On 2008/05/22 10:06, giovanni wrote:
> [EMAIL PROTECTED] pkg_add -n dansguardian-2.9.8.5p2-clamav
> Can't install dansguardian-2.9.8.5p2-clamav: lib not found curl.8.0

this broke when clamav stopped pulling in curl,

>  +LIB_DEPENDS+=  clamav.>=1::security/clamav \
>  +                       curl::net/curl \
>  +                       idn::devel/libidn

actually we just need to remove the WANTLIB that were required
by curl:

Index: Makefile
===================================================================
RCS file: /cvs/ports/www/dansguardian/Makefile,v
retrieving revision 1.6
diff -u -p -r1.6 Makefile
--- Makefile    21 Apr 2008 18:32:06 -0000      1.6
+++ Makefile    22 May 2008 08:30:20 -0000
@@ -2,14 +2,14 @@
 
 COMMENT=       true web content filtering for all
 DISTNAME=      dansguardian-2.9.8.5
-PKGNAME=       ${DISTNAME}p2
+PKGNAME=       ${DISTNAME}p3
 CATEGORIES=    www net
 
 HOMEPAGE=      http://www.dansguardian.org/
 
 MAINTAINER=    Bartosz Kuzma <[EMAIL PROTECTED]>
 
-# GPL
+# GPLv2+
 PERMIT_PACKAGE_CDROM=  Yes
 PERMIT_PACKAGE_FTP=    Yes
 PERMIT_DISTFILES_CDROM=        Yes
@@ -33,7 +33,7 @@ FLAVORS=clamav
 FLAVOR?=
 
 .if ${FLAVOR:L:Mclamav}
-WANTLIB+=      bz2 crypto curl gmp iconv idn pthread ssl
+WANTLIB+=      bz2 gmp iconv pthread
 LIB_DEPENDS+=  clamav.>=1::security/clamav
 CONFIGURE_ARGS+=--enable-clamav
 .endif

Reply via email to