0c3f2686bd
- Support for ACE (WinACE) Archiver - Support for additional packers - Support for newer versions of packers - 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
52 lines
1.6 KiB
Makefile
52 lines
1.6 KiB
Makefile
# $OpenBSD: Makefile,v 1.9 2001/12/13 17:58:02 jakob Exp $
|
|
# $NetBSD: Makefile,v 1.1.1.1 2000/06/05 12:01:24 rh Exp $
|
|
|
|
COMMENT= evaluation version of a DOS/Windows file virus scanner
|
|
|
|
VERSION= 4.16.0
|
|
DISTNAME= vlnx416e
|
|
PKGNAME= uvscan-${VERSION}
|
|
CATEGORIES= security
|
|
NEED_VERSION= 1.496
|
|
|
|
HOMEPAGE= http://www.nai.com/asp_set/buy_try/try/products_evals.asp
|
|
|
|
MASTER_SITES= http://download.nai.com/products/evaluation/virusscan/english/cmdline/linux/version_4.16/
|
|
|
|
EXTRACT_SUFX= .tar.Z
|
|
|
|
MAINTAINER= Jakob Schlyter <jakob@openbsd.org>
|
|
|
|
PERMIT_PACKAGE_CDROM= "Commercial software"
|
|
PERMIT_PACKAGE_FTP= "Commercial software"
|
|
PERMIT_DISTFILES_CDROM= "Commercial software"
|
|
PERMIT_DISTFILES_FTP= "Commercial software"
|
|
|
|
RUN_DEPENDS= ::emulators/redhat/base \
|
|
::security/uvscan_dat
|
|
|
|
ONLY_FOR_ARCHS= i386
|
|
NO_BUILD= Yes
|
|
WRKDIST= ${WRKDIR}
|
|
|
|
do-configure:
|
|
sed -e 's:@@PREFIX@@:${PREFIX}:g' \
|
|
<${FILESDIR}/uvscan.sh >${WRKDIR}/uvscan.sh
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/uvscan.sh ${PREFIX}/bin/uvscan
|
|
${INSTALL_MAN} ${WRKSRC}/uvscan.1 ${PREFIX}/man/man1
|
|
${INSTALL_DATA_DIR} ${PREFIX}/libexec/uvscan
|
|
${INSTALL_SCRIPT} ${WRKSRC}/uvscan ${PREFIX}/libexec/uvscan
|
|
${INSTALL_SCRIPT} ${WRKSRC}/liblnxfv.so.4 ${PREFIX}/libexec/uvscan
|
|
ln -s liblnxfv.so.4 ${PREFIX}/libexec/uvscan/liblnxfv.so
|
|
.for file in clean.dat license.dat messages.dat names.dat
|
|
${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/libexec/uvscan
|
|
.endfor
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/uvscan
|
|
.for file in unxadmin.pdf license.txt readme.txt
|
|
${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/uvscan
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|