diff options
author | Michael Orlitzky <mjo@gentoo.org> | 2020-01-15 09:35:39 -0500 |
---|---|---|
committer | Michael Orlitzky <mjo@gentoo.org> | 2020-01-15 09:35:58 -0500 |
commit | 1543573131710d2bbf11287803cf9269cece35be (patch) | |
tree | 3bc0be2d3341b2e0716c91a39e01aa85a5e42be4 /app-antivirus | |
parent | dev-python/zipp: bump to 1.0.0, same as 0.6.0 except for the version (diff) | |
download | gentoo-1543573131710d2bbf11287803cf9269cece35be.tar.gz gentoo-1543573131710d2bbf11287803cf9269cece35be.tar.bz2 gentoo-1543573131710d2bbf11287803cf9269cece35be.zip |
app-antivirus/clamav: new revision fixing libtool -> libltdl depend.
As reported in bug 544910, libclamav is linked against libltdl.so:
$ objdump -p /usr/lib64/libclamav.so | grep NEEDED
NEEDED libbz2.so.1
NEEDED libltdl.so.7
...
and that library is provided by dev-libs/libltdl:
$ equery b /usr/lib64/libltdl.so.7
* Searching for /usr/lib64/libltdl.so.7 ...
dev-libs/libltdl-2.4.6 (/usr/lib64/libltdl.so.7.3.1)
dev-libs/libltdl-2.4.6 (/usr/lib64/libltdl.so.7 -> libltdl.so.7.3.1)
We've been pulling this in "accidentally," through sys-devel/libtool,
but that's incorrect. This commit drops sys-devel/libtool and replaces
it with dev-libs/libltdl.
Closes: https://bugs.gentoo.org/544910
Package-Manager: Portage-2.3.79, Repoman-2.3.16
Signed-off-by: Michael Orlitzky <mjo@gentoo.org>
Diffstat (limited to 'app-antivirus')
-rw-r--r-- | app-antivirus/clamav/clamav-0.102.1-r2.ebuild (renamed from app-antivirus/clamav/clamav-0.102.1-r1.ebuild) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app-antivirus/clamav/clamav-0.102.1-r1.ebuild b/app-antivirus/clamav/clamav-0.102.1-r2.ebuild index 2c69d1693411..8a85bf5c1129 100644 --- a/app-antivirus/clamav/clamav-0.102.1-r1.ebuild +++ b/app-antivirus/clamav/clamav-0.102.1-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -23,7 +23,7 @@ CDEPEND="bzip2? ( app-arch/bzip2 ) >=sys-libs/zlib-1.2.2:= !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) - sys-devel/libtool + dev-libs/libltdl || ( dev-libs/libpcre2 >dev-libs/libpcre-6 ) dev-libs/libmspack xml? ( dev-libs/libxml2 ) |