From owner-svn-ports-all@freebsd.org Fri Nov 30 13:08:07 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 441001143C1D for ; Fri, 30 Nov 2018 13:08:07 +0000 (UTC) (envelope-from sunpoet@freebsd.org) Received: from smtp.freebsd.org (smtp.freebsd.org [96.47.72.83]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "smtp.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D829C813E7 for ; Fri, 30 Nov 2018 13:08:06 +0000 (UTC) (envelope-from sunpoet@freebsd.org) Received: from mail-io1-f54.google.com (mail-io1-f54.google.com [209.85.166.54]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G3" (verified OK)) (Authenticated sender: sunpoet) by smtp.freebsd.org (Postfix) with ESMTPSA id 9DDCE14DC3 for ; Fri, 30 Nov 2018 13:08:06 +0000 (UTC) (envelope-from sunpoet@freebsd.org) Received: by mail-io1-f54.google.com with SMTP id s22so4441165ioc.8 for ; Fri, 30 Nov 2018 05:08:06 -0800 (PST) X-Gm-Message-State: AA+aEWaMsyZs6h97g7XzXmTWSoKjza56DHkoz8FwtDpuJcQxypns95N+ hysfOke8q76etwZa5MNSFd0GvnzTV/0r8F0Al7ZMJw== X-Google-Smtp-Source: AFSGD/UkmnZkjYzSkPOx0jCYtgidKBcd8Arr4kcASI6cAzgcSyJYFBGQItI0VB1bKmSkJVtApX08ksDXXXZMGMvoY5Y= X-Received: by 2002:a5e:c20d:: with SMTP id v13mr4308699iop.264.1543583286010; Fri, 30 Nov 2018 05:08:06 -0800 (PST) MIME-Version: 1.0 References: <201811301053.wAUAreVk004664@repo.freebsd.org> In-Reply-To: <201811301053.wAUAreVk004664@repo.freebsd.org> From: Po-Chuan Hsieh Date: Fri, 30 Nov 2018 21:07:30 +0800 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: svn commit: r486246 - head/security/clamav To: Larry Rosenman Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-Rspamd-Queue-Id: D829C813E7 X-Spamd-Result: default: False [1.34 / 15.00]; local_wl_from(0.00)[freebsd.org]; NEURAL_SPAM_SHORT(0.48)[0.479,0]; NEURAL_SPAM_MEDIUM(0.69)[0.692,0]; NEURAL_SPAM_LONG(0.17)[0.173,0]; ASN(0.00)[asn:11403, ipnet:96.47.64.0/20, country:US] X-Rspamd-Server: mx1.freebsd.org Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.29 X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Nov 2018 13:08:07 -0000 On Fri, Nov 30, 2018 at 6:53 PM Larry Rosenman wrote: > Author: ler > Date: Fri Nov 30 10:53:39 2018 > New Revision: 486246 > URL: https://svnweb.freebsd.org/changeset/ports/486246 > > Log: > security/clamav: really do the right thing with the MSPACK option. > > previous patch added the configure argument to find archivers/libmspack > installed, but neglected to set USES+= pkgconfig to actually have the > binary > use that version. With it now properly finding libmspack.so, revert to > not trying to install libclammspack* if the MSPACK option is set. > > PR: 233658 > > Modified: > head/security/clamav/Makefile > head/security/clamav/pkg-plist > > Modified: head/security/clamav/Makefile > > ============================================================================== > --- head/security/clamav/Makefile Fri Nov 30 10:39:42 2018 > (r486245) > +++ head/security/clamav/Makefile Fri Nov 30 10:53:39 2018 > (r486246) > @@ -2,7 +2,7 @@ > > PORTNAME= clamav > PORTVERSION= 0.100.2 > -PORTREVISION= 2 > +PORTREVISION= 3 > CATEGORIES= security > MASTER_SITES= http://www.clamav.net/downloads/production/ > > @@ -16,7 +16,7 @@ BUILD_DEPENDS= pkg-config:devel/pkgconf > Hi, Since you have added USES=pkgconfig, the BUILD_DEPENDS added in r486224 can be removed. > LIB_DEPENDS= libltdl.so:devel/libltdl \ > libcurl.so:ftp/curl > > -USES= cpe gmake gnome libtool ncurses pathfix ssl > +USES= cpe gmake gnome libtool ncurses pathfix pkgconfig ssl > USE_RC_SUBR= clamav-clamd clamav-freshclam > USE_LDCONFIG= yes >