diff options
author | jlam <jlam@pkgsrc.org> | 2001-12-13 06:53:16 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2001-12-13 06:53:16 +0000 |
commit | 9925966688647024b8f4a64fbaca2f115e4534f6 (patch) | |
tree | 7ce7a8faa8db5028235d892d9560a704869a9a59 /security/uvscan/Makefile | |
parent | f7226fd44e2c24bf86a9807ff40a7bded4111d84 (diff) | |
download | pkgsrc-9925966688647024b8f4a64fbaca2f115e4534f6.tar.gz |
Update security/uvscan to 4.16.0 (using the 4160 engine). Changes from
version 4.14.0 are:
- Support for ACE (WinACE) Archiver
- Support for additional packers: PKLITE32, ELiTeWrap, Joiner, PEBundle,
PEBundle Write-To-Disk, and tElock.
- Support for newer versions of packers: Petite, ASPack, UPX, NeoLite,
and PECompact.
- Support for BZIP compression format
- Support for additional LHA compression formats, LH6 and LH7
- Support for zcompress compression format
- Support for PDF 5.0 files
- Improved scanning for MIME formats
- Support for Unicode and Unicode big-endian saved scripts
- Support for Compiled Help files
- Support for Microsoft Exchange internal data-transfer format
- Support for Internet Message Connector (IMC) Archive format.
- Support for uncompressed VBA in Visio files
- Improved heuristic analysis for 32-bit Windows applications
- Support for compressed RTF and HTML in Microsoft Outlook messages
- Support for Script Component Type Libraries
- Improved performance when scanning Windows 32 applications
Diffstat (limited to 'security/uvscan/Makefile')
-rw-r--r-- | security/uvscan/Makefile | 29 |
1 files changed, 16 insertions, 13 deletions
diff --git a/security/uvscan/Makefile b/security/uvscan/Makefile index ebed0fb7aa4..d1c24a85060 100644 --- a/security/uvscan/Makefile +++ b/security/uvscan/Makefile @@ -1,9 +1,9 @@ -# $NetBSD: Makefile,v 1.10 2001/09/09 20:36:46 agc Exp $ +# $NetBSD: Makefile,v 1.11 2001/12/13 06:53:16 jlam Exp $ -DISTNAME= vlnx414e -PKGNAME= uvscan-4.14.0 +DISTNAME= vlnx416e +PKGNAME= uvscan-4.16.0 CATEGORIES= security -MASTER_SITES= http://download.nai.com/products/evaluation/virusscan/english/unix/linux/v4.14.0/ +MASTER_SITES= http://download.nai.com/products/evaluation/virusscan/english/cmdline/linux/version_4.16/ EXTRACT_SUFX= .tar.Z MAINTAINER= packages@netbsd.org @@ -11,7 +11,7 @@ HOMEPAGE= http://www.mcafeeb2b.com/products/virusscan/default.asp COMMENT= evaluation version of a DOS/Windows file virus scanner DEPENDS+= suse_compat>=6.1:../../emulators/suse_base -DEPENDS+= uvscan-dat>=4129:../../security/uvscan-dat +DEPENDS+= uvscan-dat>=4171:../../security/uvscan-dat ONLY_FOR_PLATFORM= NetBSD-*-i386 NO_BUILD= YES @@ -37,17 +37,20 @@ do-install: ${INSTALL_MAN} ${WRKSRC}/uvscan.1 ${PREFIX}/man/man1 ${INSTALL_PROGRAM_DIR} ${UVSCANDIR} - cd ${WRKSRC}; for file in uvscan liblnxfv.so; do \ - ${INSTALL_SCRIPT} $${file} ${UVSCANDIR}; \ + ${INSTALL_SCRIPT} ${WRKSRC}/uvscan ${UVSCANDIR} + ${INSTALL_DATA} ${WRKSRC}/liblnxfv.so.4 ${UVSCANDIR} + ${RM} -f ${UVSCANDIR}/liblnxfv.so + ${LN} -s liblnxfv.so.4 ${UVSCANDIR}/liblnxfv.so + for file in liblnxfv.so.4 liblnxfv.so; do \ + ${RM} -f ${PREFIX}/emul/linux/usr/local/lib/$${file}; \ + ${LN} -s ${UVSCANDIR}/$${file} \ + ${PREFIX}/emul/linux/usr/local/lib; \ done - ${RM} -f ${PREFIX}/emul/linux/usr/local/lib/liblnxfv.so - ${LN} -s ${UVSCANDIR}/liblnxfv.so ${PREFIX}/emul/linux/usr/local/lib - cd ${WRKSRC}; for file in license.dat messages.dat; do \ - ${INSTALL_DATA} $${file} ${UVSCANDIR}; \ + for file in license.dat messages.dat; do \ + ${INSTALL_DATA} ${WRKSRC}/$${file} ${UVSCANDIR}; \ done - ${INSTALL_DATA_DIR} ${DOCDIR} - cd ${WRKSRC}; for file in unxadmin.pdf license.txt; do \ + for file in contact.txt license.txt unxadmin.pdf; do \ ${INSTALL_DATA} ${WRKSRC}/$${file} ${DOCDIR}; \ done |