summaryrefslogtreecommitdiff
path: root/security
diff options
context:
space:
mode:
authoradam <adam>2014-01-16 09:51:54 +0000
committeradam <adam>2014-01-16 09:51:54 +0000
commit474d3c7b5a8cddd76b9893e6a9dd391f626aa7da (patch)
tree1f190fe2f1822bd5d4224b47f3e10c7a44ae4ed1 /security
parent075fdc63e48cb594920f2aaab9a96dfe11504eb3 (diff)
downloadpkgsrc-474d3c7b5a8cddd76b9893e6a9dd391f626aa7da.tar.gz
ClamAV 0.98.1 provides improved support of Mac OS X platform, support for new file types, and
quality improvements. These include: - Extraction, decompression, and scanning of files within Apple Disk Image (DMG) format. - Extraction, decompression, and scanning of files within Extensible Archive (XAR) format. XAR format is commonly used for software packaging, such as PKG and RPM, as well as general archival. - Decompression and scanning of files in "Xz" compression format. - Improvements and fixes to extraction and scanning of ole formats. - Option to force all scanned data to disk. This impacts only a few file types where some embedded content is normally scanned in memory. Enabling this option ensures that a file descriptor exists when callback functions are used, at a small performance cost. This should only be needed when callback functions are used that need file access. - Various improvements to ClamAV configuration, support of third party libraries, and unit tests.
Diffstat (limited to 'security')
-rw-r--r--security/clamav/Makefile4
-rw-r--r--security/clamav/distinfo8
-rw-r--r--security/clamav/patches/patch-configure24
3 files changed, 6 insertions, 30 deletions
diff --git a/security/clamav/Makefile b/security/clamav/Makefile
index 96a27ace512..b84db4c2f14 100644
--- a/security/clamav/Makefile
+++ b/security/clamav/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.13 2013/10/02 18:30:13 adam Exp $
+# $NetBSD: Makefile,v 1.14 2014/01/16 09:51:54 adam Exp $
-DISTNAME= clamav-0.98
+DISTNAME= clamav-0.98.1
CATEGORIES= security
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=clamav/}
diff --git a/security/clamav/distinfo b/security/clamav/distinfo
index 6b56665b7ca..91a562c5a79 100644
--- a/security/clamav/distinfo
+++ b/security/clamav/distinfo
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.10 2013/10/02 18:30:13 adam Exp $
+$NetBSD: distinfo,v 1.11 2014/01/16 09:51:54 adam Exp $
-SHA1 (clamav-0.98.tar.gz) = 1e6a7284721387646c713a8d32fa8b5a897985db
-RMD160 (clamav-0.98.tar.gz) = e45ca4b549e0e2ea157ae74ad9cd6220e60839e3
-Size (clamav-0.98.tar.gz) = 37075245 bytes
+SHA1 (clamav-0.98.1.tar.gz) = 9f04c0e81463c36f7e58d18f16d1b88f3332dcb8
+RMD160 (clamav-0.98.1.tar.gz) = 8899a07901493d5ea39c248417c2887d64101702
+Size (clamav-0.98.1.tar.gz) = 15431484 bytes
SHA1 (patch-Makefile.in) = c463edcef69422ff4b654f95d053e8600e34e313
SHA1 (patch-aa) = 8539a90ac5591c86f7e9f6b8c073f36523f221a5
SHA1 (patch-ab) = fea995ea944c2ae0f51a41e1a1076badf65c6c8b
diff --git a/security/clamav/patches/patch-configure b/security/clamav/patches/patch-configure
deleted file mode 100644
index cb685aafcde..00000000000
--- a/security/clamav/patches/patch-configure
+++ /dev/null
@@ -1,24 +0,0 @@
-$NetBSD: patch-configure,v 1.1 2013/10/02 18:30:13 adam Exp $
-
-Don't harcode -rpath for zlib, or configure fails on systems without rpaths.
-
---- configure.orig 2013-10-02 09:25:40.000000000 +0000
-+++ configure
-@@ -15952,7 +15952,7 @@ $as_echo "$as_me: WARNING: ****** stabil
- if test "$ZLIB_HOME" != "/usr"; then
- CPPFLAGS="$CPPFLAGS -I$ZLIB_HOME/include"
- save_LDFLAGS="$LDFLAGS"
-- LDFLAGS="$LDFLAGS -Wl,-rpath=$ZLIB_HOME/lib"
-+ LDFLAGS="$LDFLAGS"
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for inflateEnd in -lz" >&5
- $as_echo_n "checking for inflateEnd in -lz... " >&6; }
- if ${ac_cv_lib_z_inflateEnd+:} false; then :
-@@ -15990,7 +15990,7 @@ fi
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_z_inflateEnd" >&5
- $as_echo "$ac_cv_lib_z_inflateEnd" >&6; }
- if test "x$ac_cv_lib_z_inflateEnd" = xyes; then :
-- LIBCLAMAV_LIBS="$LIBCLAMAV_LIBS -Wl,-rpath=$ZLIB_HOME/lib -lz"; FRESHCLAM_LIBS="$FRESHCLAM_LIBS -Wl,-rpath=$ZLIB_HOME/lib -lz"
-+ LIBCLAMAV_LIBS="$LIBCLAMAV_LIBS -lz"; FRESHCLAM_LIBS="$FRESHCLAM_LIBS -lz"
- else
- as_fn_error $? "Please install zlib and zlib-devel packages" "$LINENO" 5
- fi